IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

SYMNAMES in SORT card


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
tvinodkumar7

New User


Joined: 06 Jan 2015
Posts: 19
Location: Hyderabad, INDIA

PostPosted: Fri Feb 13, 2015 10:35 am
Reply with quote

Hi,

I have requirement to retrieve records with current date.

step1 : Retrieved date from my date file using easytrieve as below

//TODAYDT EXEC EZTPCLGO
//DATEIN DD DSN=DATEFILE,DISP=SHR
//DATEOUT DD DSN=TODAY.DATE.PSFILE,DISP=(NEW,CATLG,DELETE),
// DCB=(LRECL=5,BLKSIZE=0,RECFM=FB,DSORG=PS),
// SPACE=(TRK,(1,1),RLSE),UNIT=SYSDA
//SYSIN DD *
FILE DATEIN VS
D-TODAY 16 5 P
FILE DATEOUT
OUT-TODAY-DT 1 5 P
JOB INPUT(NULL)
GET DATEIN
OUT-TODAY-DT = D-TODAY
PUT DATEOUT
STOP

now the file TODAY.DATE.PSFILE of length 5 is have current date.

//STEP001 EXEC PGM=SORT
//SORTIN DD DSN=TODAY.DATE.PSFILE,DISP=SHR
//SYMNAMES DD *
TODAYDT,'TODAY.DATE.PSFILE'
/*


I have to use the above value TODAYDT in the below sort step(WHEN) to build my records with current date.

SORT FIELDS=(1,18,CH,A)
OUTFIL IFTHEN=(WHEN=
(19,2,CH,EQ,C'10',AND,
210,1,CH,EQ,C'2',AND
265,05,PD,EQ,TODAYDT),
BUILD=(1:1,45))

How can I use the SYMNAMES? Please suggest.

TIA
Back to top
View user's profile Send private message
Smita.t2

New User


Joined: 17 Apr 2012
Posts: 31
Location: Bangalore

PostPosted: Fri Feb 13, 2015 1:17 pm
Reply with quote

Is the check always going to be Current Date?
If so, you can eliminate the eztrieve program and just have one sort step to extract the records using DATE Operand.
I cannot test it right now, please try and let us know if it works.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Feb 13, 2015 2:00 pm
Reply with quote

No. It is a sensible system which uses a date file, not relying on the system date which, daily, changes at the most inopportune moments.

tvinodkumar7,

Probably the easiest thing to do would be to format the symbol in the Easytrieve Plus program. LRECL 80, REFCM FB.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
Search our Forums:

Back to Top