define comp?
Answers were Sorted based on User's Feedback
Answer / syam
"COMP" in Cobol = Binary storage format(if -ve bit is ON,
if +ve bit is OFF)
COMP-1 = Single precision floating point. Uses 4 bytes.
COMP-2 = Double precision floating point. Uses 8 bytes.
COMP-3 = packed decimal format. Uses 4 bytes.
Example 01 WS-VAR USAGE COMP-1.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / syam
COMP = Compare in RPG, to compare two fields value.
AA = 01
BB = 02
C AA COMP 01 99 (found)
C BB COMP AA 99 (not found)
99 = on not found
99 = off found
| Is This Answer Correct ? | 0 Yes | 2 No |
what is the difference between comp & comp-3?
Define perform? And its types?
why icetool be used in programmer view?
Deleting a record from a Sequential file.
What are Fillers ? What is the actual use of Fillers ? With small/simple Example..
How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC * EVALUATE TRUE WHEN SQLCODE = +000 MOVE WS-COUNT TO Copybook field WHEN SQLCODE = +100 MOVE ZEROES TO Copybook field
How we can update data area in cobol 400 program?
How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC
How to detect record is locked in cobol/400? What is the solution for that?
Arrays in COBOL/400
what is the cobol compiler?
How to Convert 2010/02/11 to m/dd/yyy.. with string and without string if any other method... code