Previous Topic: CAIN5990I—CAIN7030WNext Topic: IN25UTIL Program Messages


SYMP001I—SYMP999S

SYMP001I

INTERTEST VERSION ID: x.x COMPILED: dd mm yy hh:mm:ss ****

Reason:

Informative. Identifies the version and compile date and time for the CA InterTest for CICS PL/I post‑processor program, IN25SYMP.

Action:

None.

SYMP002I

INTERTEST — PL/I POSTCOMPILER RUN FOR PROGRAM: progname

Reason:

Informative during initialization of IN25SYMP. Processing for the requested program has begun.

Action:

None.

SYMP003I

LISTER RECORDS ADDED TO PROTSYM FILE: nn

Reason:

Informative during termination of IN25SYMP. The number of records used on the PROTSYM file for listing information displays.

Action:

None.

SYMP004I

SYMBOLIC RECORDS ADDED TO PROTSYM FILE: nn

Reason:

Informative during termination of IN25SYMP. The number of records used on the PROTSYM file for SYMbolic information displays.

Action:

None.

SYMP005I

IN25ASMP RETURN CODE ON FINAL PROCESSING: nn

Reason:

Informative. The final return code from routine IN25ASMP displays.

Action:

None.

SYMP006I

IN25SYMP RETURN CODE ON FINAL PROCESSING: nn

Reason:

Informative. The final return code from routine IN25SYMP displays.

Action:

None.

SYMP101W

BLOCK NAME CANNOT BE RESOLVED. VARIABLE AND PARAMETER RESOLUTION MAY BE AFFECTED
DRC=n BLOCK NAME= blockname

Reason:

A variable was found in the Variable Storage Map section of the compiler output whose associated block cannot be identified.

Action:

Contact CA technical support with program listings.

SYMP102W

VARIABLE DISPLACEMENT CANNOT BE DETERMINED.
DRC=n, VARIABLE NAME= variable name

Reason:

A variable was found in the Variable Storage Map section of the compiler output whose associated attributes could not be identified.

Action:

Ensure that all data names are unique within each block.

SYMP103W

PARAMETER DISPLACEMENT CANNOT BE DETERMINED.
DRC=n, PARAMETER NAME= parameter name

Reason:

A parameter passed to a procedure could not be resolved and will not be available to the CORE transaction, or an associated block could not be determined.

Action:

Ensure that all data names are unique within each block and that no procedure or entry statements are suppressed by %NOPRINT. Check for other error messages.

SYMP104W

BASED/DEFINED VAR PTR/BASE CANNOT BE FOUND.
DRC=n, VARIABLE NAME= variable name POINTER NAME = pointer name

Reason:

The pointer associated with a BASED variable or the "base" variable of a "redefined" variable (see message SYMP115W) could not be resolved. The "pointer" name can be either the name of the associated pointer or the "base" area for the redefinition.

Action:

Try simplifying the expression of the base area. For example, use the following syntax to declare a "redefined" variable:

...BASED( ADDR( variable) )

or

...DEFINED base_variable...

Also, ensure that the variable does not refer either to a subscripted array element or qualified name.

SYMP105W

ADDRESSES OF THE FOLLOWING BASED VARIABLES CANNOT BE DETERMINED FROM THE PL/I CROSS REFERENCE. IN ORDER TO ACCESS THESE VARIABLES ON‑LINE, YOU MUST SPECIFY A QUALIFIED NAME IN THE INTERTEST CORE COMMAND.
list of variable names

Reason:

One or more BASED (*) variables were found in the PL/I Cross Reference. IN25SYMP was unable to determine the pointer to the variables specified.

Action:

Informational only. When attempting to view the variable online, you must use the POINTER option in the CORE command. For more information, see the section CORE Commands for PL/I Symbolic Programs in the chapter "Accessing Main Storage: CORE" of the CA InterTest for CICS User Guide.

SYMP106W

ADDRESSES OF THE BASED STRUCTURES CONTAINING THE FOLLOWING VARIABLES COULD NOT BE DETERMINED. IN ORDER TO ACCESS THESE VARIABLES ON‑LINE, YOU MUST SPECIFY A QUALIFIED NAME IN THE INTERTEST CORE COMMAND.
list of variable names

Reason:

A SYMP105W message was issued for the major structure containing the variable name(s).

Action:

