SAP Database - The Unofficial SAP Knowledge Base

FTP from ABAP

Print This Post Email This Post Written by admin on Oct 22nd, 2007 | Filed under: ABAP, ABAP Programs, Articles
CALL FUNCTION 'FTP_CONNECT' DESTINATIONRFC_DESTINATIONEXPORTING USER = USER PWD = PASSWORD ACCT =ACCOUNT HOST = HOSTTRACE = FTP_TRACE GUSER = GATEWAY_USER

GPWD = GATEWAY_PASSWORD GHOST =GATEWAY_HOSTIMPORTING HANDLE = HANDLE ERROR = CERROR

EXCEPTIONS SYSTEM_FAILURE = 1COMMUNICATION_FAILURE = 2. 

Source: Yahoo ABAP forum

———————
ABAPer, mail: abap.community@gmail.com http://abaplearner.blogspot.com

If you like this post, you may as well like these too:

  1. How to find OK Codes Goto menu bar in thatSystem--->Statusclick Gui StatusExpand all the nodes inside u will get all Function Code/ ok code for icons inside the in GUI menu Bar. Source: Yahoo...
  2. ABAP Programs: Calling a function REPORT ZSOURCE1010.* Variable for later useDATA: X TYPE I VALUE 5, Y LIKE X VALUE 7, MAXIMUM LIKE X.* Calling a functionCALL FUNCTION ‘MAX_TEST’ EXPORTING A = X B...
  3. ABAP Programs: Copying fields REPORT ZSOURCE0701. * move fieldsDATA: NAME(25), COUNTER TYPE I.DATA: SOURCE LIKE NAME, TARGET LIKE SOURCE.MOVE: ‘Edison’ TO NAME, 17 TO COUNTER.MOVE SOURCE TO TARGET.* Using the compute command (keyword...
  4. ABAP Optimisation tips Download Here Contributed by Rajagopalan M. ——————— ABAPer, mail: abap.community@gmail.com http://abaplearner.blogspot.com ...
  5. List of all ABAP Commands Download here Compiled by Srinivas Gummaluri ~~~~ end of post ~~~~———————ABAPer, mail: abap.community@gmail.com http://abaplearner.blogspot.com ...



Leave a Reply