SAP CMS_ANL_UI_RFC_OVR_BUILD Function Module for Collateral Overview - RFC Enabled
CMS_ANL_UI_RFC_OVR_BUILD is a standard cms anl ui rfc ovr build SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Collateral Overview - RFC Enabled 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 cms anl ui rfc ovr build FM, simply by entering the name CMS_ANL_UI_RFC_OVR_BUILD into the relevant SAP transaction such as SE37 or SE38.
Function Group: CMS_ANL_UI_OVR
Program Name: SAPLCMS_ANL_UI_OVR
Main Program: SAPLCMS_ANL_UI_OVR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CMS_ANL_UI_RFC_OVR_BUILD 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 'CMS_ANL_UI_RFC_OVR_BUILD'"Collateral Overview - RFC Enabled.
EXPORTING
I_RBL_SKY = "Semantic Key for CMS_RBL
I_CONTAINER_NAME = "Container Name for Collateral Overview
* I_EVENT_HND_FUNCNAME = "Function module name for handling events in Overview
IMPORTING
E_TAB_RC = "Return Code and corresponding Message
IMPORTING Parameters details for CMS_ANL_UI_RFC_OVR_BUILD
I_RBL_SKY - Semantic Key for CMS_RBL
Data type: CMS_STR_RBL_SKYOptional: No
Call by Reference: No ( called with pass by value option)
I_CONTAINER_NAME - Container Name for Collateral Overview
Data type: CMS_DTE_CONTAINER_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_EVENT_HND_FUNCNAME - Function module name for handling events in Overview
Data type: CMS_DTE_ANL_EVENT_FUNC_NAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CMS_ANL_UI_RFC_OVR_BUILD
E_TAB_RC - Return Code and corresponding Message
Data type: CMS_TAB_MSG_COL_MESSAGEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CMS_ANL_UI_RFC_OVR_BUILD 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_tab_rc | TYPE CMS_TAB_MSG_COL_MESSAGE, " | |||
| lv_i_rbl_sky | TYPE CMS_STR_RBL_SKY, " | |||
| lv_i_container_name | TYPE CMS_DTE_CONTAINER_NAME, " | |||
| lv_i_event_hnd_funcname | TYPE CMS_DTE_ANL_EVENT_FUNC_NAME. " |
|   CALL FUNCTION 'CMS_ANL_UI_RFC_OVR_BUILD' "Collateral Overview - RFC Enabled |
| EXPORTING | ||
| I_RBL_SKY | = lv_i_rbl_sky | |
| I_CONTAINER_NAME | = lv_i_container_name | |
| I_EVENT_HND_FUNCNAME | = lv_i_event_hnd_funcname | |
| IMPORTING | ||
| E_TAB_RC | = lv_e_tab_rc | |
| . " CMS_ANL_UI_RFC_OVR_BUILD | ||
ABAP code using 7.40 inline data declarations to call FM CMS_ANL_UI_RFC_OVR_BUILD
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