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 |
can we display comp-3 variables. if we want to display what we have to do . give me one example
how can count the number of character in feild ?? suppose for instance i have a feild with value ' rajesh sarkar' then how can v count the number of characters whitout spaces...........
what is the minimum number of lines a Cobol program should have to successfully compile and run
What is Alternate Index ? How is it different from regular index ?
How to pass return codes from cobol to jcl?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
What is Static,Dynamic linking ?
Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.
What is the maximum data length for Numeric DataType ?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
BY seeing a program how can we say that it is static call or dynamic call
What the difference is between continue and next sentence?