Hi,
Problem description:
I use Rexx to create one a member, member was created successfully. but there is no other info except member name . I expect to see user id, create date info adhere with the new member.
There are two members, in my PDS as below. (using - to keeping the format good. ignore - when you read.)
Name-----------Prompt--Size--Created--------Changed----------------------ID
TSTREXX-------------------15---2010/09/08---2011/08/24 23:02:36---USR012
BC6557C--------------------------------------------------------------------------------> there is no other info except name, i want at least have ID and created date .
First TSTREXX is created by ISPF 3.2
BC6557C is created follwing REXX code.
/* create new member */
PARSE UPPER ARG NMEM
DEST = PDSNAM || "(" || NMEM || ")"
ADDRESS TSO "ALLOC F(OUT) DS('"DEST"') SHR"
Question:
I want make the other info(ID, Created date) for BC6557C when rexx creating it. I checked the TSO command reference, got no help.
How to do it?
Thanks.