Information described here applies to the following products.
NetCOBOL Enterprise Edition V11.0.0 for Windows (32bit)
No. | V/L(*) | P number | Content |
---|---|---|---|
1 | V10.1.0 | PG76651 | When all of the following conditions are met while executing a COBOL program, a size comparison of national items varying in length (national language edited item, including the intrinsic function) was incorrect.
|
2 | V10.1.0 | PG91976 | Under the following conditions, the OPEN statement terminates abnormally. (*) (EXCEPTION_ACCESS_VIOLATION) *: The occurrence frequency depends on the state of the memory.
|
3 | V10.1.0 | PG96520 | Under the following conditions, the message that should be outputted to a trace information file is outputted to a file that is not a trace information file (a socket is included).
|
4 | V10.1.0 | PG97090 | Incorrectly replacing the alternative character specified for argument-2 when there is no national character corresponding to the character converted by the NATIONAL-OF function when the COBOL program is executed under the following conditions.
|
5 | V10.1.0 | PH00632 | Under the following conditions, when COBOL application does the error diagnosis by the diagnostic function, "JMW0013I-W" message is output and the dump file is not made.
|
6 | V10.1.0 | PH04053 | An error code 13 (detail code 10109 or 11004) may occur with the application communication routine "COBCI_OPEN" under the following conditions: [Environment] Operating on Windows Server 2012, Windows Server 2012 R2 or Windows 8, Windows 8.1. [Condition]
|
7 | V10.1.0 | PH04922 | The following message may be displayed while debugging your COBOL application: [Example: Debugging sample program "SALES" of PowerFORM] SALES: SALES.EXE - Entry Point Not Found * The procedure entry point Iser32.CharNextExa could not be located in the dynamic link library api-ms-win-downlevel-user32-l1-1-0.dll [OK]
*: It is dll where file name originates in "api-ms-win". |
8 | V10.1.0 | PG72597 | The execution of WRITE AFTER ADVANCING PAGE does not become effective at COBOL program execution time in the following conditions (*1).
*1 This phenomenon depends on the specification of cooperating external file handler. |
9 | V10.1.0 | PG77099 | Under the following conditions, the execution environment variable @CBR_SSIN_FILE=THREAD does not become effective, and one input file is shared by file input of ACCEPT statement in the process. (*)
* : When the execution environment variable @CBR_SSIN_FILE=THREAD is specified, input file of each thread can be opened by file input of ACCEPT statement. |
10 | V10.1.0 | PG79650 | Under the following conditions, the call of method fails and outputs the following message. JMP0221I-U ERROR OCCURRED IN '*' OF THE METHOD INVOCATION. 'BIND' *: The garbled method name is output.
|
11 | V10.1.0 | PG73346 | Under the following conditions, at the execution, Unnecessary zero string is set to four subordinate position digits of the hexadecimal character of eight digits buried under execution time message JMP0320I-I/U.
* : It does not correspond when BSAM is specified. |
12 | V10.1.0 | PG73242 | Under the following conditions, at execution time, the following message is output and COBOL application terminates. "Fatal Application Exit insufficient storage available. MSGNO=65535 ERR=9d"
|
13 | V10.1.0 | PG73288 | Under the following conditions, the log information of web subroutine is not output to the log file.
|
14 | V10.1.0 | PG64106 | Under the following conditions, the mistake is found in the execution result of the table search of SEARCH statement (SEARCH ALL).
|
15 | V10.1.0 | PG75429 | Under the following conditions, the input file becomes 0 bytes and the message of "0 Records were restored." is output in the execution of the indexed file recovery function.
|
16 | V10.1.0 | PG77518 | Under the following conditions, the COBOL program terminates abnormally(EXCEPTION_ACCESS_VIOLATION)
*: For details 2-1-1. The program is compiled by single thread. 2-1-2. The COBOL application is called from the other language. 2-1-3. When COBOL application is called again after all COBOL applications end in the process. or 2-2-1. The program is compiled by multi thread. 2-2-2. After calling JMPCINT4, when JMPCINT2 is called again and COBOL application is called. |
17 | V10.1.0 | PG82410 | Under the following conditions, the SORT statement fails and outputs the following message. JMP0601-I/U SORT OR MERGE STATEMENT ERROR. CODE=208.
*1: Lengths except "\" of end *2: The phenomenon might not be generated by the size of input file or record. |
18 | V10.1.0 | PG83883 | Under the following conditions, the opening of the file fails in the execution of the COBOL file access subroutine.
*1:
*2: If the NULL pointer is specified for the record key list to open an indexed file, this function automatically identifies the key list structure, record format, and record length of an existing file, and opens the file. |
19 | V10.1.0 | PG84270 | Under the following conditions, the SQL statement fails and outputs the following message. SQLSTATE=S1010 SQLCODE=0 SQLMSG=[Microsoft][ODBC Driver Manager]Function sequence error.
*: The occurrence frequency depends on the state of the memory. |
20 | V10.1.0 | PG84545 | Under the following conditions, COBOL File Utility outputs the following message and recovery fails. System error occurred. code = 0x44
|
21 | V10.1.0 | PG87520 | Under the following conditions, The move result by internal Bool item is incorrect. Note: The move result is different according to the state of the area allocated just behind the sending data item. [Condition 1]
*: relative bit position in byte Example of Condition 1 DATA DIVISION. WORKING-STORAGE SECTION. 01 DATA1. 02 DATA1-1 PIC 1(5) BIT. 02 DATA1-2 PIC 1(4) BIT. 02 DATA1-3 PIC 1(7) BIT. 01 DATA2. 02 DATA2-1 PIC 1(1) BIT. 02 DATA2-2 PIC 1(32) BIT. 01 ANS-DATA PIC 1(32) BIT VALUE B"1111". PROCEDURE DIVISION. MOVE X"FFFF" TO DATA1. MOVE DATA1-2 TO DATA2-2. IF DATA2-2 = ANS-DATA THEN DISPLAY "OK" ELSE DISPLAY "NG" *> B"11111110-00000000" END-IF. [Condition 2]
Example of Condition 2 DATA DIVISION. WORKING-STORAGE SECTION. 01 DATA1. 02 DATA1-1 PIC 1(5) BIT. 02 DATA1-2 PIC 1(4) BIT. 02 DATA1-3 PIC 1(7) BIT. 01 DATA2. 02 DATA2-1 PIC 1(10) BIT OCCURS 5 TIMES. 01 ANS-DATA PIC 1(10) BIT VALUE B"1111". 01 CNT PIC 9 VALUE 2. PROCEDURE DIVISION. MOVE X"FFFF" TO DATA1. MOVE DATA1-2 TO DATA2-1(CNT). IF DATA2-1(CNT) = ANS-DATA THEN DISPLAY "OK" ELSE DISPLAY "NG" *> B"11111110-00000000" END-IF. |
*: V/L is a scope where the bug exists.