SAP ASSORT_LIST_PROFILES_CHECK Function Module for NOTRANSL: Prüfen von Sortimentslisten-Profilen









ASSORT_LIST_PROFILES_CHECK is a standard assort list profiles check 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: Prüfen von Sortimentslisten-Profilen 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 assort list profiles check FM, simply by entering the name ASSORT_LIST_PROFILES_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function ASSORT_LIST_PROFILES_CHECK 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 'ASSORT_LIST_PROFILES_CHECK'"NOTRANSL: Prüfen von Sortimentslisten-Profilen
EXPORTING
* PI_NO_WARN = ' ' "

TABLES
PI_T_STORES = "Assortment Owners
PI_T_TWBB = "Assortment List Type
* PE_T_TWBP = "Assortment list profile
* PE_T_TWBPT = "Assortment list profile description
* PE_T_TWBBP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PE_T_SORT = "Sorting procedure
* PE_T_MESTP = "DE-EN-LANG-SWITCH-NO-TRANSLATION

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for ASSORT_LIST_PROFILES_CHECK

PI_NO_WARN -

Data type: WDL_FLAG-XFELD
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ASSORT_LIST_PROFILES_CHECK

PI_T_STORES - Assortment Owners

Data type: WDL_FIL
Optional: No
Call by Reference: No ( called with pass by value option)

PI_T_TWBB - Assortment List Type

Data type: TWBB
Optional: No
Call by Reference: No ( called with pass by value option)

PE_T_TWBP - Assortment list profile

Data type: TWBP
Optional: Yes
Call by Reference: No ( called with pass by value option)

PE_T_TWBPT - Assortment list profile description

Data type: TWBPT
Optional: Yes
Call by Reference: No ( called with pass by value option)

PE_T_TWBBP - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: TWBBP
Optional: Yes
Call by Reference: No ( called with pass by value option)

PE_T_SORT - Sorting procedure

Data type: WBB_SORT
Optional: Yes
Call by Reference: No ( called with pass by value option)

PE_T_MESTP - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: WBB_MESTP
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ERROR - Errors have occurred

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ASSORT_LIST_PROFILES_CHECK 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_error  TYPE STRING, "   
lv_pi_no_warn  TYPE WDL_FLAG-XFELD, "   ' '
lt_pi_t_stores  TYPE STANDARD TABLE OF WDL_FIL, "   
lt_pi_t_twbb  TYPE STANDARD TABLE OF TWBB, "   
lt_pe_t_twbp  TYPE STANDARD TABLE OF TWBP, "   
lt_pe_t_twbpt  TYPE STANDARD TABLE OF TWBPT, "   
lt_pe_t_twbbp  TYPE STANDARD TABLE OF TWBBP, "   
lt_pe_t_sort  TYPE STANDARD TABLE OF WBB_SORT, "   
lt_pe_t_mestp  TYPE STANDARD TABLE OF WBB_MESTP. "   

  CALL FUNCTION 'ASSORT_LIST_PROFILES_CHECK'  "NOTRANSL: Prüfen von Sortimentslisten-Profilen
    EXPORTING
         PI_NO_WARN = lv_pi_no_warn
    TABLES
         PI_T_STORES = lt_pi_t_stores
         PI_T_TWBB = lt_pi_t_twbb
         PE_T_TWBP = lt_pe_t_twbp
         PE_T_TWBPT = lt_pe_t_twbpt
         PE_T_TWBBP = lt_pe_t_twbbp
         PE_T_SORT = lt_pe_t_sort
         PE_T_MESTP = lt_pe_t_mestp
    EXCEPTIONS
        ERROR = 1
. " ASSORT_LIST_PROFILES_CHECK




ABAP code using 7.40 inline data declarations to call FM ASSORT_LIST_PROFILES_CHECK

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 XFELD FROM WDL_FLAG INTO @DATA(ld_pi_no_warn).
DATA(ld_pi_no_warn) = ' '.
 
 
 
 
 
 
 
 


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!