SAP BW_RFC_IOBJ_ACT_MULT Function Module for Activates InfoObjects
BW_RFC_IOBJ_ACT_MULT is a standard bw rfc iobj act mult SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Activates InfoObjects 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 bw rfc iobj act mult FM, simply by entering the name BW_RFC_IOBJ_ACT_MULT into the relevant SAP transaction such as SE37 or SE38.
Function Group: TBL_BW
Program Name: SAPLTBL_BW
Main Program: SAPLTBL_BW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BW_RFC_IOBJ_ACT_MULT 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 'BW_RFC_IOBJ_ACT_MULT'"Activates InfoObjects.
EXPORTING
I_RFCDEST = "Logical Destination (Specified in Function Call)
I_TAB_INFOOBJECTS = "InfoObjects: List of InfoObjects
IMPORTING
E_TAB_INFOOBJ_ERR = "InfoObjects: List of InfoObjects
E_TAB_RETURN = "Table with BAPI Return Information
EXCEPTIONS
IOBJ_NOT_FOUND = 1 IOBJ_ACTIVATE_FAILED = 2 COMM_ERROR = 3 FAILED = 4
IMPORTING Parameters details for BW_RFC_IOBJ_ACT_MULT
I_RFCDEST - Logical Destination (Specified in Function Call)
Data type: RFCDESTOptional: No
Call by Reference: Yes
I_TAB_INFOOBJECTS - InfoObjects: List of InfoObjects
Data type: TTY_TAB_BAPI6108IOOptional: No
Call by Reference: Yes
EXPORTING Parameters details for BW_RFC_IOBJ_ACT_MULT
E_TAB_INFOOBJ_ERR - InfoObjects: List of InfoObjects
Data type: TTY_TAB_BAPI6108IOOptional: No
Call by Reference: Yes
E_TAB_RETURN - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: Yes
EXCEPTIONS details
IOBJ_NOT_FOUND - InfoObject Not Available
Data type:Optional: No
Call by Reference: Yes
IOBJ_ACTIVATE_FAILED - Error When Activating InfoObject
Data type:Optional: No
Call by Reference: Yes
COMM_ERROR - Communication Error
Data type:Optional: No
Call by Reference: Yes
FAILED - Error When Activating
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BW_RFC_IOBJ_ACT_MULT 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_rfcdest | TYPE RFCDEST, " | |||
| lv_iobj_not_found | TYPE RFCDEST, " | |||
| lv_e_tab_infoobj_err | TYPE TTY_TAB_BAPI6108IO, " | |||
| lv_e_tab_return | TYPE BAPIRETTAB, " | |||
| lv_i_tab_infoobjects | TYPE TTY_TAB_BAPI6108IO, " | |||
| lv_iobj_activate_failed | TYPE TTY_TAB_BAPI6108IO, " | |||
| lv_comm_error | TYPE TTY_TAB_BAPI6108IO, " | |||
| lv_failed | TYPE TTY_TAB_BAPI6108IO. " |
|   CALL FUNCTION 'BW_RFC_IOBJ_ACT_MULT' "Activates InfoObjects |
| EXPORTING | ||
| I_RFCDEST | = lv_i_rfcdest | |
| I_TAB_INFOOBJECTS | = lv_i_tab_infoobjects | |
| IMPORTING | ||
| E_TAB_INFOOBJ_ERR | = lv_e_tab_infoobj_err | |
| E_TAB_RETURN | = lv_e_tab_return | |
| EXCEPTIONS | ||
| IOBJ_NOT_FOUND = 1 | ||
| IOBJ_ACTIVATE_FAILED = 2 | ||
| COMM_ERROR = 3 | ||
| FAILED = 4 | ||
| . " BW_RFC_IOBJ_ACT_MULT | ||
ABAP code using 7.40 inline data declarations to call FM BW_RFC_IOBJ_ACT_MULT
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