SAP RSA1_PROXY_DATA_OUT Function Module for









RSA1_PROXY_DATA_OUT is a standard rsa1 proxy data out SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 rsa1 proxy data out FM, simply by entering the name RSA1_PROXY_DATA_OUT into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSA1_PROXY
Program Name: SAPLRSA1_PROXY
Main Program: SAPLRSA1_PROXY
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function RSA1_PROXY_DATA_OUT 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 'RSA1_PROXY_DATA_OUT'"
EXPORTING
* I_DATA = "
I_S_INFO = "
* I_DEBUG = "
* I_LOWER = "
* I_HIGHER = "
I_S_PROP = "
* I_PULL = "
I_S_OSOURCE = "
* I_S_OHIECAT = "
* I_T_SEGMENTS = "
* I_T_PXITEM = "

EXCEPTIONS
FAILED = 1
.



IMPORTING Parameters details for RSA1_PROXY_DATA_OUT

I_DATA -

Data type: XSTRING
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_S_INFO -

Data type: ROPXINFO
Optional: No
Call by Reference: No ( called with pass by value option)

I_DEBUG -

Data type: ROFLAG
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LOWER -

Data type: INT4
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_HIGHER -

Data type: INT4
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_S_PROP -

Data type: ROPROXYPROP
Optional: No
Call by Reference: No ( called with pass by value option)

I_PULL -

Data type: ROFLAG
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_S_OSOURCE -

Data type: RODYNP100
Optional: No
Call by Reference: No ( called with pass by value option)

I_S_OHIECAT -

Data type: ROOHIECAT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_T_SEGMENTS -

Data type: RO_T_OSSEG
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_T_PXITEM -

Data type: ROTPROXYITEM
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

FAILED -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for RSA1_PROXY_DATA_OUT 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_failed  TYPE STRING, "   
lv_i_data  TYPE XSTRING, "   
lv_i_s_info  TYPE ROPXINFO, "   
lv_i_debug  TYPE ROFLAG, "   
lv_i_lower  TYPE INT4, "   
lv_i_higher  TYPE INT4, "   
lv_i_s_prop  TYPE ROPROXYPROP, "   
lv_i_pull  TYPE ROFLAG, "   
lv_i_s_osource  TYPE RODYNP100, "   
lv_i_s_ohiecat  TYPE ROOHIECAT, "   
lv_i_t_segments  TYPE RO_T_OSSEG, "   
lv_i_t_pxitem  TYPE ROTPROXYITEM. "   

  CALL FUNCTION 'RSA1_PROXY_DATA_OUT'  "
    EXPORTING
         I_DATA = lv_i_data
         I_S_INFO = lv_i_s_info
         I_DEBUG = lv_i_debug
         I_LOWER = lv_i_lower
         I_HIGHER = lv_i_higher
         I_S_PROP = lv_i_s_prop
         I_PULL = lv_i_pull
         I_S_OSOURCE = lv_i_s_osource
         I_S_OHIECAT = lv_i_s_ohiecat
         I_T_SEGMENTS = lv_i_t_segments
         I_T_PXITEM = lv_i_t_pxitem
    EXCEPTIONS
        FAILED = 1
. " RSA1_PROXY_DATA_OUT




ABAP code using 7.40 inline data declarations to call FM RSA1_PROXY_DATA_OUT

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!