HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
Answer Posted / adarsha
01 ws-misc-vars.
05 system-date pic x(06) value spaces.
05 system-date-rede redefines system-date
10 system-dt-yy pic x(02) value spaces.
10 system-dt-mm pic x(02) value spaces.
10 system-dt-dd pic x(02) value spaces.
01 ws-rep-dt-frmt pic x(06) value space.
.
.
.
procedure division.
move system-date to ws-rep-dt-frmt.
*** when you want any particular variable to be recevied or
stored in a particular format you can redefine them in the
way you want.. here system-date-rede has the same value as
system-date !
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How are the next sentence and continue different from each other?
What is the difference between next sentence and continue in cobol programing language?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
How to use the same COBOL program in Batch and CICS on lines? explain with an example
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Explain how you can characterize tables in cobol?
What are the pertinent COBOL commands?
Why occurs cannot be used in 01 level in COBOL?
Why did you choose to work with ibm mainframe cobol programming?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
How do u write test cases?
Write the code to count the sum of n natural numbers.
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?