What is the purpose of the following
I UDS
I 1 60ORDER#
I 7 90LINE#
Answer Posted / neha nimesh
The purpose is to define the variables in I-Spec and these are further used in C-spec. Where as ‘U’ indicates data area data structure? The above code is used to update the data area value through the program.The letter "U" indicates that the defined data structure is a data area data structure.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to convert a spool file to PDF file in AS400?
what are the different types of variables available in cl?
How do I remove a flag or check no. or name when a user opens too many sessions?
how can I control the way a remote browser uses its cache?
what is the maximum number of record formats in dspf?
how do you read changed records backward in subfile?
how can u check no of records in a file?
A join logical file has how many record formats?
how you will find an error which is not in the first page of the subfile without using rolldown key?
what is service program?
how would you design the process for a nightly, high volume check producing process that needs to select only records that are flagged to be processed?
What is difference between rename and prefix?
what are necessary keywords to code message subfile?
Service Program : S1 Modules in S1 : M1 M1 having two procedures : ADD, SUB Current Binder Language STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") ENDPGMEXP Doubt: I need to add one new Module to the Service Program M2 having one procedure ‘MULT’ How to add this new module to the service program S1 ? If I need to recreate the service program again, Do I need to mention the Module M1 again while recreating along with new Module M2? There is no Binding Directory. Binder language structure will be like this STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") EXPORT SYMBOL("MULT") ENDPGMEXP STRPGMEXP PGMLVL(*PREVIOUS) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") ENDPGMEXP
what is a non-join logical file?