2 System
: Property Management and Finance System
7 PreProcessor Parameters
:
9 1 - Name of the table being displayed
10 2 - Progress statement that converts the
11 record fields into an identifiable
/readable string
13 Parameters
: record-image
- RAW description of the record
14 record-string
- String description of the record
16 Returns
: Record String Description
20 &SCOPED-DEFINE TableName {1}
21 &SCOPED-DEFINE RecordString {2}
23 DEF INPUT PARAMETER record-image
AS RAW NO-UNDO.
24 DEF OUTPUT PARAMETER record-string
AS CHAR NO-UNDO.
26 DEF TEMP-TABLE Temp
{&TableNAme} LIKE {&TableName}.
28 CREATE Temp
{&TableName}.
29 RAW-TRANSFER record-image
TO Temp
{&TableName} NO-ERROR.
31 record-string
= {&RecordString}.