SAP /IBS/RB_IS_DEV_GET_SHEETDATA Function Module for









/IBS/RB_IS_DEV_GET_SHEETDATA is a standard /ibs/rb is dev get sheetdata 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 /ibs/rb is dev get sheetdata FM, simply by entering the name /IBS/RB_IS_DEV_GET_SHEETDATA into the relevant SAP transaction such as SE37 or SE38.

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



Function /IBS/RB_IS_DEV_GET_SHEETDATA 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 '/IBS/RB_IS_DEV_GET_SHEETDATA'"
EXPORTING
* TI_SO_RBDID = "
* TI_SO_RBDNR = "
I_BEWME = "

IMPORTING
TE_SHEETH = "
TE_UP = "
TE_UI = "

EXCEPTIONS
NO_DATA_FOUND = 1 PARAM_ERROR = 2
.



IMPORTING Parameters details for /IBS/RB_IS_DEV_GET_SHEETDATA

TI_SO_RBDID -

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

TI_SO_RBDNR -

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

I_BEWME -

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

EXPORTING Parameters details for /IBS/RB_IS_DEV_GET_SHEETDATA

TE_SHEETH -

Data type: /IBS/TYRB_SHEETH
Optional: No
Call by Reference: Yes

TE_UP -

Data type: /IBS/TYRB_UP
Optional: No
Call by Reference: Yes

TE_UI -

Data type: /IBS/TYRB_UI
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_DATA_FOUND -

Data type:
Optional: No
Call by Reference: Yes

PARAM_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for /IBS/RB_IS_DEV_GET_SHEETDATA 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_te_sheeth  TYPE /IBS/TYRB_SHEETH, "   
lv_ti_so_rbdid  TYPE /IBS/TYRB_S_RBDID, "   
lv_no_data_found  TYPE /IBS/TYRB_S_RBDID, "   
lv_te_up  TYPE /IBS/TYRB_UP, "   
lv_param_error  TYPE /IBS/TYRB_UP, "   
lv_ti_so_rbdnr  TYPE /IBS/TYRB_S_RBDNR, "   
lv_te_ui  TYPE /IBS/TYRB_UI, "   
lv_i_bewme  TYPE /IBS/E_BEWME. "   

  CALL FUNCTION '/IBS/RB_IS_DEV_GET_SHEETDATA'  "
    EXPORTING
         TI_SO_RBDID = lv_ti_so_rbdid
         TI_SO_RBDNR = lv_ti_so_rbdnr
         I_BEWME = lv_i_bewme
    IMPORTING
         TE_SHEETH = lv_te_sheeth
         TE_UP = lv_te_up
         TE_UI = lv_te_ui
    EXCEPTIONS
        NO_DATA_FOUND = 1
        PARAM_ERROR = 2
. " /IBS/RB_IS_DEV_GET_SHEETDATA




ABAP code using 7.40 inline data declarations to call FM /IBS/RB_IS_DEV_GET_SHEETDATA

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!