Add %age area column to vacancies section.
[capital-apms-progress.git] / rplctn / recdisp.i
blobd95095a46ef29b582dea2b2fa7eeef78b972f2f8
1 /*
2 System: Property Management and Finance System
3 Include: recdisp.i
4 Author: Tyrone McAuley
5 Date: 09/10/97
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
17 Modification Notes
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}.