Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
17 views26 pages

Lesson11 Local Reference Field

The document outlines the process for creating and managing local reference fields and groups within the T24 application. It details the necessary tables, methods, and routines for attaching these fields to the CUSTOMER application, as well as updating records with education details. Additionally, it includes instructions for logging and displaying the local reference group values in a log file.

Uploaded by

laks
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views26 pages

Lesson11 Local Reference Field

The document outlines the process for creating and managing local reference fields and groups within the T24 application. It details the necessary tables, methods, and routines for attaching these fields to the CUSTOMER application, as well as updating records with education details. Additionally, it includes instructions for logging and displaying the local reference group values in a log file.

Uploaded by

laks
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 26

1

2
3
I am going to describe
Local Ref Field
Local Ref Group
Workshops

4
T24 Application allow the entry of additional local customized input fields without
any program modifications
Addition of Local fields is only valid on applications, which have already reserved a
field called LOCAL.REF
LOCAL.TABLE - This table allows to specify details of local fields to be defined.
LOCAL.REF.TABLE – this table is to attach the local field created to the specific
application

5
Method of T24 Record
getLocalRefField
getLocalRefGroups
getLocalRefNames

6
This interface is used to read the single field in Local Reference
Parameters
Input: FieldName – Name of the Local Ref Field
Returns: value in TField

7
This interface is to read the Multi Value Group
Parameters
Input: FieldName – Name of the Multi Value Group
Returns: List of LocaRefGroup

8
This interface returns the names of the local reference field in the Record Object
Parameters
Input: Null
Returns: Vector<String>

9
I described
Local Ref Field
Local Ref Group
Workshops

10
Create below Local Ref Group

Attach the above fields as Local Ref Group to CUSTOMER Application


Write a Input Routine to display the Local Reference Group Values in Log file.

11
Add the 3 fields with the Char type A and Max Char as 35

12
Create a Group called Group_CUS_EDUCATION and add the 3 local reference field as
attributes

13
Add the Group Created to the CUSTOEMR Application as ASSOCIATION

14
Create the Above Program and attach it as INPUT Routine to any CUSTOMER version

15
The log file should have the Education Local Ref Group printed

16
Create a local application called CUSTOMER.EDUCATION with below fields
Field Name
Data Type
Max Char
CUS.EDUCATION
A
35
UNIVERSITY
A
35
COURSE
A
10

17
Write a updateCoreRecord method that should update the CUSTOMER table with
Education Details given in the CUSTOMER.EDUCATION local table

Field Name
Data Type
Max Char
CUS.EDUCATION
A
35
UNIVERSITY
A
35
COURSE
A
10

17
Create EB.TABLE.DEFINITION
with below fields,
NAME
CUS.EDUCATION
UNIVERSITY
CUS.COURSE

18
19
Create EB.API for the updateRecord Method

20
Attach the EB.API as Before Auth Routine in VERSION created for
ST.CUSTOMER.EDUCATION Application

21
Create an entry in CUSTOMER.EDUCATION application with Customer Number

22
Customer Table Updated with the education details entered in
CUSTOMER.EDUCATION Application

23
24
25

You might also like