Logic Object

Logic — Holds 4GL logic.

Introduction

Holds the 4GL code as written by the developer user.

Properties

Table 16. Logic Object Properties

NameDetailsPossible ValuesDefault Value
SourceCode4GL source code.*-
DescriptionDescription to be used in lists.*-
DetailDescriptionDetailed description.*-
ModifiedModification date-time stamp in ISO 8601 format.ccyy-mm-ddThh:mm:ssdate 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>