how do you define single dimensional array and multidimensional array in your cobol?
No Answer is Posted For this Question
Be the First to Post Answer
how to transfer the file from pc to mainframe??
What is the difference between subscript and index?
what are the working storage fields in BMS macro?
Can JUSTIFIED be used for all the data types?
how do you reference the variable block file formats from cobol programs
I want ALL ERROR codes in VSAM
3 Answers American Express, TCS,
What is a SSRANGE and NOSSRANGE?
what is internal sort and external sort ? which is preferable ?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
hi dudes.....can any one help me..... what is SET TO TRUE all about,anyway?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2