Top
NetCOBOL V11.0 Messages
FUJITSU Software

2.2.1 JMN0000 - JMN0999

0007

0010

0013

0015

0016

0020

0021

0022

0023

0024

0025

0026

0027

0028

0029

0030

0031

0032

0033

0034

0035

0036

0037

0040

0058

0061

0063

0064

0065

0071

0072

0077

0092

0093

0094

0096

0097

0100

0102

0103

0124

0125

0126

0127

0129

0998

JMN0007I-U

The source program file cannot be opened. Compilation terminated.

Explanation

Recompile after resolving the problems causing the errors when "System error '$s1' occurred on '$s2'." is displayed in addition to this message.

JMN0010I-S

The object program file cannot be opened. Compile option '@1@' is ignored.

Parameter explanation

@1@ : OBJECT

Explanation

Recompile after resolving the problems causing the errors when " System error '$s1' occurred on '$s2'. " is displayed in addition to this message.

JMN0013I-S

The repository file cannot be opened. The object file cannot be used.

Explanation

Recompile after resolving the problems causing the errors when "System error '$s1' occurred on '$s2'." is displayed in addition to this message.

JMN0015I-U

The @1@ file cannot be opened. Compilation terminated.

Parameter explanation

@1@ : PRINT, DEBUG, SAI

Explanation

Recompile after resolving the problems causing the errors when " System error '$s1' occurred on '$s2'. " is displayed in addition to this message.

JMN0016I-U

Insufficient main storage for the compilation. Compilation terminated.

Explanation

There is not enough memory to compile.

Check the compiler environment again. Troubleshooting tips:

  • When multiple applications are run at the same time, shut them down and recompile them, or

  • Increase virtual memory, or

  • Install more memory

JMN0020I-U

The source program file is empty. Compilation terminated.

JMN0021I-E

The character '@1@' is invalid as a compile option name or delimiter. Skips to next delimiter.

Parameter explanation

@1@ : incorrect characters

Example

[C0021.cob]
000001 @OPTIONS INVALID
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0021.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0021I-E The character 'INVALID' is invalid as a compile option name or delimiter. Skips to next delimiter.

JMN0022I-E

The delimiter for compiler options is "," (comma), not " " (space). The space is assumed to be a delimiter.

JMN0023I-E

A quotation mark in a subparameter of compile option '@1@' is unpaired. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

JMN0024I-E

A subparameter of compile option '@1@' is invalid. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

JMN0025I-E

The format of a subparameter in compile option '@1@' is invalid. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0025.cob]
000001 @OPTIONS INITVALUE(XX)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0025.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0025I-E The format of a subparameter in compile option 'INITVALUE' is invalid. Compile option 'INITVALUE' ignored.

JMN0026I-E

The length of a subparameter in compile option '@1@' is invalid. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0026.cob]
000001 @OPTIONS LINECOUNT(1000)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0026.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0026I-E The length of a subparameter in compile option 'LINECOUNT' is invalid. Compile option 'LINECOUNT' ignored.

JMN0027I-E

The keyword of a subparameter in compile option '@1@' is invalid. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0027.cob]
000001 @OPTIONS MAIN(WMAIN)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0027.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0027I-E The keyword of a subparameter in compile option 'MAIN' is invalid. Compile option 'MAIN' ignored.

JMN0028I-E

The value of a subparameter in compile option '@1@' is invalid. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0028.cob]
000001 @OPTIONS LINESIZE(1000)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0028.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION .
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0028I-E The value of a subparameter in compile option 'LINESIZE' is invalid. Compile option 'LINESIZE' ignored.

JMN0029I-E