Informational only. When attempting to view the variable online, you must use the POINTER option in the CORE command. For more information, see the section CORE Commands for PL/I Symbolic Programs in the chapter "Accessing Main Storage: CORE" of the CA InterTest for CICS User Guide.

SYMP107W

THE FOLLOWING PL/I COMPILER OPTION IS REQUIRED IN ORDER FOR IN25SYMP TO PROCESS CORRECTLY compiler option.

Reason:

The listed PL/I compiler option was not specified.

Action:

Ensure that the following options were specified to the PL/I compiler:

AGGREGATE OPTIONS

ATTRIBUTES(FULL) SOURCE

MAP STATEMENT (or GOSTMT)

NEST STORAGE

OFFSET XREF(FULL)

If all of the previous options were not specified, code the appropriate option(s) and rerun the job.

If all of the above options were specified, ensure that the options section is included in the PL/I compiler listing and that the output of the compiler was directed to the INPUTT DD statement, or that the compiler terminated with a return code of 8 or less.

SYMP108W

*** WARNING: "%NOPRINT" OPTION SPECIFIED. ***

Note: Indiscriminate use of this option could cause program failure or incorrect results.

Reason:

The NOPRINT option was specified on the control card. This option suppresses checking for the occurrence of the pre‑processor control statement "%NOPRINT". If the use of this facility suppresses the listing of PROCEDURE or ENTRY statements that contain parameter lists, or suppresses the listing of the final END statement of the program, the results may be unpredictable. Possible effects include the inability to resolve parameter variables properly as well as possible abnormal termination of SYMP.

Action:

Remove the NOPRINT option or ensure that the required information is not suppressed.

SYMP110W

STRUCTURE NAME "IN" ENCOUNTERED WHILE SCANNING CROSS REFERENCE/ATTRIBUTE LIST
VARIABLE: variable name STATEMENT NO: statement number

Reason:

While resolving structure nesting information, the identified variable in the specified statement number was found in a major or minor structure named "IN". If this is not true, the variable may not be properly resolved.

Action:

None, if the previous condition described is correct. Otherwise, call CA technical support.

SYMP111W

UNABLE TO DETERMINE LENGTH OF DATA ITEM. "REFER" OPTION NOT SUPPORTED FOR BASED VARIABLES.
VARIABLE: variable name STATEMENT NO: statement number

Reason:

Dynamically sized items are not supported. Examples of such include string parameters that inherit their size from the calling block, automatic strings whose length is an expression, and based strings whose length is specified by the REFER option. Such variables may not be available to the CORE transaction when debugging.

Action:

None.

SYMP112W

UNEXPECTED CONVERSION ERROR WHILE PROCESSING THE CROSS REFERENCE/ATTRIBUTE LIST FOR:
VARIABLE: variable name STATEMENT NO: statement number

Reason:

An unanticipated error occurred during processing of the attribute list.

Action:

Call CA technical support.

SYMP113W

LABEL DISPLACEMENT CANNOT BE DETERMINED FOR: xxxxxxxx

Reason:

The indicated label could not be associated with its block.

Action:

Ensure that the label names are unique. Check the statement/offset table for missing or out‑of‑order entries. Do not use END block_name statements to close multiple blocks.

SYMP114W

NO STORAGE WILL BE ALLOCATED FOR THE FOLLOWING UNREFERENCED VARIABLES. THE VARIABLES CANNOT BE ACCESSED.

Reason:

The flagged variables within the PL/I program were unreferenced.

Action:

Informational only. The flagged variables cannot be viewed online.

SYMP115W

THE FOLLOWING LINE CONTAINS "%NOPRINT" WHICH COULD PREVENT PROPER RESOLUTION OF SOME VARIABLES.
input compiler record

Reason:

Use of the compiler option %NOPRINT may cause the suppression of information needed to resolve variables properly.

Action:

Ensure that %NOPRINT does not suppress the printing of:

or

...DEFINED base_variable...

SYMP116W

THE FOLLOWING "DEFINED" STRUCTURE IS NESTED TOO DEEPLY TO PROPERLY RESOLVE ITS LENGTH: structure

Reason:

When a CORE command displays the specified structure, the area displayed is correct but is not be limited to the correct length. This error occurs only with a structure nesting depth that exceeds 16, which is not currently allowed by any version of the PL/I compiler.

Action:

None.

SYMP117W

