How to Pass table from a cobol program to another cobol
program and how to use that table in called program
Answer Posted / gaurav
It can be passed using the COBOL pointers.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
) how do u code after getting data?
Explain what you understand by passing by value.
Describe the cobol database components?
What is the difference between external and global variables in COBOL?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
Which is not true about evaluate statement
how can we apply for HSBC exam(Mainframe) in India??? i went to their site and was told to submit my CV ,. etc..( totally confusing...)
What is amode(24)?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
what is amode(24), amode(31), rmode(24) and rmode(any)?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
What are various search techniques in cobol? Explain.
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic