SAP CMS_OBJ_ANL_CALC_SET_SIMUL Function Module for Set simulated constellation details to buffers









CMS_OBJ_ANL_CALC_SET_SIMUL is a standard cms obj anl calc set simul SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Set simulated constellation details to buffers 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 obj anl calc set simul FM, simply by entering the name CMS_OBJ_ANL_CALC_SET_SIMUL into the relevant SAP transaction such as SE37 or SE38.

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



Function CMS_OBJ_ANL_CALC_SET_SIMUL 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_OBJ_ANL_CALC_SET_SIMUL'"Set simulated constellation details to buffers
EXPORTING
* IM_TAB_SIMUL_AST_DET = "Analysis: Asset details table (Semantic Key Included)
* IM_TAB_SIMUL_CAG_DET = "Analysis: Cag details table
* IM_TAB_SIMUL_RBL_DET = "Analysis: RBL details table
* IM_TAB_SIMUL_AST_BP_DET = "Asset Org unit and BP details
* IM_TAB_SIMUL_CAG_BP_DET = "Agreement Org unit and Business partner detail
* IM_TAB_SIMUL_RBL_BP_DET = "Receivable Admin org and business partner details
* IM_TAB_CHG = "Charges details
* IM_TAB_CAG_RBL = "Collateral Agreement-Receivable details with the CAG-GUID
* IM_TAB_CAG_POR = "Portions for a Collateral Agreement
.



IMPORTING Parameters details for CMS_OBJ_ANL_CALC_SET_SIMUL

IM_TAB_SIMUL_AST_DET - Analysis: Asset details table (Semantic Key Included)

Data type: CMS_TAB_AST_DET
Optional: Yes
Call by Reference: Yes

IM_TAB_SIMUL_CAG_DET - Analysis: Cag details table

Data type: CMS_TAB_ANL_DETAILS_CAG
Optional: Yes
Call by Reference: Yes

IM_TAB_SIMUL_RBL_DET - Analysis: RBL details table

Data type: CMS_TAB_ANL_DETAILS_RBL
Optional: Yes
Call by Reference: Yes

IM_TAB_SIMUL_AST_BP_DET - Asset Org unit and BP details

Data type: CMS_TAB_AST_ORG_BP_DET
Optional: Yes
Call by Reference: Yes

IM_TAB_SIMUL_CAG_BP_DET - Agreement Org unit and Business partner detail

Data type: CMS_TAB_CAG_ORG_BP_DET
Optional: Yes
Call by Reference: Yes

IM_TAB_SIMUL_RBL_BP_DET - Receivable Admin org and business partner details

Data type: CMS_TAB_RBL_ORG_BP_DET
Optional: Yes
Call by Reference: Yes

IM_TAB_CHG - Charges details

Data type: CMS_TAB_CHG
Optional: Yes
Call by Reference: Yes

IM_TAB_CAG_RBL - Collateral Agreement-Receivable details with the CAG-GUID

Data type: CMS_TAB_CAG_RBL_LINK_DATA
Optional: Yes
Call by Reference: Yes

IM_TAB_CAG_POR - Portions for a Collateral Agreement

Data type: CMS_TAB_CAG_POR
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for CMS_OBJ_ANL_CALC_SET_SIMUL 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_im_tab_simul_ast_det  TYPE CMS_TAB_AST_DET, "   
lv_im_tab_simul_cag_det  TYPE CMS_TAB_ANL_DETAILS_CAG, "   
lv_im_tab_simul_rbl_det  TYPE CMS_TAB_ANL_DETAILS_RBL, "   
lv_im_tab_simul_ast_bp_det  TYPE CMS_TAB_AST_ORG_BP_DET, "   
lv_im_tab_simul_cag_bp_det  TYPE CMS_TAB_CAG_ORG_BP_DET, "   
lv_im_tab_simul_rbl_bp_det  TYPE CMS_TAB_RBL_ORG_BP_DET, "   
lv_im_tab_chg  TYPE CMS_TAB_CHG, "   
lv_im_tab_cag_rbl  TYPE CMS_TAB_CAG_RBL_LINK_DATA, "   
lv_im_tab_cag_por  TYPE CMS_TAB_CAG_POR. "   

  CALL FUNCTION 'CMS_OBJ_ANL_CALC_SET_SIMUL'  "Set simulated constellation details to buffers
    EXPORTING
         IM_TAB_SIMUL_AST_DET = lv_im_tab_simul_ast_det
         IM_TAB_SIMUL_CAG_DET = lv_im_tab_simul_cag_det
         IM_TAB_SIMUL_RBL_DET = lv_im_tab_simul_rbl_det
         IM_TAB_SIMUL_AST_BP_DET = lv_im_tab_simul_ast_bp_det
         IM_TAB_SIMUL_CAG_BP_DET = lv_im_tab_simul_cag_bp_det
         IM_TAB_SIMUL_RBL_BP_DET = lv_im_tab_simul_rbl_bp_det
         IM_TAB_CHG = lv_im_tab_chg
         IM_TAB_CAG_RBL = lv_im_tab_cag_rbl
         IM_TAB_CAG_POR = lv_im_tab_cag_por
. " CMS_OBJ_ANL_CALC_SET_SIMUL




ABAP code using 7.40 inline data declarations to call FM CMS_OBJ_ANL_CALC_SET_SIMUL

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!