How can you submit a job from COBOL programs?
Answers were Sorted based on User's Feedback
Answer / a.roselin
We can submit the job from COBOL program thru internal
loader..
| Is This Answer Correct ? | 4 Yes | 3 No |
How can you add a particular field/coloumn in copybook?
how do you reference the variable block file formats from cobol programs
In a file if a column account number conatain value 0001234.. how can we move the value to another variable without zero. value may contain any type such as 00123405. we need the value 1234 or 12305. how can we do that in cobol. Please help.
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
in cobol i have one file it contains records like 10,4,23,98,7,90..... total records 100. iwant 10 to 20 in reverse order in cobol environ ment any one please give the answer......
COMP?
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Can we access the a[0] in the array ?
How you can read the file from bottom?
how the control comes back from subprogram to mainprogram