How do I FTP a file that is on disk to support.ca.com?
search cancel

How do I FTP a file that is on disk to support.ca.com?

book

Article ID: 50018

calendar_today

Updated On:

Products

CIS COMMON SERVICES FOR Z/OS 90S SERVICES DATABASE MANAGEMENT SOLUTIONS FOR DB2 FOR Z/OS COMMON PRODUCT SERVICES COMPONENT Common Services Datacom/AD CA ECOMETER SERVER COMPONENT FOC Easytrieve Report Generator for Common Services INFOCAI MAINTENANCE IPC UNICENTER JCLCHECK COMMON COMPONENT Mainframe VM Product Manager CHORUS SOFTWARE MANAGER CA ON DEMAND PORTAL CA Service Desk Manager - Unified Self Service PAM CLIENT FOR LINUX ON MAINFRAME MAINFRAME CONNECTOR FOR LINUX ON MAINFRAME GRAPHICAL MANAGEMENT INTERFACE WEB ADMINISTRATOR FOR TOP SECRET Xpertware Vollie

Issue/Introduction

Description:

To solve an issue, CA Support technicians will often request additional documentation such as dumps or a copy of a catalog. This document provides an example on how to FTP a disk dataset to CA support FTP server.

Solution:

To FTP a DYNAM catalog (or a fixed record file with record length of 1024 from customer to CA, use the following jcl:

// DLBL FIL2,'DYNAM.71.CATALOG'
// EXTENT ,vvvvvv,,,sss,nn
// EXEC FTPBATCH,PARM='IP=141.202.253.54'
userid@server
password
localuser
localpassword
LSITE UNIX OFF
LSITE CRLF OFF
bin
CD /0cccccc/nnnnnnnn-nn/files_from_customer
put %FIL2,SAM,F,1024 DYNAM.catalog
QUIT
/*

Change 1024 to the length of your dataset.

To FTP a fix blocked file from customer to ca (In this case record length 100 5 records by block):

// DLBL FIL2,'FILE.TO.SEND'
// EXTENT ,vvvvvv,,,sss,nn
// EXEC FTPBATCH,PARM='IP=141.202.253.54'
userid@server
password
localuser
localpassword
LSITE UNIX OFF
LSITE CRLF OFF
bin
CD /0cccccc/nnnnnn-nn/files_from_customer
put %fil2,SAM,FB,100,500 file.fixblock.100.5
QUIT
/*

Change 100 to the record length of your file, 500 to the block length and 5 to the number of record by block.

where userid@server is the userid used to signon to support.ca.com and password the password to access support.ca.com.
cccccc is the customer id
nnnnnnnn.nn the issue number
vvvvvv the volume where the file reside/will be placed
sss the start track of the file
nn the number of tracks.
localuser and localpassword the userid and password that identify you on your z/VSE TCP/IP system.

Environment

Release:
Component: CA90SV