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

group variable in EZT program


IBM Mainframe Forums -> CA Products
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
hiravibk
Warnings : 1

Active User


Joined: 14 Dec 2008
Posts: 107
Location: India

PostPosted: Wed Apr 08, 2009 4:20 pm
Reply with quote

Hi,
Can i use group variable in EZT as we do in COBOL?
I tired the following way, but it is throwing an error saying required field not eneterd.
Code:

date.
  month  2  a
  day    2  a
  year   4  a

please tell me where did i go wromg ??or if i am wrong please explain me the correct way of using group variables in EZT program.

thank you,
Ravi
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 2146
Location: At my coffee table

PostPosted: Wed Apr 08, 2009 4:39 pm
Reply with quote

Code:
date   1  8  a
month  1  2  a
day    3  2  a
year   5  4  a
Back to top
View user's profile Send private message
Douglas Wilder

Active User


Joined: 28 Nov 2006
Posts: 305
Location: Deerfield IL

PostPosted: Thu Apr 09, 2009 6:27 am
Reply with quote

or
Code:
date   1         8  a
month  date      2  a
day    date + 2  2  a
year   date + 4  4  a
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 -> CA Products

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts DB2 Event passed to the Application P... DB2 1
No new posts How to pass the PARM value to my targ... COBOL Programming 8
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
Search our Forums:

Back to Top