SAP RSBIUSG_ACTIVE_BI_OBJECTS Function Module for Active BI objects Info
RSBIUSG_ACTIVE_BI_OBJECTS is a standard rsbiusg active bi objects SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Active BI objects Info 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 rsbiusg active bi objects FM, simply by entering the name RSBIUSG_ACTIVE_BI_OBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSBIUSG_STAT_APIS
Program Name: SAPLRSBIUSG_STAT_APIS
Main Program: SAPLRSBIUSG_STAT_APIS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSBIUSG_ACTIVE_BI_OBJECTS 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 'RSBIUSG_ACTIVE_BI_OBJECTS'"Active BI objects Info.
EXPORTING
I_TLOGO = "BW: Object Type (TLOGO)
IMPORTING
E_COUNT_TOT_A = "Counter
E_COUNT_SAP_A = "Counter
E_COUNT_CUST_A = "Counter
E_INVALID_NAME_A = "Counter
E_COUNT_XLWB_7 = "Counter
ET_OUTPUT = "Tlogo Namespace Count
EXCEPTIONS
ILLEGAL_INPUT = 1 NOTHING_FOUND = 2
IMPORTING Parameters details for RSBIUSG_ACTIVE_BI_OBJECTS
I_TLOGO - BW: Object Type (TLOGO)
Data type: RSTLOGOOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RSBIUSG_ACTIVE_BI_OBJECTS
E_COUNT_TOT_A - Counter
Data type: RSBCOUNTOptional: No
Call by Reference: Yes
E_COUNT_SAP_A - Counter
Data type: RSBCOUNTOptional: No
Call by Reference: Yes
E_COUNT_CUST_A - Counter
Data type: RSBCOUNTOptional: No
Call by Reference: Yes
E_INVALID_NAME_A - Counter
Data type: RSBCOUNTOptional: No
Call by Reference: Yes
E_COUNT_XLWB_7 - Counter
Data type: RSBCOUNTOptional: No
Call by Reference: Yes
ET_OUTPUT - Tlogo Namespace Count
Data type: RSBIUSG_T_NAMESPACE_COUNTOptional: No
Call by Reference: Yes
EXCEPTIONS details
ILLEGAL_INPUT -
Data type:Optional: No
Call by Reference: Yes
NOTHING_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSBIUSG_ACTIVE_BI_OBJECTS 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_tlogo | TYPE RSTLOGO, " | |||
| lv_e_count_tot_a | TYPE RSBCOUNT, " | |||
| lv_illegal_input | TYPE RSBCOUNT, " | |||
| lv_e_count_sap_a | TYPE RSBCOUNT, " | |||
| lv_nothing_found | TYPE RSBCOUNT, " | |||
| lv_e_count_cust_a | TYPE RSBCOUNT, " | |||
| lv_e_invalid_name_a | TYPE RSBCOUNT, " | |||
| lv_e_count_xlwb_7 | TYPE RSBCOUNT, " | |||
| lv_et_output | TYPE RSBIUSG_T_NAMESPACE_COUNT. " |
|   CALL FUNCTION 'RSBIUSG_ACTIVE_BI_OBJECTS' "Active BI objects Info |
| EXPORTING | ||
| I_TLOGO | = lv_i_tlogo | |
| IMPORTING | ||
| E_COUNT_TOT_A | = lv_e_count_tot_a | |
| E_COUNT_SAP_A | = lv_e_count_sap_a | |
| E_COUNT_CUST_A | = lv_e_count_cust_a | |
| E_INVALID_NAME_A | = lv_e_invalid_name_a | |
| E_COUNT_XLWB_7 | = lv_e_count_xlwb_7 | |
| ET_OUTPUT | = lv_et_output | |
| EXCEPTIONS | ||
| ILLEGAL_INPUT = 1 | ||
| NOTHING_FOUND = 2 | ||
| . " RSBIUSG_ACTIVE_BI_OBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM RSBIUSG_ACTIVE_BI_OBJECTS
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