LENGTH OF DEFINED STRUCTURE "structure" CANNOT BE RESOLVED DUE TO CONTAINED ARRAY "array"

Reason:

When a CORE command displays the specified DEFINED structure containing an array or a substructure that contains an array, the area displayed is correct but it is limited to the correct length. This error occurs only with a structure nesting depth that exceeds 16, which is not currently allowed by any version of the PL/I compiler.

Action:

None.

SYMP118W

VARIABLE "element name" IS A DUPLICATE NAME WITHIN A STRUCTURE.
STRUCTURE, "structure name", IS DECLARED IN STATEMENT statement number
DRC = n.

Reason:

A duplicate name was found in a structure. All names must be unique within a major structure. If not, the following problems can occur:

Action:

Assign unique names.

SYMP119W

NO AUTOMATIC VARIABLES FOUND FOR PROCEDURE procname
PARAMETER parameter CANNOT BE RESOLVED
DRC = n.

Reason:

No AUTOMATIC variables were declared for the specified procedure. Parameters cannot be resolved for any PL/I procedure unless AUTOMATIC variables are declared in it.

Action:

You can circumvent this restriction by declaring an AUTOMATIC variable. This variable does not have to be referenced.

SYMP120W

STRUCTURE INFORMATION FOR: variable‑name IS INVALID. SPECIFY CONNECT ATTRIBUTE, OTHERWISE ONLINE STRUCTURE REQUEST WILL SHOW INVALID INFORMATION.
STATEMENT #: nnn

Reason:

The CONNECT attribute is missing from the named variable, found in the specified statement number. When the CONNECT attribute is missing, CA InterTest for CICS and CA SymDump for CICS cannot display a valid structured CORE display.

Action:

Redefine the variable with the CONNECT attribute to obtain a structured CORE main storage display.

SYMP122W

THE FOLLOWING VARIABLES CAN ONLY BE ACCESSED THROUGH CA INTERTEST BATCH.

Reason:

The flagged variables within the PL/I program are not supported.

Action:

Informational only. The flagged variables cannot be viewed online.

SYMP123W

THE FOLLOWING EXTERNAL VARIABLES CANNOT BE ACCESSED THROUGH CA INTERTEST BATCH DUE TO THE RENT OPTION.

Reason:

The flagged variables within the PL/I program are not supported.

Action:

Informational only. The flagged variables cannot be viewed with the use of the RENT option.

SYMP124W

