RSAP_INFOSOURCE_TRANSFER is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RSAP_INFOSOURCE_TRANSFER into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSAM
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'RSAP_INFOSOURCE_TRANSFER' "
EXPORTING
i_isource = " rssis-isource
* i_with_fields = 'X' " rois-genflag
IMPORTING
e_s_isource = " rssis
e_s_rois = " rois
e_s_roist = " roist
* TABLES
* i_t_langu = " rslangusel
* e_t_isourcet = " rssist
* e_t_tbfd = " rssisfield
* e_t_tbfdt = " rssisfdtxt
* e_t_roisiobj = " roisiobj
EXCEPTIONS
ISOURCE_NOT_FOUND = 1 "
INVALID_STRUCTURE = 2 "
. " RSAP_INFOSOURCE_TRANSFER
The ABAP code below is a full code listing to execute function module RSAP_INFOSOURCE_TRANSFER including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_s_isource | TYPE RSSIS , |
| ld_e_s_rois | TYPE ROIS , |
| ld_e_s_roist | TYPE ROIST , |
| it_i_t_langu | TYPE STANDARD TABLE OF RSLANGUSEL,"TABLES PARAM |
| wa_i_t_langu | LIKE LINE OF it_i_t_langu , |
| it_e_t_isourcet | TYPE STANDARD TABLE OF RSSIST,"TABLES PARAM |
| wa_e_t_isourcet | LIKE LINE OF it_e_t_isourcet , |
| it_e_t_tbfd | TYPE STANDARD TABLE OF RSSISFIELD,"TABLES PARAM |
| wa_e_t_tbfd | LIKE LINE OF it_e_t_tbfd , |
| it_e_t_tbfdt | TYPE STANDARD TABLE OF RSSISFDTXT,"TABLES PARAM |
| wa_e_t_tbfdt | LIKE LINE OF it_e_t_tbfdt , |
| it_e_t_roisiobj | TYPE STANDARD TABLE OF ROISIOBJ,"TABLES PARAM |
| wa_e_t_roisiobj | LIKE LINE OF it_e_t_roisiobj . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_s_isource | TYPE RSSIS , |
| ld_i_isource | TYPE RSSIS-ISOURCE , |
| it_i_t_langu | TYPE STANDARD TABLE OF RSLANGUSEL , |
| wa_i_t_langu | LIKE LINE OF it_i_t_langu, |
| ld_e_s_rois | TYPE ROIS , |
| ld_i_with_fields | TYPE ROIS-GENFLAG , |
| it_e_t_isourcet | TYPE STANDARD TABLE OF RSSIST , |
| wa_e_t_isourcet | LIKE LINE OF it_e_t_isourcet, |
| ld_e_s_roist | TYPE ROIST , |
| it_e_t_tbfd | TYPE STANDARD TABLE OF RSSISFIELD , |
| wa_e_t_tbfd | LIKE LINE OF it_e_t_tbfd, |
| it_e_t_tbfdt | TYPE STANDARD TABLE OF RSSISFDTXT , |
| wa_e_t_tbfdt | LIKE LINE OF it_e_t_tbfdt, |
| it_e_t_roisiobj | TYPE STANDARD TABLE OF ROISIOBJ , |
| wa_e_t_roisiobj | LIKE LINE OF it_e_t_roisiobj. |
Supplies a catalog of characteristics and key figures for one InfoCube
This catalog is constructed from DDIC settings and contains technical
...See here for full SAP fm documentation
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RSAP_INFOSOURCE_TRANSFER or its description.