What is Pic 9v99 Indicates in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
What is the Purpose of Pointer in the string?
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?
is this below syntax correct? CALL 'subprg' using A,B Please help
01 a pic s9(5) occupies how many bytes ?
after udatingg first 110 rows, my job abends. now how do i change my cobol program so that when i restart the Job it will start updating from 111th row ( i.e in next run I di=ont want to update those 110 rows which are already been updated in the first run before job abend)
01 WS-NAME PIC X(10) OCCURES 2. by this we can get ws-name 2 times. My qustion is how can we access the second name
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
How can i write a comp-3 variable into a sequential file should i declara the field in the file description as comp- 3?
how we rectify soc7 and soc4 errors in project?
What will happen if we generate GDG (+2) version without generating (+1) version?
How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable