SAP FC_BW_IC_READ Function Module for
FC_BW_IC_READ is a standard fc bw ic read 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 fc bw ic read FM, simply by entering the name FC_BW_IC_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: FCBW
Program Name: SAPLFCBW
Main Program: SAPLFCBW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FC_BW_IC_READ 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 'FC_BW_IC_READ'".
EXPORTING
E_DIMEN = "
E_RVERS = "
E_ITCLG = "
E_GCURR = "
ET_SEL = "
IMPORTING
I_RFCDEST = "
I_INFOCUBE = "
IT_DATA = "
IT_FIELDS = "
IT_KFIG = "
IT_IO_FIXVAL = "
EXCEPTIONS
COMMUNICATION_FAILURE = 1 SYSTEM_FAILURE = 2 CUSTOMIZING_ERROR = 3
IMPORTING Parameters details for FC_BW_IC_READ
E_DIMEN -
Data type: FC_DIMENOptional: No
Call by Reference: Yes
E_RVERS -
Data type: FC_RVERSOptional: No
Call by Reference: Yes
E_ITCLG -
Data type: FC_ITCLGOptional: No
Call by Reference: Yes
E_GCURR -
Data type: FC_CGGCURROptional: No
Call by Reference: Yes
ET_SEL -
Data type: FC00_T_SELOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FC_BW_IC_READ
I_RFCDEST -
Data type: RFCDESTOptional: No
Call by Reference: Yes
I_INFOCUBE -
Data type: RSINFOCUBEOptional: No
Call by Reference: Yes
IT_DATA -
Data type: FC03_T_UPL04FLDOptional: No
Call by Reference: Yes
IT_FIELDS -
Data type: FC00_T_FIELDSOptional: No
Call by Reference: Yes
IT_KFIG -
Data type: FC00_T_FIELDSOptional: No
Call by Reference: Yes
IT_IO_FIXVAL -
Data type: FCBW_T_IO_FIXVALOptional: No
Call by Reference: Yes
EXCEPTIONS details
COMMUNICATION_FAILURE -
Data type:Optional: No
Call by Reference: Yes
SYSTEM_FAILURE -
Data type:Optional: No
Call by Reference: Yes
CUSTOMIZING_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FC_BW_IC_READ 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_e_dimen | TYPE FC_DIMEN, " | |||
| lv_i_rfcdest | TYPE RFCDEST, " | |||
| lv_communication_failure | TYPE RFCDEST, " | |||
| lv_e_rvers | TYPE FC_RVERS, " | |||
| lv_i_infocube | TYPE RSINFOCUBE, " | |||
| lv_system_failure | TYPE RSINFOCUBE, " | |||
| lv_e_itclg | TYPE FC_ITCLG, " | |||
| lv_it_data | TYPE FC03_T_UPL04FLD, " | |||
| lv_customizing_error | TYPE FC03_T_UPL04FLD, " | |||
| lv_e_gcurr | TYPE FC_CGGCURR, " | |||
| lv_it_fields | TYPE FC00_T_FIELDS, " | |||
| lv_et_sel | TYPE FC00_T_SEL, " | |||
| lv_it_kfig | TYPE FC00_T_FIELDS, " | |||
| lv_it_io_fixval | TYPE FCBW_T_IO_FIXVAL. " |
|   CALL FUNCTION 'FC_BW_IC_READ' " |
| EXPORTING | ||
| E_DIMEN | = lv_e_dimen | |
| E_RVERS | = lv_e_rvers | |
| E_ITCLG | = lv_e_itclg | |
| E_GCURR | = lv_e_gcurr | |
| ET_SEL | = lv_et_sel | |
| IMPORTING | ||
| I_RFCDEST | = lv_i_rfcdest | |
| I_INFOCUBE | = lv_i_infocube | |
| IT_DATA | = lv_it_data | |
| IT_FIELDS | = lv_it_fields | |
| IT_KFIG | = lv_it_kfig | |
| IT_IO_FIXVAL | = lv_it_io_fixval | |
| EXCEPTIONS | ||
| COMMUNICATION_FAILURE = 1 | ||
| SYSTEM_FAILURE = 2 | ||
| CUSTOMIZING_ERROR = 3 | ||
| . " FC_BW_IC_READ | ||
ABAP code using 7.40 inline data declarations to call FM FC_BW_IC_READ
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