SAP LAYOUT_AREA_ITEMS_DELETE Function Module for NOTRANSL: Löschen Layoutbereichspositionen
LAYOUT_AREA_ITEMS_DELETE is a standard layout area items delete SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Löschen Layoutbereichspositionen 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 layout area items delete FM, simply by entering the name LAYOUT_AREA_ITEMS_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: WLYD
Program Name: SAPLWLYD
Main Program: SAPLWLYD
Appliation area: W
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LAYOUT_AREA_ITEMS_DELETE 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 'LAYOUT_AREA_ITEMS_DELETE'"NOTRANSL: Löschen Layoutbereichspositionen.
EXPORTING
PI_LAYOUT = "Layout No.
* PI_LAYOUT_AREA = "Layout Area Number
TABLES
* PI_T_ITEM = "Layout Area Items
* PX_T_WLBM_DEL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PX_T_WLMT_DEL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
EXCEPTIONS
LAYOUT_NOT_FOUND = 1 LAYOUT_AREA_NOT_FOUND = 2 WRONG_CALL = 3 UNKNOWN_ERROR = 4
IMPORTING Parameters details for LAYOUT_AREA_ITEMS_DELETE
PI_LAYOUT - Layout No.
Data type: WLBM-LAYVROptional: No
Call by Reference: No ( called with pass by value option)
PI_LAYOUT_AREA - Layout Area Number
Data type: WLBM-LBRNROptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for LAYOUT_AREA_ITEMS_DELETE
PI_T_ITEM - Layout Area Items
Data type: WLBM_ITEMOptional: Yes
Call by Reference: No ( called with pass by value option)
PX_T_WLBM_DEL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WLBMOptional: Yes
Call by Reference: No ( called with pass by value option)
PX_T_WLMT_DEL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WLMTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
LAYOUT_NOT_FOUND - Layout does not exist
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
LAYOUT_AREA_NOT_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_CALL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UNKNOWN_ERROR - Unknown Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for LAYOUT_AREA_ITEMS_DELETE 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_pi_layout | TYPE WLBM-LAYVR, " | |||
| lt_pi_t_item | TYPE STANDARD TABLE OF WLBM_ITEM, " | |||
| lv_layout_not_found | TYPE WLBM_ITEM, " | |||
| lt_px_t_wlbm_del | TYPE STANDARD TABLE OF WLBM, " | |||
| lv_pi_layout_area | TYPE WLBM-LBRNR, " | |||
| lv_layout_area_not_found | TYPE WLBM, " | |||
| lv_wrong_call | TYPE WLBM, " | |||
| lt_px_t_wlmt_del | TYPE STANDARD TABLE OF WLMT, " | |||
| lv_unknown_error | TYPE WLMT. " |
|   CALL FUNCTION 'LAYOUT_AREA_ITEMS_DELETE' "NOTRANSL: Löschen Layoutbereichspositionen |
| EXPORTING | ||
| PI_LAYOUT | = lv_pi_layout | |
| PI_LAYOUT_AREA | = lv_pi_layout_area | |
| TABLES | ||
| PI_T_ITEM | = lt_pi_t_item | |
| PX_T_WLBM_DEL | = lt_px_t_wlbm_del | |
| PX_T_WLMT_DEL | = lt_px_t_wlmt_del | |
| EXCEPTIONS | ||
| LAYOUT_NOT_FOUND = 1 | ||
| LAYOUT_AREA_NOT_FOUND = 2 | ||
| WRONG_CALL = 3 | ||
| UNKNOWN_ERROR = 4 | ||
| . " LAYOUT_AREA_ITEMS_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM LAYOUT_AREA_ITEMS_DELETE
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.| "SELECT single LAYVR FROM WLBM INTO @DATA(ld_pi_layout). | ||||
| "SELECT single LBRNR FROM WLBM INTO @DATA(ld_pi_layout_area). | ||||
Search for further information about these or an SAP related objects