SAP JITOUT10_DOWNLOAD_XML Function Module for NOTRANSL: Datei einlesen und auf Server ablegen
JITOUT10_DOWNLOAD_XML is a standard jitout10 download xml SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Datei einlesen und auf Server ablegen processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for jitout10 download xml FM, simply by entering the name JITOUT10_DOWNLOAD_XML into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT10
Program Name: SAPLJITOUT10
Main Program: SAPLJITOUT10
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT10_DOWNLOAD_XML pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'JITOUT10_DOWNLOAD_XML'"NOTRANSL: Datei einlesen und auf Server ablegen.
EXPORTING
JITODIAIT_IT = "Table Type for JITODIAIT
RCVPRT_IV = "Partner Type of Receiver
RCVPFC_IV = "Partner Function of Receiver
SNDPRT_IV = "Partner type of sender
SNDPRN_IV = "Partner Number of Sender
* FILENAME_IV = "Local file for upload/download
EXCEPTIONS
GENERAL_ERROR = 1
IMPORTING Parameters details for JITOUT10_DOWNLOAD_XML
JITODIAIT_IT - Table Type for JITODIAIT
Data type: JITODIAIT_TTOptional: No
Call by Reference: Yes
RCVPRT_IV - Partner Type of Receiver
Data type: EDI_RCVPRTOptional: No
Call by Reference: Yes
RCVPFC_IV - Partner Function of Receiver
Data type: EDI_RCVPFCOptional: No
Call by Reference: Yes
SNDPRT_IV - Partner type of sender
Data type: EDI_SNDPRTOptional: No
Call by Reference: Yes
SNDPRN_IV - Partner Number of Sender
Data type: EDI_SNDPRNOptional: No
Call by Reference: Yes
FILENAME_IV - Local file for upload/download
Data type: RLGRAP-FILENAMEOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
GENERAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for JITOUT10_DOWNLOAD_XML Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_jitodiait_it | TYPE JITODIAIT_TT, " | |||
| lv_general_error | TYPE JITODIAIT_TT, " | |||
| lv_rcvprt_iv | TYPE EDI_RCVPRT, " | |||
| lv_rcvpfc_iv | TYPE EDI_RCVPFC, " | |||
| lv_sndprt_iv | TYPE EDI_SNDPRT, " | |||
| lv_sndprn_iv | TYPE EDI_SNDPRN, " | |||
| lv_filename_iv | TYPE RLGRAP-FILENAME. " |
|   CALL FUNCTION 'JITOUT10_DOWNLOAD_XML' "NOTRANSL: Datei einlesen und auf Server ablegen |
| EXPORTING | ||
| JITODIAIT_IT | = lv_jitodiait_it | |
| RCVPRT_IV | = lv_rcvprt_iv | |
| RCVPFC_IV | = lv_rcvpfc_iv | |
| SNDPRT_IV | = lv_sndprt_iv | |
| SNDPRN_IV | = lv_sndprn_iv | |
| FILENAME_IV | = lv_filename_iv | |
| EXCEPTIONS | ||
| GENERAL_ERROR = 1 | ||
| . " JITOUT10_DOWNLOAD_XML | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT10_DOWNLOAD_XML
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_filename_iv). | ||||
Search for further information about these or an SAP related objects