Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Anchor
1044548
1044548
The file name on the Windows server is dynamically created based on the current date.

Panel
//S1 EXEC UCMDPRC
//UNVIN    DD DISP=SHR,DSN=hlq.input.file
//LOGONDD  DD DISP=SHR,DSN=hlq.userid(userid)
//SCRIPTDD DD *
@echo off                                                         
for /f "tokens=1 delims=/" %%a in ('date /t') do set daymm=%%a    
for /f "tokens=2" %%a in ('echo %daymm%') do set mm=%%a           
for /f "tokens=2 delims=/" %%a in ('date /t') do set dd=%%a       
for /f "tokens=3 delims=/" %%a in ('date /t') do set yy=%%a       
echo daymm:  %daymm%                                              
echo mmddyy: %mm%%dd%%yy%                                         
ucopy -output c:\temp\outputfile%mm%%dd%%yy%                      
//SYSIN    DD *
-script SCRIPTDD
-encryptedfile LOGONDD
-host dallas
/*


Anchor
1031926
1031926
The JCL procedure UCMDPRC is used to execute the command. The command is sent to a remote system named dallas for execution. The -output option is used with the ucopy command to direct stdout to a local data set on the remote Windows server. The file name is created with a date variable. The date variable is set to the current date in the commands preceding the ucopy command.

...

Anchor
1031929
1031929
The SYSIN options used in this example are:

...

:

...

...

Option

...

...

stylebackground-color: #F0F0F0; border-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: middle; width: 309.6pt;

Description

...

...

...

...

styleborder-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: top;

...

...

DD from which to read a script file. The script file is sent to the remote system for execution.

...

...

...

...

DD from which to read an encrypted command options file.

...

...

...

...

styleborder-bottom-color: #E8E8E8; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: #E8E8E8; border-left-style: solid; border-left-width: 1px; border-right-color: #E8E8E8; border-right-style: solid; border-right-width: 1px; border-top-color: #E8E8E8; border-top-style: solid; border-top-width: 1px; padding-bottom: 3pt; padding-left: 4pt; padding-right: 4pt; padding-top: 4pt; vertical-align: top;

...

Directs the command to a computer with a host name of dallas.

Components

Anchor
1050366
1050366
Universal Command Manager for z/OS

...