how to transfer the file from pc to mainframe??
Answers were Sorted based on User's Feedback
Answer / ajay ahuja
Through FTP (File Transfer Protocol) !!!!!
Also Manually we can do this ==>
1. On menu options use "Transfer" option (Host File
Transfer).
2. Use host system TSO (click radio Button).
3. Specify Host file name and member (if want to store in
PDS member). Remember, file name ur specifying must be
existing one and of same record length as of PC file. say
ABC.XYZ.FILE
4. At Browser "specify the path of file to be copied from
PC to Mainframe. then Apply and OK.
5. Go to ISPF Screen, option =6.
6. again go to option "Transfer", underneath "Send". The
PC file will be copied to Mainframe file (ABC.XYZ.FILE).
Similarly if one want to Transfer from Mainframe to PC,
same process can be followed Except use "Receive" in point
6.
Note: Manually transfer will be used for small files only
coz its time consuming.
I hope this will help u all.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / richard
how do you write a vbscript to do this using aviva
interface or eiconbasic macro..none work right now
Sub Main()
rc% = session.connect(false)
msgbox rc%
rc% = session.hostname
Msgbox rc%
pcfile = "c:\Documents and Settings\e454221
\Desktop\testblk.txt"
FileTransfer.PCFIle = pcfile
FileTransfer.scheme = "SendTXT_TSO"
FileTransfer.hostfile = "e454221.testxfer.clist"
rc% = FileTransfer.send(FALSE)
msgbox rc%
rc% = filetransfer.status
msgbox rc%
Is This Answer Correct ? | 0 Yes | 0 No |
Name some of the examples of COBOl 11?
What is the difference between external and global variables in COBOL?
The order of precedence of arithmetic operators in an expression can be overridden with the use of (a) [] (b) () (c) {} (d) Any of the above
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What guidelines should be followed to write a structured Cobol program?
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
I hav vari declaration like..... 77 a pic s9(9).99. 77 b pic s9(9).99 comp. 77 c pic s9(9).99 comp-3. if i use MOVE 123456789.99 to a,b,c what happen every one working fine ?
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290
I have a Flat file in which certain records are present in a tabular format. I need to extract some of the records on some basis from it and copy them into a flat file...how it can be done ??
What is report-item in COBOL?
Following questions were asked in Capegemini on 8th sep,2012 mainframe test 1.)Condition code for dul recors in VSAM- 2.) Is NULL or =NULL in Select statement 3.)max size of CI 4.)What happens after CI is full 5.)Ques on COND parameter 6.)which among following can not be rolled back a)delete table b.)droptable c)Update d.)insert 7.)groupby and orderby sql querries 8.)Max extents in VSAM file 9.)quesn on DPRTY=(1,10) 10.)range of condition codes in COBOL 11.)occurs clase can not be used at which level? 12.)delimiter in jcl 13.)sort card for file in PGM=SORT 14.)PIC(6) value 120056 possible? 15)question on BLKSIZE Is (20,20) and (20,10) possible? 16.)number of bytes in RDF 17.)Can we use index in WS-section or LK-section 18.)Verify command in IDCAMS used for? 19.)question on Alternate Index 20.)Return code of file attribute mismatch 21.)In which format COBOL variables stored? 22.)what is Alternate of HANDLE? 23.)can SUM,AVG,MIN,ROUND used in numeric and char variable data types? 24.)What is the datatype of FILE STATUS codes in WS-section?
Write a program to concert an Indexed file into Sequential file?