Loading ...
Loading ...
Loading ...
T24 Application Development
Standard Fields
All new applications MUST define a set of reserved fields that can be used to add extra fields to the
application without the need to change the layout of the data. You should add ten reserved fields, the
names of which should be RESERVED.1 etc. The standard API for this is:
Table.addReservedField(fieldname)
Below are the F, N and T array setting for use in older templates:
Z+=1 ; F(Z) = "RESERVED.10" ; N(Z) = "35" ; T(Z) = "" ; T(Z)<3> = 'NOINPUT'
All applications MUST contain a LOCAL.REF field. This allows T24 clients to add user definable fields to
the application. The standard API for this is:
Table.addLocalReferenceField
Below are the F, N and T array setting for use in older templates:
Z+=1 ; F(Z) = "XX.LOCAL.REF" ; N(Z) = "35" ; T(Z) = "A"
All applications MUST have a field to store overrides. Even if your application does not currently use the
override processing (refer to the “Adding Business Logic” section), it is probable that it will in the future.
The standard API for this is:
Table.addOverrideField
Below are the F, N and T array setting for use in older templates:
Z+=1 ; F(Z) = "XX.OVERRIDE" ; N(Z) = "35" ; T(Z) = "" ; T(Z)<3> = 'NOINPUT'
Applications that raise accounting entries MUST define a field to hold the entry ids that have been raised.
This MUST be the last field that you define. The standard API for this is:
Table.addStatementNumbersField
Below are the F, N and T array setting for use in older templates:
Z+=1 ; F(Z) = "XX.STMT.NOS" ; N(Z) = "35" ; T(Z) = "" ; T(Z)<3> = 'NOINPUT'
Applications that raise delivery events must define a field to hold the delivery references. By default, the
name of this field should be DELIVERY.REF, though you may need to have multiple fields to hold delivery
references for multiple involved parties. The standard API for this is:
Table.addDeliveryReferenceField
Below are the F, N and T array setting for use in older templates:
Z+=1 ; F(Z) = "XX.DELIVERY.REF" ; N(Z) = "35" ; T(Z) = "" ; T(Z)<3> = 'NOINPUT'
Refer to the Table API documentation for further details on the APIs to add these standard fields.
TEMENOS T24 User Guide Page 15 of 34
Loading ...
Loading ...
Loading ...