Logic Object
Logic — Holds 4GL logic.
Introduction
Holds the 4GL code as written by the developer user.
Properties
Table 16. Logic Object Properties
Name | Details | Possible Values | Default Value |
---|
SourceCode | 4GL source code. | * | - |
Description | Description to be used in lists. | * | - |
DetailDescription | Detailed description. | * | - |
Modified | Modification date-time stamp in ISO 8601 format. | ccyy-mm-dd Thh:mm:ss | date stamp |
Example
<Object Application="MyOrder" Type="Logic" Name="CustomerNew">
<Logic>
<SourceCode>
SCREEN TITLE "Customer - untitled"
CLEAR RECORD Customer.Customer
ASSIGN F-Country.Customer P-CountryCode(1)
DISPLAY ALL
MESSAGE "Created new customer entry."
</SourceCode>
<Description>New Customer</Description>
<DetailDescription>Prepare screen to enter new customer record</DetailDescription>
<Modified>2007-11-12T09:58:00</Modified>
</Logic>
</Object>