A right parenthesis is missing in a subparameter of compile option '@1@' or the subparameter is too long. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0029.cob]
000001 @OPTIONS LANGLVL(85
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0029.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0029I-E A right parenthesis is missing in a subparameter of compile option 'LANGLVL' or the subparameter is too long. Compile option 'LANGLVL' ignored.

JMN0030I-E

Compile option '@1@' is missing the second subparameter. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

JMN0031I-W

Since compile option '@1@' is specified, '@2@' is assumed.

Parameter explanation

@1@ : compiler option name

@2@ : The assumed compiler option name. (Specifying compile option @1@ causes related option @2@ to be set automatically.)

Example

[C0031.cob]
000001 @OPTIONS CONF(68),LANGLVL(68)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0031.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0031I-W Since compile option 'LANGLVL(68)' is specified, 'NOCONF' is assumed.

JMN0032I-I

Compiler option '@1@' has no meaning when compiling multiple source files. Compiler option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

JMN0033I-W

Compile option '@1@' can only be specified in a program definition. Compile option @2@ is assumed.

Parameter explanation

@1@ : compiler option name

@2@ : The assumed compiler option name. (Specifying compile option @1@ causes related option @2@ to be set automatically.)

Example

[C0033.cob]
000001 @OPTIONS CONF(OBS)
000002 IDENTIFICATION DIVISION.
000003   CLASS-ID.  C0033.
000004 OBJECT.
000005 DATA           DIVISION.
000006 PROCEDURE DIVISION.
000007 METHOD-ID.     M1.
000008 END METHOD M1.
000009 END OBJECT.
000010 END CLASS C0033.

C0033.cob 0: JMN0033I-W Compile option 'CONF(OBS)' can only be specified in a program definition. Compile option CONF is assumed.

JMN0034I-S

Compile option '@1@' can only be specified in a program definition. Compile option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0034.cob]
000001 @OPTIONS LANGLVL(74)
000002 IDENTIFICATION DIVISION.
000003   CLASS-ID.  C0034.
000004 OBJECT.
000005 DATA           DIVISION.
000006 PROCEDURE DIVISION.
000007 METHOD-ID.     M1.
000008 END METHOD M1.
000009 END OBJECT.
000010 END CLASS C0034.

C0034.cob 0: JMN0034I-S Compile option 'LANGLVL(74)' can only be specified in a program definition. Compile option 'LANGLVL(74)' is ignored.

Explanation

Refer to "Compiler Options That Can Be Specified in the Program Definition (Source Code) Only" in the appendix "Compiler Options" of the "NetCOBOL User's Guide".

JMN0035I-S

The compile options used to compile the method definition must be the same as those used for the method prototype definition. The compile options specified are ignored.

Explanation

Refer to "Compiler Options for Method Prototype Definitions and Separated Method Definitions" in the appendix "Compiler Options" of the "NetCOBOL User's Guide".

JMN0036I-S

The subparameter keyword specified in compile option '@1@' is not supported in this operating system. Compile option '@1@' ignored.

Parameter explanation

@1@ : compiler option name

JMN0037I-E

Compile option '@1@' can only be specified in a class definition. Compile option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

Example

[C0037.cob]
000001 @OPTIONS CREATE(REP)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0035.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

C0037.cob 0: JMN0037I-E Compile option 'CREATE(REP)' can only be specified in a class definition. Compile option 'CREATE(REP)' is ignored.

Explanation

CREATE(REP) can only be specified in a class definition.

JMN0040I-E

Compile option '@1@' cannot be specified in the coded character set being used. Compile option '@1@' is ignored.

Parameter explanation

@1@ : compile option name

JMN0058I-W

Compiler option '@1@' cannot be specified with '@2@'. Compiler option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

@2@ : compiler option name

JMN0061I-E

Compiler option '@1@' cannot be specified for the @2@ compiler directive statement. Compiler option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

@2@ : @OPTIONS

Example

[C0061.cob]
000001 @OPTIONS SCS(ACP)
000002 IDENTIFICATION DIVISION.
000003   PROGRAM-ID.  C0061.
000004 ENVIRONMENT    DIVISION.
000005 DATA           DIVISION.
000006 WORKING-STORAGE SECTION.
000007 PROCEDURE      DIVISION.
000008 P-START.
000009     STOP RUN.

JMN0061I-E Compiler option 'SCS' cannot be specified for the @OPTIONS compiler directive statement. Compiler option 'SCS' is ignored.

Explanation

Refer to the appendix "Compiler Options" in the "NetCOBOL User's Guide" for the options that can be specified in a compiler directive statement.

JMN0063I-W

Compiler option '@1@' is invalid for this compiler. Compiler option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

JMN0064I-W

Compiler option '@1@' is obsolete. Compiler option '@2@' is assumed.

Parameter explanation

@1@ : compiler option name

