how can u redefine picx(10) with pic 9(6).
Answers were Sorted based on User's Feedback
Answer / sujith
05 WS-TX-REASON PIC X(10).
05 FILLER REDEFINES WS-TX-REASON.
10 WS-TX-NUM PIC 9(06).
10 FILLER PIC X(04).
| Is This Answer Correct ? | 35 Yes | 2 No |
Answer / narasimha reddy.k
05 WS-TX-REASON PIC X(10).
05 WS-TX-NUM REDEFINES WS-TX-REASON PIC 9(06).
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / mehdee
05 WS-TX-REASON PIC X(10).
05 FILLER REDEFINES WS-TX-REASON.
10 WS-TX-NUM PIC X(06).
10 FILLER PIC X(04).
| Is This Answer Correct ? | 7 Yes | 18 No |
What type of SDLC u followed? Why?
Can we use goto statement in inline_perform ?
How do pass the values to the parameters in cobol
Which division and paragraphs are mandatory for a COBOL program?
period is missing in the cobol program which error we getting
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
What is the difference between Structured COBOL Programming and Object Oriented COBOL ?
What is 88 level used for ?
How do you define a variable of COMP-1? COMP-2?
i want a program using by if, evaluate , string, unstring, perform, occurs?
I got user abend U4038 while compiling my runjcl.. can anyone help me?
if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?