SAP UPARU_TC_GET_MAP_LAYOUT Function Module for Get planning layout enhanced customizing
UPARU_TC_GET_MAP_LAYOUT is a standard uparu tc get map layout SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get planning layout enhanced customizing 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 uparu tc get map layout FM, simply by entering the name UPARU_TC_GET_MAP_LAYOUT into the relevant SAP transaction such as SE37 or SE38.
Function Group: UPARU_FG_UTILITIES
Program Name: SAPLUPARU_FG_UTILITIES
Main Program: SAPLUPARU_FG_UTILITIES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UPARU_TC_GET_MAP_LAYOUT 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 'UPARU_TC_GET_MAP_LAYOUT'"Get planning layout enhanced customizing.
EXPORTING
I_AREA = "Planning Area
I_PLEVEL = "Planning level
I_LAYOUT = "Planning layout
IMPORTING
ES_TC_MAPLAY = "MAP Enhanced Planning Layout Properties
ES_TC_LMFUNCT = "MAP Texts for Master Data Maintenance Functions in a Layout
TABLES
ETK_TC_LINSDEL = "MAP Planning Layout Master Data Maintenance Properties
ETK_TC_LATTR = "MAP Enhanced Attributes Properties in a Layout
ETK_TC_LKYF = "MAP Enhanced Key Figures Properties in a Layout
IMPORTING Parameters details for UPARU_TC_GET_MAP_LAYOUT
I_AREA - Planning Area
Data type: UPC_Y_AREAOptional: No
Call by Reference: Yes
I_PLEVEL - Planning level
Data type: UPC_Y_PLEVELOptional: No
Call by Reference: Yes
I_LAYOUT - Planning layout
Data type: UPARU_Y_LAYOUTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for UPARU_TC_GET_MAP_LAYOUT
ES_TC_MAPLAY - MAP Enhanced Planning Layout Properties
Data type: UPARU_TC_MAPLAYOptional: No
Call by Reference: Yes
ES_TC_LMFUNCT - MAP Texts for Master Data Maintenance Functions in a Layout
Data type: UPARU_TC_LMFUNCTOptional: No
Call by Reference: Yes
TABLES Parameters details for UPARU_TC_GET_MAP_LAYOUT
ETK_TC_LINSDEL - MAP Planning Layout Master Data Maintenance Properties
Data type: UPARU_TC_LINSDELOptional: No
Call by Reference: Yes
ETK_TC_LATTR - MAP Enhanced Attributes Properties in a Layout
Data type: UPARU_TC_LATTROptional: No
Call by Reference: Yes
ETK_TC_LKYF - MAP Enhanced Key Figures Properties in a Layout
Data type: UPARU_TC_LKYFOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for UPARU_TC_GET_MAP_LAYOUT 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_area | TYPE UPC_Y_AREA, " | |||
| lv_es_tc_maplay | TYPE UPARU_TC_MAPLAY, " | |||
| lt_etk_tc_linsdel | TYPE STANDARD TABLE OF UPARU_TC_LINSDEL, " | |||
| lv_i_plevel | TYPE UPC_Y_PLEVEL, " | |||
| lt_etk_tc_lattr | TYPE STANDARD TABLE OF UPARU_TC_LATTR, " | |||
| lv_es_tc_lmfunct | TYPE UPARU_TC_LMFUNCT, " | |||
| lv_i_layout | TYPE UPARU_Y_LAYOUT, " | |||
| lt_etk_tc_lkyf | TYPE STANDARD TABLE OF UPARU_TC_LKYF. " |
|   CALL FUNCTION 'UPARU_TC_GET_MAP_LAYOUT' "Get planning layout enhanced customizing |
| EXPORTING | ||
| I_AREA | = lv_i_area | |
| I_PLEVEL | = lv_i_plevel | |
| I_LAYOUT | = lv_i_layout | |
| IMPORTING | ||
| ES_TC_MAPLAY | = lv_es_tc_maplay | |
| ES_TC_LMFUNCT | = lv_es_tc_lmfunct | |
| TABLES | ||
| ETK_TC_LINSDEL | = lt_etk_tc_linsdel | |
| ETK_TC_LATTR | = lt_etk_tc_lattr | |
| ETK_TC_LKYF | = lt_etk_tc_lkyf | |
| . " UPARU_TC_GET_MAP_LAYOUT | ||
ABAP code using 7.40 inline data declarations to call FM UPARU_TC_GET_MAP_LAYOUT
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