RSSM_CALL_RSAR_DATA_REQUEST_1 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 RSSM_CALL_RSAR_DATA_REQUEST_1 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSSM
Released Date:
24.10.1997
Processing type: Normal fucntion module
CALL FUNCTION 'RSSM_CALL_RSAR_DATA_REQUEST_1' "Call up RSAR_DATA_REQUEST with int. table
EXPORTING
p_logid = " rsd1-logid
p_logid_p = " rsd1-logid_p
p_source = " rsldpio-source
p_typ = " rsldpio-typ
p_logsys = " rsldpio-logsys
p_oltpsource = " rsldpio-oltpsource
p_uname = " sy-uname
p_batch = " c
* g_gnr = " rsreqdone-gnr
* i_apo_call = " c
* g_bapirnr = SPACE " rssdbatch-bapirnr Request number for the data transfer
IMPORTING
error = " c
g_rnr = " rsseldone-rnr
e_t_msg_crt = " rs_t_msg BW: Table with Messages (Application Log)
TABLES
p_t_rsldpsel = " rsldpsel
p_t_rsldpio = " rsldpio
p_t_rssdbatch = " rssdbatch
* p_t_rsldpcrt = " rsldpcrt CRT Enhancement Apollo
EXCEPTIONS
INTERNAL_ERROR = 1 "
. " RSSM_CALL_RSAR_DATA_REQUEST_1
The ABAP code below is a full code listing to execute function module RSSM_CALL_RSAR_DATA_REQUEST_1 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_error | TYPE C , |
| ld_g_rnr | TYPE RSSELDONE-RNR , |
| ld_e_t_msg_crt | TYPE RS_T_MSG , |
| it_p_t_rsldpsel | TYPE STANDARD TABLE OF RSLDPSEL,"TABLES PARAM |
| wa_p_t_rsldpsel | LIKE LINE OF it_p_t_rsldpsel , |
| it_p_t_rsldpio | TYPE STANDARD TABLE OF RSLDPIO,"TABLES PARAM |
| wa_p_t_rsldpio | LIKE LINE OF it_p_t_rsldpio , |
| it_p_t_rssdbatch | TYPE STANDARD TABLE OF RSSDBATCH,"TABLES PARAM |
| wa_p_t_rssdbatch | LIKE LINE OF it_p_t_rssdbatch , |
| it_p_t_rsldpcrt | TYPE STANDARD TABLE OF RSLDPCRT,"TABLES PARAM |
| wa_p_t_rsldpcrt | LIKE LINE OF it_p_t_rsldpcrt . |
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_error | TYPE C , |
| ld_p_logid | TYPE RSD1-LOGID , |
| it_p_t_rsldpsel | TYPE STANDARD TABLE OF RSLDPSEL , |
| wa_p_t_rsldpsel | LIKE LINE OF it_p_t_rsldpsel, |
| ld_g_rnr | TYPE RSSELDONE-RNR , |
| ld_p_logid_p | TYPE RSD1-LOGID_P , |
| it_p_t_rsldpio | TYPE STANDARD TABLE OF RSLDPIO , |
| wa_p_t_rsldpio | LIKE LINE OF it_p_t_rsldpio, |
| ld_e_t_msg_crt | TYPE RS_T_MSG , |
| ld_p_source | TYPE RSLDPIO-SOURCE , |
| it_p_t_rssdbatch | TYPE STANDARD TABLE OF RSSDBATCH , |
| wa_p_t_rssdbatch | LIKE LINE OF it_p_t_rssdbatch, |
| ld_p_typ | TYPE RSLDPIO-TYP , |
| it_p_t_rsldpcrt | TYPE STANDARD TABLE OF RSLDPCRT , |
| wa_p_t_rsldpcrt | LIKE LINE OF it_p_t_rsldpcrt, |
| ld_p_logsys | TYPE RSLDPIO-LOGSYS , |
| ld_p_oltpsource | TYPE RSLDPIO-OLTPSOURCE , |
| ld_p_uname | TYPE SY-UNAME , |
| ld_p_batch | TYPE C , |
| ld_g_gnr | TYPE RSREQDONE-GNR , |
| ld_i_apo_call | TYPE C , |
| ld_g_bapirnr | TYPE RSSDBATCH-BAPIRNR . |
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 RSSM_CALL_RSAR_DATA_REQUEST_1 or its description.
RSSM_CALL_RSAR_DATA_REQUEST_1 - Call up RSAR_DATA_REQUEST with int. table RSSM_CALL_MONITOR_EXT - Monitor call for external devices RSSM_CALL_ICUBE_PFLEGE - InfoCube Maintenance RSSM_CALL_BADI_SDL - Call Business Add-In forl Scheduler RSSM_CALC_HASH_FROM_TABLE - Hashing an internal selection table RSSM_BP_JOB_MAINTENANCE - Monitor and control background jobs from scheduler