•
•
•
• The "SET POINTER TO ADDRESS OF DataItem" statement is not supported. There are two possible solutions:
o compile the program with the -cp option. This is suggested if you need to pass the pointer to external C functions.
o compile the program with -rm=handle,address. This is suggested if you use the pointer internally in the COBOL program.
• The "RECEIVE MyMessage FROM ANY THREAD" statement must include the NO WAIT statement, or its equivalent, BEFORE TIME 0. Any other timeout is not supported. For example, the following code below will not compile:
• Items defined in the LINKAGE section must be referenced also in the USING phrase. In ACUCOBOL-GT it is not mandatory. You can rely on the -wlu compiler option to find out this kind of issue in the source files.
LINKAGE SECTION.01 GROUP-ITEM.
LINKAGE SECTION.01 GROUP-ITEM.
DISPLAY-FORMAT "h:mm a"DISPLAY-FORMAT "MM/dd/yyyy"DISPLAY-FORMAT "EEEE, MMMM dd, yyyy"
• isCOBOL Reserved Words cannot be used as variable or constant names by default. In order to use them as variable or constant names, they must be treated as common words by using -rc compiler option.
iscobol.file.status=com.iscobol.io.FileStatus85
•
01 my-group.
01 my-group.
o use two dots to close the COPY statement (e.g. COPY "mycopy.prd"..)
| Copyright (c) 2017 Veryant |
| Contact us |
|
Please share your comments on this manual or on any Veryant product documentation with the email button at the top left |