THE POINTER FOR A BASED(ADDR VARIABLE CAN NOT HAVE MORE THAN 3 SUBSCRIPTS.

Reason:

Limit of 3 subscripts for the pointer.

Example:

DCL 1 ABC BASED(ADDR(BCD(1,2,3,4)))

Action:

None.

SYMP182W

UNABLE TO OBTAIN TIMESTAMP INFORMATION FROM LISTING, CURRENT DATE/TIME WILL BE USED.
PARAMETER parameter CANNOT BE RESOLVED
DRC = n.

Reason:

The compiler generated times stamp cannot be found in the //SYSPRINT listing used as input. This may occur because CA SymDump for CICS failed to find the date/time record. The date and time of the post‑processor's execution is used in lieu of the compiler timestamp.

Action:

Contact Technical Support.

Note: For messages SYMP500 to SYMP599: You are advised to contact CA technical support. Provide the message number, text, and DRC code (if available). Also provide the IN25SYMP version ID and compile date and time (see message SYMP001I) and the release number of the PL/I compiler you are using.

SYMP500E

ERROR SCANNING SOURCE FOR COMMENTS/LITERALS STATEMENT NUMBER:
statement number COMMENT/LITERAL SCAN FLAGS: xxxxxxxx

Reason:

An error occurred while scanning for comments and literals. If comments or literals contain text that resembles either a PROCEDURE or ENTRY statement with parameters, some parameter variables may not be properly resolved.

Action:

Ensure that comments and literals do not contain text as previously described. Check message SYMP103W. Call CA technical support if this error occurs.

SYMP501E

UNABLE TO DETERMINE BEGINNING STATEMENT NUMBER FOR BLOCK. ANY VARIABLES DECLARED IN THIS BLOCK PRIOR TO THE INDICATED STATEMENT NUMBER WILL NOT BE RESOLVED.
xxxxxxxx AT STATEMENT:statement number

Reason:

An error occurred while identifying the beginning statement number for a block. Variables declared between the beginning of the block and the statement number may not be properly resolved.

Action:

Place an executable statement before the first variable declaration in this block. Call CA technical support if this error occurs.

SYMP502E

EXPECTED "IN..." NOT FOUND WHILE SCANNING CROSS REFERENCE/ATTRIBUTE LIST
VARIABLE variable STATEMENT NO: statement number

Reason:

An error occurred while resolving structure nesting. Structure elements may not be properly resolved.

Action:

Call CA technical support.

SYMP503E

WARNING — THE FOLLOWING LINE ASSUMED TO BE PART OF COMPILER INFORMATORY MESSAGE AND IGNORED:
input compiler record
DRC = n.

Reason:

The specified compiler input record was ignored.

Action:

Call CA technical support.

SYMP503E

WARNING — THE FOLLOWING LINE ASSUMED TO BE A REPETITION OF VARIABLE MAP COLUMN HEADINGS:
input compiler record
DRC = n.

Reason:

The specified compiler input record was assumed to repeat variable map column headings.

Action:

Call CA technical support.

SYMP503E

WARNING — THE FOLLOWING LINE ASSUMED TO IDENTIFY COMPILER DIAGNOSTIC MESSAGES SECTION:
input compiler record
DRC = n.

Reason:

The specified compiler input record was assumed to identify the compiler's diagnostic messages section.

Action:

Call CA technical support.

SYMP503E

WARNING — THE FOLLOWING LINE CONTAINS TITLE IN UNEXPECTED POSITION — ASSUMED TO LIST STATEMENT OFFSETS:
input compiler record
DRC = n.

Reason:

The specified compiler input record contains a title in an unexpected position. This line is assumed to list statement offsets.

Action:

Call CA technical support.

SYMP503E

WARNING — THE FOLLOWING LINE CONTAINS UNEXPECTED DECIMAL OFFSET — HEX VALUE WILL BE USED:
input compiler record
DRC = n.

Reason:

The specified compiler input record contains a decimal offset. The hexadecimal value is used instead.

Action:

Call CA technical support.

SYMP504E

UNEXPECTED STRUCTURE NESTING DEPTH OF n EXCEEDS PREVIOUS COMPILER LIMIT IN STATEMENT statement number

Reason:

The nesting depth exceeds the limit in the specified compiler statement.

Action:

Call CA technical support.

SYMP505E

BLOCK NOT FOUND FOR VARIABLE variable, DECLARED IN STATEMENT NO. nn

Reason:

The block for the specified variable could not be found.

Action:

Call CA technical support.

SYMP507E

STATEMENT OUT OF EXPECTED RANGE FOR BLOCK block name

Reason:

The statement was out of the expected range for the specified block.

Action:

Call CA technical support.

SYMP508E

SEARCH FAILED FOR: variable
DRC = n

Reason:

The specified variable could not be found.

Action:

Call Technical Support.

SYMP599E

UNEXPECTED CHAR IN MARGIN DELIMITER POSITION
M, L, MACRO, MRGCHR: aaa, bbb, ccc, ddd
DRC = n.

Reason:

An unexpected character was found in the margin delimiter position.

Action:

Call CA technical support and provide the information in the message.

SYMP599E

"aaaa" POSITIONED AT BLANK
STRING: "portion of listing line"
DRC = n.

Reason:

aaaa was positioned at a blank.

Action:

Call CA technical support and provide the information in the message.

SYMP599E

"IN" FOUND AT INVALID LOCATION
STRING: "portion of listing line"
DRC = n.

Reason:

An IN structure was found at an invalid location.

Action:

Call CA technical support and provide the information in the message.

SYMP599E

VARIABLE "variable", DECLARED IN STATEMENT statement number, IS ALREADY RESOLVED
DRC = n.

Reason:

The specified variable is already resolved.

Action:

Call CA technical support and provide the information in the message.

SYMP599E

AGGREGATE NAME NOT MATCHED
aggregate name
DRC = n.

Reason:

The specified aggregate name was not found.

Action:

Call CA technical support and provide the information in the message.

SYMP599E

FORWARD SCAN FAILED TO RESOLVE BLOCK
OUTERMOST BLOCK ASSUMED
DRC = n.

Reason:

The block could not be resolved. The outermost block is assumed.

Action:

Call CA technical support and provide the information in the message.

SYMP801E

nn STATEMENTS ENCOUNTERED; PROGRAMS WITH MORE THAN 10,000 STATEMENTS NOT SUPPORTED.
RESULTS WILL BE UNPREDICTABLE, WITH SEVERE ERRORS LIKELY.

Reason:

Because of a bug in the PL/I compiler that truncates high order digits from statement numbers in the statement/offset table, programs with over 9,999 statements cannot be supported completely. This message is usually accompanied by other error messages. Online debugging is affected significantly.

Action:

None.

SYMP901S

THE PL/I COMPILER OPTIONS LISTED ABOVE WERE NOT SPECIFIED AND HAVE CAUSED IN25SYMP TO TERMINATE

Reason:

One or more SYMP107W message(s) were issued.

Action:

Ensure that the following options were specified to the PL/I compiler:

AGGREGATE

OPTIONS

ATTRIBUTES(FULL)

SOURCE

MAP

STATEMENT (or GOSTMT)

NEST

STORAGE

OFFSET

XREF(FULL)

See the SYMP107W messages for the specific options missing.

If all options were not specified, code the appropriate options and rerun the job.

If all of the above options have been specified, ensure that the options section is included in the PL/I compiler listing and that the output of the compiler was directed to the INPUTT DD statement, or that the compiler terminated with a return code of 8 or less.

SYMP902S

UNEXPECTED TERMINATION OF COMPILER OUTPUT HAS OCCURRED
DRC = n.

Reason:

While scanning the PL/I compiler output, an end‑of‑file condition was raised for the INPUTT DD statement.

Action:

Check that all the PL/I options required by IN25SYMP were set, or that the compiler terminated with a return code of 8 or less. Correct the problem and rerun the compile and IN25SYMP.

SYMP903S

UNEXPECTED ERROR DETECTED. ERROR CORE=nnnn
DRC = n.

Reason:

A PL/I error condition occurred that IN25SYMP was not designed to handle.

Action:

Check the PL/I ONCODEs and take the appropriate suggested action. If unsuccessful, contact CA technical support with the dump.

SYMP904S

IN25ASMP FUNCTION FAILED. FUNCTION CODE= n
RC = n.

Reason:

The routine that does I/O to the PROTSYM file returned with a non‑zero return code.

Action:

Check the error messages from IN25ASMP and take appropriate action, and then rerun the job. This error normally indicates a problem with the PROTSYM file. If this is the first use of the PROTSYM file, check the job that initialized the file for normal completion. If this is not the first use of the file, check for a physical or logical error on the file. The MESSAGE DD statement contains more information.

Note: Function code 8 usually means the file is full.

SYMP905S

ERROR ENCOUNTERED ON FILE INPUTT, ERROR CODE = nnnn
DRC = n.

Reason:

An error has occurred trying to open the INPUTT file.

Action:

Ensure that the ddNAME/DLBL INPUTT points to a file that contains the output listing of the PL/I compiler.

SYMP906S

ERROR ENCOUNTERED ON FILE SYSPRINT, ERROR CODE = nnnn
DRC = n.

Reason:

An error has occurred attempting to open the SYSPRINT file.

Action:

Ensure that the ddNAME/DLBL SYSPRINT is coded in your JCL.

SYMP908S

SUBSCRIPT OVERFLOW IN TABLE T4
DRC = n.

Reason:

The internal table used to keep track of variable information has exceeded its limits.

Action:

This error is usually caused when the Attribute and Cross Reference section of the compile output could not be found by IN25SYMP.

This can occur if the compiler options ATTRIBUTE(FULL) and XREF(FULL) were not specified, or if the PL/I compile abnormally terminates or terminates with a return code greater than 8. Check for these conditions and if they occur, correct and rerun the job. If neither has occurred, contact CA technical support with the dump.

SYMP909S

SUBSCRIPT OVERFLOW IN TABLE T5
DRC = n.

Reason:

The internal table used to keep track of PROC BLOCKS has exceeded its limits.

Action:

This error is usually caused when the Storage Requirements section of the compile output could not be found by IN25SYMP. This can occur if the compiler option STORAGE was not specified, or if the PL/I compile has abnormally terminated or terminated with a return code greater than 8. Check for these conditions and if they occur, correct and rerun the job. If neither has occurred, contact CA technical support with the dump.

SYMP910S

SUBSCRIPT OVERFLOW IN TABLE T6
DRC = n.

Reason:

An internal table used to keep track of information about statements has overflowed.

Action:

This occurs under several conditions. If reorder has been specified in the procedure block, remove the reorder option. This may also occur if a large number of source statement lines contain multiple PL/I statements (such as, A=B; C = D; E = F;). This can also occur if the PL/I pre‑processor command %NOPRINT was specified.

SYMP911S

SUBSCRIPT OVERFLOW IN TABLE T6A
DRC = n.

Reason:

An internal table used to keep track of information about statements has overflowed.

Action:

This occurs under several conditions. If reorder has been specified in the procedure block, remove the reorder option. This may also occur if a large number of source statement lines contain multiple PL/I statements (e.g., A=B; C = D; E = F;). This can also occur if the PL/I pre‑processor command %NOPRINT was specified.

SYMP912S

INPUT FROM THE PL/I COMPILER CONTAINS AN INVALID STATEMENT NUMBER IN COLUMNS 1‑8 OF THE RECORD.
input compiler record

THE ABOVE INPUT RECORD HAS CAUSED THE TERMINATION OF THE COMPILER OUTPUT PRE‑SCAN

Reason:

An error was detected while attempting to find the largest PL/I statement number.

Action:

Check compiler output and the line listed. Correct the problem and rerun the job.

SYMP916S

UNEXPECTED ERROR ENCOUNTERED DURING PHASE 1
DRC = n.

Reason:

An error has occurred during Phase 1 of IN25SYMP processing.

Action:

Check the Job Log for operating system or PL/I error indicators. Correct and rerun the job.

SYMP917S

DOS INITIALIZATION FAILED IN "ASMP"; POST‑PROCESSOR SYMP WILL BE TERMINATED
DRC = n.

Reason:

For VSE only. Probably, a control card is either missing or invalid. Or, there may be a problem with the SYMbolic File or with the JCL for the "MESSAGE" file.

Action:

Correct the control card, SYMbolic File, or JCL.

SYMP919S

END OF FILE ENCOUNTERED FOR "INPUTT" DURING PHASE 1 OF PRE‑PROCESSOR
DRC = n.

Reason:

An END‑OF‑FILE condition occurred during the Phase 1 scan of the PL/I compiler output.

Action:

IN25SYMP prints the compiler output and terminates processing. This condition can occur when the PL/I compiler detects program errors that would prohibit successful compilation. Refer to the PL/I compiler output for error messages.

SYMP920S

"CDLOAD" FAILED FOR "IN25ASMP". RETURN CODE = nnnn

Reason:

VSE only. The VSAM I/O routine, IN25ASMP, could not be dynamically loaded. Possible causes include incorrect installation or partition/JCL that does not allow sufficient storage for loading this phase.

Action:

Check that the specified phase is in the execution phase library and that there is adequate storage.

SYMP921S

POWER SPOOL RETRIEVAL FAILURE: ATTEMPT NUMBER: request

Reason:

For VSE/POWER only. A POWER spool retrieval failed. This message identifies the request. If only one job gets this error, the JCL for the job is probably incorrect. If all jobs get this error, CA InterTest for CICS may not have been properly installed and customized.

Action:

Check the JCL and, if necessary, CA InterTest for CICS installation and customization.

SYMP922S

INCOMPLETE COMPILER OUTPUT DUE TO ERRORS HAS CAUSED TERMINATION OF IN25SYMP OPTION CAUSING PL/I COMPILER TERMINATION WAS: option

Reason:

The PL/I compiler options NOSYNTAX and NOCOMPILE can prevent the normal completion of the compilation process, either conditionally, depending on the severity of the errors, or unconditionally. The CA InterTest for CICS PL/I post‑processor program, IN25SYMP, terminates immediately when it recognizes an aborted compilation.

Action:

Usually, correction of compilation errors resolves this problem.

SYMP923S

TABLE SIZE EXCEEDS HALFWORD LIMIT FOR: name

Reason:

An internal table has exceeded the limit of the halfword index. The post‑processor program terminated to prevent subsequent errors. This situation should not occur for programs with significantly less than 32,767 statements. Because support is limited to programs with less than 10,000 statements, this situation is unlikely to occur.

Action:

Call CA technical support and provide the information in the message.

SYMP999S

UNEXPECTED ERROR CODE. nnn PROCESSING TERMINATED

Reason:

An undocumented error code has forced termination of IN25SYMP.

Action:

Contact CA technical support.