how to transfer the file from pc to mainframe??
Answers were Sorted based on User's Feedback
Answer / vasanth
one of the way is
open the dos command promt
To start an FTP interactive session type "ftp" from a DOS
Command window.
C:\> ftp
ftp> open domain.name
then it will be connected to ur server and asks ur user-id
and password enter them
then cser name logged in
ftp>
The following command will copy a file from the local system
to the remote system.
ftp> put d:\simoweb1\filename(adderess of ur file that u
wish 2 send from ur pc to mainframe)
press enter
then it shows the successfull message
The following command will exit the FTP environment (same as
"bye").
ftp> quit
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / raghavendra
1. The File Format in PC should be (*.txt).
2. Use File Transfer Protocal option in mainframe.
3. Do FTP
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / dave
We wrote a REXX program that attaches a .txt file to an
SMTP email and sends it to outlook. Then you simply open it
from your email and save it to your harddrive.
| Is This Answer Correct ? | 0 Yes | 3 No |
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
How do you set a return code to the JCL from a COBOL program?
How do you define a sort file in JCL that runs the COBOL program?
How will you find the currepted records in a file
i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,copy,write operations).plz give me details of all posible JCL utilities?
What are declaratives and what are their uses in cobol?
What is reference modification? What is UNION in sql and syntax? What is the difference between GDGS and VSAM? Which is prefer one? What is processing groups in endevor?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.
what is difference between cobol and cobol/400
how many subpgms we can use in a main pgm ? how do u link sub pgm to main pgm ? how can i use the parameters declared in main pgm to sub pgm ?