CMS_MAP_RIG_GET_MLT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CMS_MAP_RIG_GET_MLT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CMS_MAP_RIG
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'CMS_MAP_RIG_GET_MLT' "Get the rights object details according to primary key
EXPORTING
i_tab_rig_get_pky = " cms_tab_rig_pky_get_mlt MAPI : Get MLT : Rights Primay key
* i_str_rig_reqd_data = " cms_str_rig_reqd_data_map Rights required data
IMPORTING
e_tab_clm_data = " cms_tab_clm_data_get_map MAPI : GET MLT - Claim details
e_tab_pat_data = " cms_tab_pat_data_map_get_mlt MAPI : GET MLT - Patents
e_tab_lif_ins_data = " cms_tab_lif_ins_data_get_map MAPI : GET MLT - Life insurance
e_tab_lif_psn_data = " cms_tab_ins_psn_data_map_get MAPI - GET MLT - Insurance Person specific
e_tab_rig_bp_data = " cms_tab_rig_bp_map_get_mlt MAPI : GET MLT - Rights - Business partner
e_tab_rig_doc_data = " cms_tab_rig_doc_map_get_mlt MAPI : GET MLT : Rights Documents
e_tab_rig_val_data = " cms_tab_rig_val_map_get_mlt MAPI : GET MLT - Rights values
e_tab_rig_addr_data = " cms_tab_rig_addr_map_get_mlt MAPI : GET MLT - Rights address details
e_tab_rig_ins_data = " cms_tab_rig_ins_map_get MAPI : GET MLT - Rights insurance
e_tab_rig_ins_bp = " cms_tab_rig_ins_bp_map_get MAPI : GET MLT - Rights - Business partners
e_tab_rig_ins_doc = " cms_tab_rig_ins_doc_map_get MAPI : GET : Insurance document details
e_tab_notes = " cms_tab_rig_txt_lines_map MAPI : GET - rights notes
e_tab_sys_stat = " cms_tab_rig_sys_stat_map MAPI: Get MLT : Rights
e_tab_usr_stat = " cms_tab_rig_usr_stat_map MAPI : Get MLT : Rights - User status
e_tab_calc_detail = " cms_tab_rig_ast_calc_map BAPI : Rights asset details
e_tab_mas_calc_detail = " cms_tab_rig_ast_mas_calc_map BAPI : Rights main asset details
e_tab_sas_calc_detail = " cms_tab_rig_ast_sas_calc_map BAPI : Right asset sub asset details
e_tab_return = " bapiret2_t Return parameter table
. " CMS_MAP_RIG_GET_MLT
The ABAP code below is a full code listing to execute function module CMS_MAP_RIG_GET_MLT including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_tab_clm_data | TYPE CMS_TAB_CLM_DATA_GET_MAP , |
| ld_e_tab_pat_data | TYPE CMS_TAB_PAT_DATA_MAP_GET_MLT , |
| ld_e_tab_lif_ins_data | TYPE CMS_TAB_LIF_INS_DATA_GET_MAP , |
| ld_e_tab_lif_psn_data | TYPE CMS_TAB_INS_PSN_DATA_MAP_GET , |
| ld_e_tab_rig_bp_data | TYPE CMS_TAB_RIG_BP_MAP_GET_MLT , |
| ld_e_tab_rig_doc_data | TYPE CMS_TAB_RIG_DOC_MAP_GET_MLT , |
| ld_e_tab_rig_val_data | TYPE CMS_TAB_RIG_VAL_MAP_GET_MLT , |
| ld_e_tab_rig_addr_data | TYPE CMS_TAB_RIG_ADDR_MAP_GET_MLT , |
| ld_e_tab_rig_ins_data | TYPE CMS_TAB_RIG_INS_MAP_GET , |
| ld_e_tab_rig_ins_bp | TYPE CMS_TAB_RIG_INS_BP_MAP_GET , |
| ld_e_tab_rig_ins_doc | TYPE CMS_TAB_RIG_INS_DOC_MAP_GET , |
| ld_e_tab_notes | TYPE CMS_TAB_RIG_TXT_LINES_MAP , |
| ld_e_tab_sys_stat | TYPE CMS_TAB_RIG_SYS_STAT_MAP , |
| ld_e_tab_usr_stat | TYPE CMS_TAB_RIG_USR_STAT_MAP , |
| ld_e_tab_calc_detail | TYPE CMS_TAB_RIG_AST_CALC_MAP , |
| ld_e_tab_mas_calc_detail | TYPE CMS_TAB_RIG_AST_MAS_CALC_MAP , |
| ld_e_tab_sas_calc_detail | TYPE CMS_TAB_RIG_AST_SAS_CALC_MAP , |
| ld_e_tab_return | TYPE BAPIRET2_T . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_tab_clm_data | TYPE CMS_TAB_CLM_DATA_GET_MAP , |
| ld_i_tab_rig_get_pky | TYPE CMS_TAB_RIG_PKY_GET_MLT , |
| ld_e_tab_pat_data | TYPE CMS_TAB_PAT_DATA_MAP_GET_MLT , |
| ld_i_str_rig_reqd_data | TYPE CMS_STR_RIG_REQD_DATA_MAP , |
| ld_e_tab_lif_ins_data | TYPE CMS_TAB_LIF_INS_DATA_GET_MAP , |
| ld_e_tab_lif_psn_data | TYPE CMS_TAB_INS_PSN_DATA_MAP_GET , |
| ld_e_tab_rig_bp_data | TYPE CMS_TAB_RIG_BP_MAP_GET_MLT , |
| ld_e_tab_rig_doc_data | TYPE CMS_TAB_RIG_DOC_MAP_GET_MLT , |
| ld_e_tab_rig_val_data | TYPE CMS_TAB_RIG_VAL_MAP_GET_MLT , |
| ld_e_tab_rig_addr_data | TYPE CMS_TAB_RIG_ADDR_MAP_GET_MLT , |
| ld_e_tab_rig_ins_data | TYPE CMS_TAB_RIG_INS_MAP_GET , |
| ld_e_tab_rig_ins_bp | TYPE CMS_TAB_RIG_INS_BP_MAP_GET , |
| ld_e_tab_rig_ins_doc | TYPE CMS_TAB_RIG_INS_DOC_MAP_GET , |
| ld_e_tab_notes | TYPE CMS_TAB_RIG_TXT_LINES_MAP , |
| ld_e_tab_sys_stat | TYPE CMS_TAB_RIG_SYS_STAT_MAP , |
| ld_e_tab_usr_stat | TYPE CMS_TAB_RIG_USR_STAT_MAP , |
| ld_e_tab_calc_detail | TYPE CMS_TAB_RIG_AST_CALC_MAP , |
| ld_e_tab_mas_calc_detail | TYPE CMS_TAB_RIG_AST_MAS_CALC_MAP , |
| ld_e_tab_sas_calc_detail | TYPE CMS_TAB_RIG_AST_SAS_CALC_MAP , |
| ld_e_tab_return | TYPE BAPIRET2_T . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name CMS_MAP_RIG_GET_MLT or its description.
CMS_MAP_RIG_GET_MLT - Get the rights object details according to primary key CMS_MAP_RIG_CREATE - Create a Claim, Insurance, Patent or Other Rights CMS_MAP_RE_GET_MLT - GET MLT: Fetch details for all real estate details CMS_MAP_RE_CREATE - MAPI - Create - Real estate object CMS_MAP_RBL_CREATE_MLT - Create new receivables or copy of external receivables CMS_MAP_RBL_CHANGE_MLT - Create new receivables or copy of external receivables