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 |
I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?
In CICS/VSAM every file that is accessed should be defined in FCT. we have CICS READ, WRITE, BROWSE commands for VSAM files. How does it work with DB2 tables. It know it has to do with the plan. Please expain with examples.
Which of the following paragraphs is compulsory in every COBOL program? (a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER
In an EVALUTE statement is the order of the WHEN clauses significant?
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
How can you add a particular field in copybook?
why we are using picture clause in the cobol programs?
If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.
What is the figurative constant in cobol?
How to open and see copy book ?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy