SAP CMS_MAP_INDV_VAL_GET_LIST Function Module for Individual valuable list
CMS_MAP_INDV_VAL_GET_LIST is a standard cms map indv val get list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Individual valuable list 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 map indv val get list FM, simply by entering the name CMS_MAP_INDV_VAL_GET_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: CMS_MAP_INDV_VAL
Program Name: SAPLCMS_MAP_INDV_VAL
Main Program: SAPLCMS_MAP_INDV_VAL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CMS_MAP_INDV_VAL_GET_LIST 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_MAP_INDV_VAL_GET_LIST'"Individual valuable list.
EXPORTING
* I_STR_MOV_RNG = "Movables range input
* I_STR_RIG_RNG = "Rights range input
* I_STR_RE_RNG = "Real estate range input
* I_STR_SEC_RNG = "Securities range input
I_STR_SHP_RNG = "Ships Range Input
IMPORTING
E_TAB_SEC_GET_LIST = "Securities accounts get list
E_TAB_MOV_GET_LIST = "Moveables get list - table
E_TAB_RIG_GET_LIST = "Rights get list - table
E_TAB_RE_GET_LIST = "Real estate object - GET LIST
E_TAB_SHP_GET_LIST = "Ship Details Get List
E_TAB_RC = "Return Code and corresponding Message
EXCEPTIONS
OBJECT_NOT_FOUND = 1 INVALID_INPUT = 2
IMPORTING Parameters details for CMS_MAP_INDV_VAL_GET_LIST
I_STR_MOV_RNG - Movables range input
Data type: CMS_STR_MOV_RANGE_INPUTOptional: Yes
Call by Reference: Yes
I_STR_RIG_RNG - Rights range input
Data type: CMS_STR_RIG_RANGE_INPUTOptional: Yes
Call by Reference: Yes
I_STR_RE_RNG - Real estate range input
Data type: CMS_STR_RE_RANGE_INPUTOptional: Yes
Call by Reference: Yes
I_STR_SEC_RNG - Securities range input
Data type: CMS_STR_SEC_RANGE_INPUTOptional: Yes
Call by Reference: Yes
I_STR_SHP_RNG - Ships Range Input
Data type: CMS_STR_SHP_RANGE_INPUTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for CMS_MAP_INDV_VAL_GET_LIST
E_TAB_SEC_GET_LIST - Securities accounts get list
Data type: CMS_TAB_SEC_GET_LISTOptional: No
Call by Reference: Yes
E_TAB_MOV_GET_LIST - Moveables get list - table
Data type: CMS_TAB_MOV_GET_LISTOptional: No
Call by Reference: Yes
E_TAB_RIG_GET_LIST - Rights get list - table
Data type: CMS_TAB_RIG_GET_LISTOptional: No
Call by Reference: Yes
E_TAB_RE_GET_LIST - Real estate object - GET LIST
Data type: CMS_RE_TAB_RE_GET_LISTOptional: No
Call by Reference: Yes
E_TAB_SHP_GET_LIST - Ship Details Get List
Data type: CMS_TAB_SHP_GET_LISTOptional: No
Call by Reference: Yes
E_TAB_RC - Return Code and corresponding Message
Data type: CMS_TAB_MSG_COL_MESSAGEOptional: No
Call by Reference: Yes
EXCEPTIONS details
OBJECT_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
INVALID_INPUT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CMS_MAP_INDV_VAL_GET_LIST 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_str_mov_rng | TYPE CMS_STR_MOV_RANGE_INPUT, " | |||
| lv_object_not_found | TYPE CMS_STR_MOV_RANGE_INPUT, " | |||
| lv_e_tab_sec_get_list | TYPE CMS_TAB_SEC_GET_LIST, " | |||
| lv_invalid_input | TYPE CMS_TAB_SEC_GET_LIST, " | |||
| lv_i_str_rig_rng | TYPE CMS_STR_RIG_RANGE_INPUT, " | |||
| lv_e_tab_mov_get_list | TYPE CMS_TAB_MOV_GET_LIST, " | |||
| lv_i_str_re_rng | TYPE CMS_STR_RE_RANGE_INPUT, " | |||
| lv_e_tab_rig_get_list | TYPE CMS_TAB_RIG_GET_LIST, " | |||
| lv_i_str_sec_rng | TYPE CMS_STR_SEC_RANGE_INPUT, " | |||
| lv_e_tab_re_get_list | TYPE CMS_RE_TAB_RE_GET_LIST, " | |||
| lv_i_str_shp_rng | TYPE CMS_STR_SHP_RANGE_INPUT, " | |||
| lv_e_tab_shp_get_list | TYPE CMS_TAB_SHP_GET_LIST, " | |||
| lv_e_tab_rc | TYPE CMS_TAB_MSG_COL_MESSAGE. " |
|   CALL FUNCTION 'CMS_MAP_INDV_VAL_GET_LIST' "Individual valuable list |
| EXPORTING | ||
| I_STR_MOV_RNG | = lv_i_str_mov_rng | |
| I_STR_RIG_RNG | = lv_i_str_rig_rng | |
| I_STR_RE_RNG | = lv_i_str_re_rng | |
| I_STR_SEC_RNG | = lv_i_str_sec_rng | |
| I_STR_SHP_RNG | = lv_i_str_shp_rng | |
| IMPORTING | ||
| E_TAB_SEC_GET_LIST | = lv_e_tab_sec_get_list | |
| E_TAB_MOV_GET_LIST | = lv_e_tab_mov_get_list | |
| E_TAB_RIG_GET_LIST | = lv_e_tab_rig_get_list | |
| E_TAB_RE_GET_LIST | = lv_e_tab_re_get_list | |
| E_TAB_SHP_GET_LIST | = lv_e_tab_shp_get_list | |
| E_TAB_RC | = lv_e_tab_rc | |
| EXCEPTIONS | ||
| OBJECT_NOT_FOUND = 1 | ||
| INVALID_INPUT = 2 | ||
| . " CMS_MAP_INDV_VAL_GET_LIST | ||
ABAP code using 7.40 inline data declarations to call FM CMS_MAP_INDV_VAL_GET_LIST
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