SAP RS_DATASOURCE_LIS_PROPOSAL Function Module for LIS proposal for transfer rules
RS_DATASOURCE_LIS_PROPOSAL is a standard rs datasource lis proposal SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for LIS proposal for transfer rules 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 rs datasource lis proposal FM, simply by entering the name RS_DATASOURCE_LIS_PROPOSAL into the relevant SAP transaction such as SE37 or SE38.
Function Group: RS_DATASOURCE_PROPOSAL
Program Name: SAPLRS_DATASOURCE_PROPOSAL
Main Program: SAPLRS_DATASOURCE_PROPOSAL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RS_DATASOURCE_LIS_PROPOSAL 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 'RS_DATASOURCE_LIS_PROPOSAL'"LIS proposal for transfer rules.
EXPORTING
I_LOGSYS = "DataSource
I_S_OSOURCE = "Replicate Table for OLTP Sources in BW
I_WORKMODE = "Work mode (with / without creating objects)
IMPORTING
E_S_ISOSMAP = "Mapping between InfoSources and OLTP Sources
E_T_OSFIELDMAP = "Feld <-> InfoObject Mapping of an OLTP Source
E_T_MESSAGES = "Notification Transfer
IMPORTING Parameters details for RS_DATASOURCE_LIS_PROPOSAL
I_LOGSYS - DataSource
Data type: RSSLOGSYSOptional: No
Call by Reference: Yes
I_S_OSOURCE - Replicate Table for OLTP Sources in BW
Data type: RSAOS_S_OLTPSOURCEOptional: No
Call by Reference: Yes
I_WORKMODE - Work mode (with / without creating objects)
Data type: RSWORKMODEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RS_DATASOURCE_LIS_PROPOSAL
E_S_ISOSMAP - Mapping between InfoSources and OLTP Sources
Data type: RSAOS_S_ISOSMAPOptional: No
Call by Reference: Yes
E_T_OSFIELDMAP - Feld <-> InfoObject Mapping of an OLTP Source
Data type: RSAOS_T_OSFIELDMAPOptional: No
Call by Reference: Yes
E_T_MESSAGES - Notification Transfer
Data type: RSAOS_T_MESSAGESOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RS_DATASOURCE_LIS_PROPOSAL 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_i_logsys | TYPE RSSLOGSYS, " | |||
| lv_e_s_isosmap | TYPE RSAOS_S_ISOSMAP, " | |||
| lv_i_s_osource | TYPE RSAOS_S_OLTPSOURCE, " | |||
| lv_e_t_osfieldmap | TYPE RSAOS_T_OSFIELDMAP, " | |||
| lv_i_workmode | TYPE RSWORKMODE, " | |||
| lv_e_t_messages | TYPE RSAOS_T_MESSAGES. " |
|   CALL FUNCTION 'RS_DATASOURCE_LIS_PROPOSAL' "LIS proposal for transfer rules |
| EXPORTING | ||
| I_LOGSYS | = lv_i_logsys | |
| I_S_OSOURCE | = lv_i_s_osource | |
| I_WORKMODE | = lv_i_workmode | |
| IMPORTING | ||
| E_S_ISOSMAP | = lv_e_s_isosmap | |
| E_T_OSFIELDMAP | = lv_e_t_osfieldmap | |
| E_T_MESSAGES | = lv_e_t_messages | |
| . " RS_DATASOURCE_LIS_PROPOSAL | ||
ABAP code using 7.40 inline data declarations to call FM RS_DATASOURCE_LIS_PROPOSAL
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.Search for further information about these or an SAP related objects