i WANT ALL ERROR codes IN CICS and DB2
Answers were Sorted based on User's Feedback
Answer / asmara
-818 Error Code is the Time stamp error which is very well
known in DB2
-803 is the duplicate error- if you insert same record in
the same table.
104-error indicates that either a field that is defined as
integer is specified with quotes or an Char value in insert
that needs to represented with quotes is not represented
so, Hope this helps to solve your issue
-805 Error will come when we didnt bind it.
-305 suppose one of ur db2 table column is defined as NOT
NULL, if you trying to insert Null value on that column at
that time u will get this error. in simple way null
indicator error.
-311 This will occur when we wont care about varchar fields
CICS Abends: ASRA ABENDS nothing but SOC004,SOC007 Mainly
one time i got "CDS full" means control data set is full so
for solving this delete the unwanted data list from the
file control table or else move it in after exceeeding the
size limit of member.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kingmanish
First of all u are asking about DB2 and CICS error in COBOL
section. Why?? :)
Secondly to get exhaustive list refer Books or IBM manuals.
If u need clarification on any particular error code.
post it here
Is This Answer Correct ? | 0 Yes | 0 No |
I want ALL ERROR codes in VSAM
3 Answers American Express, TCS,
How arrays can be defined in COBOL?
What are all the divisions of a COBOL program?
How to display the index.(displacement from an array)
What are VS COBOL 11 special features?
Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.
Re: 01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
How can we know that cobol program is using report file or simple file....?
What are 77 levels used for?
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
how will u find out 3rd week's 2nd day using occurs ?
Differentiate COBOL and COBOL-II?