IBM MainFrame (5234)
IBM AS400 (1355)
IBM PL/1 (31) What is the process of converting the CICS commands into the equivalent host language statements called?
3 7976Which of the following commands, when issued by 2 different programs running at the same time, will prevent simultaneous use of resource 'SINGLE'?
1 3990
Is it possible to define dd statements as you want?
define the purpose of the *bcat function?
explain in brief how you can create a vsam file?
if dspatr(pc) and csrloc were specified for a format, which keyword would have priority?
Is db2 a mainframe database?
Why block size is multiple of lrecl in jcl?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
How to use the same COBOL program in Batch and CICS on lines? explain with an example
what is xfoot opcode ?
What is FORMAT keyword and its use?
How do you select a row using indexes in db2?
how to initialize a register to 0000?
what difference exists between control area and control interval?
What is open data path?
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