@2@ : compiler option name

JMN0065I-W

The compiler option cannot be determined from the '@1@' specified. Compiler option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

JMN0071I-W

Compiler option '@1@' is not supported. Compiler option '@1@' is ignored.

Parameter explanation

@1@ : compiler option name

JMN0072I-W

Compiler option '@1@' is obsolete, and is not used in the current system. Compiler option '@2@' is assumed.

Parameter explanation

@1@ : compiler option name

@2@ : The assumed compiler option name. (Specifying compile option @1@ causes related option @2@ to be set automatically.)

JMN0077I-I

Compiler option '@1@' is obsolete and will be invalid in the next version.

Parameter explanation

@1@ : compiler option name

JMN0092I-U

An I/O error occurred during access of source program file. The compilation was terminated.

JMN0093I-U

An I/O error occurred during access of object file. The compilation was terminated.

JMN0094I-U

An I/O error occurred during access of debugging information file. Compilation terminated.

JMN0096I-U

An I/O error occurred during access of source analysis information file. The compilation was terminated.

JMN0097I-U

An I/O error occurred during access of repository file. The compilation was terminated.

JMN0100I-U

A fatal compiler error has occurred. (substep-name=@1@, module-name=@2@, detail-code=@3@, line-number=@4@)

Parameter explanation

@1@ : error detected substep name

@2@ : error detected module name

@3@ : detail code

@4@ : line number

Explanation

If other messages are displayed, resolve those issues and then recompile.

If above steps do not resolve the problem, a compiler failure could be the cause. Please open a support incident to obtain assistance from a supplier.

JMN0102I-U

The compilation process cannot be continued. If other diagnostic messages have been generated, correct those errors and try the compilation again. (substep-name=@1@, module-name=@2@, detail-code=@3@, line-number=@4@)

Parameter explanation

@1@ : error detected substep name

@2@ : error detected module name

@3@ : detail code

@4@ : line number

Explanation

Compiler failure. Please open a support incident to obtain assistance from a supplier.

JMN0103I-U

There is insufficient memory due to the processing of a type library. (substep-name=@1@)

Parameter explanation

@1@ : error detected in the substep name

Explanation

There are not enough memories to process type library. Please check the compiler environment again. Here are some troubleshooting follow.

When multiple applications are run at the same time, shut down and recompile them, or

  • increase virtual memory, or

  • installed more memory

JMN0124I-U

This source file has an invalid character.  The compilation is terminated. (substep-name=@1@, line-number=@2@.)

Parameter explanation

@1@ : error detected in the substep name

@2@ : line number

Explanation

These error messages are generated when the source program or copybook is created in Unicode (UTF-8). The cause and response are given below.

  • Compilation option SCS(UTF8) was not specified.

    Specify compilation option SCS(UTF8).

  • When the length of one line exceeds the maximum length that is decided by the reference format.

    The maximum length of a line is 251 bytes for variable-length format and free format, and 80 bytes for fixed-length format.

    This is the physical length, not display length.

    When this error message is displayed during compilation, lines may be truncated due to the limitations mentioned above.

    Divide up the line and use a line continuation character.

JMN0125I-U

The character set of the source program file or library text file is not the same as the system. The compilation is terminated.

JMN0126I-S

Compile option '@1@' cannot be specified with '@2@'. Compile option '@1@' is ignored.

Parameter explanation

@1@: compile option name

@2@: compile option name

JMN0127I-E

Since compile option '@1@' is specified, '@2@' is assumed.

Parameter explanation

@1@ : compiler option name

@2@ : compiler option name

JMN0129I-I

By specifying the compile option @1@, compile option @2@ gets enabled.

Parameter explanation

@1@ : compile option name

@2@ : derived compile option name

Explanation

This message is given when compile option ENCODE (UTF8, UTF16) or ENCODE (UTF8, UTF32) is defined explicitly or implicitly.

Specify the NSP compile option after checking the handling of spaces related to national items. For details refer to the following.

  • "NSP (handling of spaces related to national data item)" in Appendix A of the "NetCOBOL User's Guide"

JMN0998I-U

There was a failure in the initialization of the character code conversion processing. Please verify that the NetCOBOL Development-Execution environment is correctly installed.