cancel
Showing results for 
Search instead for 
Did you mean: 

regarding the scripts

Former Member
0 Kudos

hi,

can anyone explain the following functionalities of the following symbols in the scripts.

1)/ -- linefeed

2)/: -- command field

3)/E -- text element

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

1)/ -- linefeed

gives u a next new line.

2)/: -- command field

compiler checks with this this symbol that it has to be excuted and the data written under this command field is compiled and excuted and effected with respective data from DB.

3))/E -- text element

for getting mulitple windows to be excuted then we have to give TEXT ELEMENT in respective to the WRITE_FORM then it is printed Corresponding the TEXT element u will understnd clearly when u call multiple scripts in one driver program try that.

rewards points if useful

Former Member
0 Kudos

Hi,

1)/ -- linefeed - Gives an empty line

2)/: -- command field for commands like top, if, protect etc

3)/E -- text element To trigger the corresponding text element.

Lets say you have 3 write form in main window , you mention the window name in the write_form . but you want only certains things to be printed you can identify those tthings by declaring a text element

Thanks

Venki

amit_khare
Active Contributor
0 Kudos

/: - anything written with it will be treated as Command and system will execute it instead of Displaying it.

e.g. /: Perform get_dat in program zprog

/: using &w_def&.

/: changing &w_def1&

/: endperform.

/E - is the Text Element which WRITE_FORM FM call to execute that part of the script from MAnin Window.

/ - This will display whatever written infront of it.

Former Member
0 Kudos
Former Member
0 Kudos