SAP RODPS_EXTRACT_OSOA Function Module for









RODPS_EXTRACT_OSOA is a standard rodps extract osoa 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 rodps extract osoa FM, simply by entering the name RODPS_EXTRACT_OSOA into the relevant SAP transaction such as SE37 or SE38.

Function Group: RODPS_EXTRACT
Program Name: SAPLRODPS_EXTRACT
Main Program: SAPLRODPS_EXTRACT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RODPS_EXTRACT_OSOA 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 'RODPS_EXTRACT_OSOA'"
EXPORTING
I_OLTPSOURCE = "
* I_UPDMODE = 'F ' "
* I_READ_ONLY = ABAP_TRUE "
* IT_SELECT = "
* IT_FIELD = "
* I_ENTER_SELECTIONS = "
* I_DEBUG = "
* I_PACKAGE_SIZE = 100 "
* I_CALLS_MAX = 10 "

EXCEPTIONS
FAILED = 1
.



IMPORTING Parameters details for RODPS_EXTRACT_OSOA

I_OLTPSOURCE -

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

I_UPDMODE -

Data type: RSUPDMODE
Default: 'F '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_READ_ONLY -

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

IT_SELECT -

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

IT_FIELD -

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

I_ENTER_SELECTIONS -

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

I_DEBUG -

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

I_PACKAGE_SIZE -

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

I_CALLS_MAX -

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

EXCEPTIONS details

FAILED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RODPS_EXTRACT_OSOA 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_oltpsource  TYPE ROOSOURCER, "   
lv_i_updmode  TYPE RSUPDMODE, "   'F '
lv_i_read_only  TYPE ABAP_BOOL, "   ABAP_TRUE
lv_it_select  TYPE SBIWA_T_SELECT, "   
lv_it_field  TYPE SBIWA_T_FIELDS, "   
lv_i_enter_selections  TYPE ABAP_BOOL, "   
lv_i_debug  TYPE ABAP_BOOL, "   
lv_i_package_size  TYPE I, "   100
lv_i_calls_max  TYPE I. "   10

  CALL FUNCTION 'RODPS_EXTRACT_OSOA'  "
    EXPORTING
         I_OLTPSOURCE = lv_i_oltpsource
         I_UPDMODE = lv_i_updmode
         I_READ_ONLY = lv_i_read_only
         IT_SELECT = lv_it_select
         IT_FIELD = lv_it_field
         I_ENTER_SELECTIONS = lv_i_enter_selections
         I_DEBUG = lv_i_debug
         I_PACKAGE_SIZE = lv_i_package_size
         I_CALLS_MAX = lv_i_calls_max
    EXCEPTIONS
        FAILED = 1
. " RODPS_EXTRACT_OSOA




ABAP code using 7.40 inline data declarations to call FM RODPS_EXTRACT_OSOA

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.

 
 
DATA(ld_i_updmode) = 'F '.
 
DATA(ld_i_read_only) = ABAP_TRUE.
 
 
 
 
 
DATA(ld_i_package_size) = 100.
 
DATA(ld_i_calls_max) = 10.
 


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!