UtilCodeMasterRemoveValue - cDbUpdateFunctionLibrary

To delete/remove a value from the CodeMast table.


Type: Function


Parameters: String sTypeValue, String sValue2

Parameter

Description

sTypeValue

The type value used to find the correct CodeMast record.

sValue2

The code value to be removed.


Syntax


Function UtilCodeMasterRemoveValue String sFromValue String sToValue

Call:

Get UtilCodeMasterRemoveValue "SHIPPING" "FEDEXCOD" to bOK



Description

Use it to remove a value from the CodeMast validation table.



Example


Procedure OnUpdate

    Boolean bOK

   

    Get UtilCodeMasterRemoveValue "SHIPPING" "USMAIL" to bOK   


End_Procedure