IBM MainFrame (5234)
IBM AS400 (1355)
IBM PL/1 (31) If a file has 1000 records.. if i have to replace the first and last characters of the file with another character. how it can be done....
HCL,
1 4046If my program receives input feed from program in other system.. if the receiving field size is less than the sending field.. what abend will be happening.
HCL,
1 2676what are the types of abends that occur on job failure? And explain the possible causes of these
1616Hello friends, i am having 1 year experience in AS/400. Can any one send me the as400 interview questions to my email id:nagaraju20087@gmail.com
1 2797What is the purpose of PR and PI in calling program and called program? in Called program PR is compulsory?
HCL,
1 6283How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
HCL,
3261In the house keeping section of an MVS assembly language program, like the one below STM R14,R12,12(R13) BASR R12,R0 USING *,R12,R11 LA R11,2048 LA R11,2048(R11,R12) .... .... 1. What if BASR R12,R0 IS NOT PRECEDE USING *,R12,R11? 2. USING (base address), REGISTER does USING directive says assembler to treat particular Register as a base register with the mentioned base address..in the above case * i.e current location counter..well if that is the case why we need BASR R12,R0 ? 3. What if I write like STM R14,R12,12(R13) BASR R12,R0 LA R11,2048 LA R11,2048(R11,R12) USING *,R12,R11 there is no address resolution being calculated in both LA statements so is it a right way to set Base register?..will there be any issues with Domain regarding R11 and R12?
1980
What is mainframe application testing?
What is amode(31)
What is a run unit in idms?
What is runstats db2?
Can we insert update delete in view?
What is dynamic transaction backout?
What is a system catalog table in db2?
Explain how do you set the mdt option to on status, even if data is not entered?
What is difference between static and dynamic call in cobol?
explain the information contained in ci
What is link edit in cobol?
how do you define single dimensional array and multidimensional array in your cobol?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
What is the purpose of dd dummy statement?
In a Natural program i used the below code for report FORMAT LS=132 PS=60 And down the line I want to change either LS/PS like FORMAT LS=120 PS=50, is it possible? How it will work?