SAP EXIT_SAPLCSSO_003 Function Module for Customer-specific processing result of an explosion in the browser









EXIT_SAPLCSSO_003 is a standard exit saplcsso 003 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Customer-specific processing result of an explosion in the browser 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 exit saplcsso 003 FM, simply by entering the name EXIT_SAPLCSSO_003 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLCSSO_003 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 'EXIT_SAPLCSSO_003'"Customer-specific processing result of an explosion in the browser
EXPORTING
IS_RC29B1 = "Dialog Structure for Order BOM Browser
IS_CSUSR_DATA = "User-defined data for order browser
I_EXPL_DATE = "Date and time, current (application server) date
I_STOPSTUFE = "Explosion level for multi level BOM explosions

IMPORTING
E_TOPMAT = "Start Material Display for BOM Explosions

TABLES
T_STPOX = "BOM Items (Extended for List Displays)
T_CSCMAT = "BOM Explosion: Materials
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
CS_SO_ACTIONS_ON_DOCKING NOTRANSL: Steuerung der Funktionen der ASL-Docking Containes je nach Zusta
CS_SO_BROWSER_IN_DOCKING NOTRANSL: Aufruf des ASL-Browers im dynamischen Splittmodus
CS_SO_COPY_MATERIAL NOTRANSL: Kopieren / Ersetzen von Materialien + Stücklisten
CS_SO_DEL_ASSEMBLY NOTRANSL: Löschen Auftragsstückliste(n)
CS_SO_DISPLAY_CHARACTERISTICS NOTRANSL: Merkmalsbewertung anzeigen
CS_SO_DOCLINK_COPY NOTRANSL: Kopieren der Dokumentzuordnungen zur fixierten Kundenauftragsstü
CS_SO_F4_HELP_STLAN NOTRANSL: Modifikation d. Suchhilfe für STLAN
CS_SO_F4_OBJ_IN_STRUCTURE NOTRANSL: Eigenständige Suchhilfe für Baugruppen eines Kundenauftrags
CS_SO_FIND_FREE_DOCKING NOTRANSL: Auflistung aller Baugruppen eines Auftrags
CS_SO_FIX_ASSEMBLY NOTRANSL: Fixieren Auftragsstückliste
CS_SO_GET_ROOT_CONFIG NOTRANSL: Anzeige der Bewertung der Rootinstanz im Browser
CS_SO_GET_USER_DATA NOTRANSL: Abfrage der Userdaten für den ASL-Browser
CS_SO_LINK_ASL_BROWSER_CNT NOTRANSL: Steuerung an welchem Progr./Dynr. der ASL-Browser als Docking er
CS_SO_LINK_OBJ_BROWSER_CNT NOTRANSL: Steuerung an welchem Progr./Dynr. der ASL-Browser als Docking er
CS_SO_LTEXT_COPY NOTRANSL: Kopiere Langtext (Kopf + Position)
CS_SO_MODE_BOM_EXPLOSION NOTRANSL: Stücklistenauflösung für ASL-Browser im Spezialmodus
CS_SO_MULTI_LEVEL_COPY NOTRANSL: Mehrstufiges Kopieren der konfigurierbaren Kundenauftragsstückli
CS_SO_ORGANIZE_REFRESH NOTRANSL: Steuerung der Funktionen der ASL-Docking Containes je nach Zusta
CS_SO_PJ_FIND_FREE NOTRANSL: Analyse der Projekt BOMs
CS_SO_POPUP_MENUE NOTRANSL: Baut Popupmenue für Bombrowser im Web auf
CS_SO_READ_CONF NOTRANSL: Ausgabe des Zustandes der Konfiguration
CS_SO_SB_MAT_SHOW NOTRANSL: Dispatching der Anzeige von BILLOFMAT-Objects
CS_SO_SET_LOEKZ NOTRANSL: Setze Löschkennzeichen für Auftrag / Position
CS_SO_SO_FIND_FREE NOTRANSL: Auflistung aller Baugruppen eines Auftrags

IMPORTING Parameters details for EXIT_SAPLCSSO_003

IS_RC29B1 - Dialog Structure for Order BOM Browser

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

IS_CSUSR_DATA - User-defined data for order browser

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

I_EXPL_DATE - Date and time, current (application server) date

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

I_STOPSTUFE - Explosion level for multi level BOM explosions

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

EXPORTING Parameters details for EXIT_SAPLCSSO_003

E_TOPMAT - Start Material Display for BOM Explosions

Data type: CSTMAT
Optional: No
Call by Reference: Yes

TABLES Parameters details for EXIT_SAPLCSSO_003

T_STPOX - BOM Items (Extended for List Displays)

Data type: STPOX
Optional: No
Call by Reference: Yes

T_CSCMAT - BOM Explosion: Materials

Data type: CSCMAT
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EXIT_SAPLCSSO_003 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:
lt_t_stpox  TYPE STANDARD TABLE OF STPOX, "   
lv_e_topmat  TYPE CSTMAT, "   
lv_is_rc29b1  TYPE RC29B1, "   
lt_t_cscmat  TYPE STANDARD TABLE OF CSCMAT, "   
lv_is_csusr_data  TYPE CSUSR_DATA, "   
lv_i_expl_date  TYPE SY-DATUM, "   
lv_i_stopstufe  TYPE RC29B1-STOPSTUFE. "   

  CALL FUNCTION 'EXIT_SAPLCSSO_003'  "Customer-specific processing result of an explosion in the browser
    EXPORTING
         IS_RC29B1 = lv_is_rc29b1
         IS_CSUSR_DATA = lv_is_csusr_data
         I_EXPL_DATE = lv_i_expl_date
         I_STOPSTUFE = lv_i_stopstufe
    IMPORTING
         E_TOPMAT = lv_e_topmat
    TABLES
         T_STPOX = lt_t_stpox
         T_CSCMAT = lt_t_cscmat
. " EXIT_SAPLCSSO_003




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCSSO_003

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 DATUM FROM SY INTO @DATA(ld_i_expl_date).
 
"SELECT single STOPSTUFE FROM RC29B1 INTO @DATA(ld_i_stopstufe).
 


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!