| Back to Questions Page |
| |
| Question |
PCC-01400: You are not authorized to run Pro*Pascal |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*Pascal
Precompiler has expired.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01301: Your Pro*PL/I authorization is about to expire |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*PL/I
Precompiler is about to expire.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01300: You are not authorized to run Pro*PL/I |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*PL/I
Precompiler has expired.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
|
|
| |
| Question |
PCC-01202: Identifier "string" truncated to 31 characters |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: A host identifier (the name of a host variable, for
example) was truncated to the maximum length (31 characters)
allowed by the precompiler.
Action: No action required. This message is just informational.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01201: Your Pro*C authorization is about to expire |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*C
Precompiler is about to expire.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01200: You are not authorized to run Pro*C |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*C
Precompiler has expired.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01102: Invalid label at line number in file string |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The Pro*FORTRAN Precompiler found an invalid FORTRAN
statement label in columns 1 through 6.
Action: Correct or remove the statement label.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01101: Your Pro*FORTRAN authorization is about to expire |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*FORTRAN
Precompiler is about to expire.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01100: You are not authorized to run Pro*FORTRAN |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The authorization or license to run the Pro*FORTRAN
Precompiler has expired.
Action: Call customer support for assistance.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01019: Invalid conversion buffer size |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The size specified in a CONVBUFSZ clause must be an
integer in the range 1-32765. Either the size given is not
an integer or is outside the required range.
Action: Specify an integer in the range 1-32765.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01018: Conversion buffer size can only be specified for
character types |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: A CONVBUFSZ clause has been used in an EXEC SQL VAR
statement where the variable is not of a character datatype.
Action: Remove the CONVBUFSZ clause from the EXEC SQL VAR
statement.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01017: The SQLCA and a SQLCODE variable cannot both be used |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The SQLCA has been included and a SQLCODE variable
has been declared. This is not allowed as references to the
SQLCODE variable are ambiguous and will result in COBOL
compiler errors.
Action: Use either the SQLCA or the SQLCODE variable. Remove
either the include of the SQLCA or the SQLCODE variable
declaration.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01016: "N" character literals not supported in embedded
PL/SQL |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: An "N" character literal was used within a PL/SQL block
Action: Remove the "N" character literal from the PL/SQL block.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01015: Cannot equivalence PIC N variable string |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: A PIC N variable or an implicit VARCHAR group item
(with a PIC N variable as an elementary item) was used in an
EXEC SQL VAR statement. This is not allowed.
Action: Do not use the PIC N variable in an EXEC SQL VAR
statement. If you want an equivalence to an Oracle type
using an EXEC SQL VAR statement, use a PIC X variable,
instead of a PIC N variable.
Please add more information about this Error  |
| Guest |
| |
| |
| Question |
PCC-01014: "VARYING" not supported with PIC N PICTURE clause |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cause: The keyword VARYING was used in a PIC N variable
declaration.
Action: Remove the keyword VARYING from the variable
declaration. If you want to declare a PIC N VARCHAR
variable, specify the precompiler option VARCHAR=YES and
declare the variable as an implicit VARCHAR group item as
illustrated by the following example: EXEC SQL BEGIN DECLARE
SECTION END-EXEC. ... 01 ENAME. 05 ENAME-LEN PIC S9(4) COMP.
05 ENAME-ARR PIC N(20). ... EXEC SQL END DECLARE SECTION
END-EXEC.
Please add more information about this Error  |
| Guest |
| |
| |
|
| |
|
Back to Questions Page |