Show 2 ways to convert a date from YYMMDD to MMDDYY (MULT operation not acceptable)
Answer / sanjeet kumar
1)CVTDAT() DATE() RTNVAR() FROMFMT() TOFMT()
Source code is required to convert from one date format to another date format.
The source code in CLP is given below:
PGM
DCL VAR(&VAR1) LENGTH(6) TYPE(*CHAR) VALUE('YYMMDD')
DCL VAR(&RCVD) LENGTH(6) TYPE(*CHAR)
DCL VAR(&VAR2) LENGTH(4) TYPE(*CHAR)
DCL VAR(&VAR3) LENGTH(2) TYPE(*CHAR)
CHGVAR VAR(&VAR2) VALUE(%SST(&VAR1 3 4))
CHGVAR VAR(&VAR3) VALUE(%SST(&VAR1 1 2))
CHGVAR VAR(&RCVD) VALUE(&VAR2 *CAT &VAR3)
SNDMSG MSG(&RCVD) TOUSR(*USRPRF)
ENDPGM
| Is This Answer Correct ? | 0 Yes | 0 No |
can we creat a member logical file
What command must be executed before executing OPNQRYF command?
can error messages as a result of a comp, range or values keyword be overridden?
What is the function of RJE Conversion Utility?
what is a spool file?
What is the purpose of 'CPYTOIMPF' command?
6 Answers Aditya Birla, Redington,
WHAT IS AS/400 SYNORIO?
what is the use of CPYFRMQRYF?
how can u check no of records in a file?
What does SDA stands for ?
what is the command to know how many lf are related to a pf?
How many MONMSG commands can declare in a CL program?