SerializeRowId

See Also: RowId, RowId Helper Functions

Purpose

Serializes a RowId so it can be represented as a String.

Return Type

String

Syntax

 

SerializeRowId( {RowId} )

 

Where:

Example

 

Procedure StoreSerializedId

    String sRowId

    RowId riCustomer

 

    Move (GetRowId(Customer.File_Number)) to riCustomer

    Move (SerializeRowId(riCustomer)) to sRowId

    Send StoreIDInMyWebPage sRowId

End_Procedure

 

Notes