View previous topic :: View next topic |
Author |
Message |
Venkata Ramana Reddy Beginner
Joined: 02 Dec 2002 Posts: 70 Topics: 19 Location: California
|
Posted: Tue Jun 15, 2004 6:26 pm Post subject: PKZIP - Problem in PC File Name |
|
|
I have problem in PKZIP.
The PC File name which I gave in the below parameters is come as it is.(with quotes),which I do not want.
Here is the code....
I am using PKZIP (Version 5.6.0)
Code: |
//PKZIPFLS EXEC PGM=PKZIP,
// PARM='-ARCHIVE(&ZIPDSN)'
//STEPLIB DD DSN=SYS3.PKZIP.LOAD,DISP=SHR
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//ID001 DD DSN=MY.MAINFRAM.INPUT.DATASET,DISP=SHR
//SYSIN DD *
-ACTION(ADD)
-ARCHUNIT(SYSDA)
-ARCHSPACE(CYL)
-ARCHPRIMARY(600)
-ARCHSECONDARY(600)
-GDGALL_SUPPORT(N)
-INFILE(ID001)
-ZIPPED_DSN(MY.MAINFRAM.INPUT.DATASET,-
'My PC File Name.txt')
-TEXT
-FILE_TERMINATOR=
-SHOW_SETTINGS
/*
|
_________________ Venkataramana
-- Good judgement comes from experience, and often experience comes from bad judgement. |
|
Back to top |
|
|
superk Advanced
Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Tue Jun 15, 2004 6:58 pm Post subject: |
|
|
Use:
-ZIPPED_DSN(*,My PC File Name.txt) |
|
Back to top |
|
|
Venkata Ramana Reddy Beginner
Joined: 02 Dec 2002 Posts: 70 Topics: 19 Location: California
|
Posted: Mon Jun 21, 2004 6:13 pm Post subject: |
|
|
superk,
Sorry for the late reply.It worked.... _________________ Venkataramana
-- Good judgement comes from experience, and often experience comes from bad judgement. |
|
Back to top |
|
|
superk Advanced
Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Mon Jun 21, 2004 8:45 pm Post subject: |
|
|
Great!
Nice to know I get one right every once in a great while! |
|
Back to top |
|
|
|
|