SAP EXIT_SAPLCSSO_001 Function Module for Order/WBS BOM, HTML control









EXIT_SAPLCSSO_001 is a standard exit saplcsso 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Order/WBS BOM, HTML control 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 001 FM, simply by entering the name EXIT_SAPLCSSO_001 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_001 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_001'"Order/WBS BOM, HTML control
EXPORTING
* I_VBELN = "Sales Order
* I_VBPOS = "Sales Order Item
* I_MATNR = "Material Number
* I_PSPNR = "Work breakdown structure element (WBS element)
* I_KUNNR = "Sold-To Party

IMPORTING
E_USE_HTML = "HTML-Control definately displayed
E_URL = "URL displayed
E_SHOW_BUTTONS = "Navigation buttons are displayed
.



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_001

I_VBELN - Sales Order

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

I_VBPOS - Sales Order Item

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

I_MATNR - Material Number

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

I_PSPNR - Work breakdown structure element (WBS element)

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

I_KUNNR - Sold-To Party

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

EXPORTING Parameters details for EXIT_SAPLCSSO_001

E_USE_HTML - HTML-Control definately displayed

Data type: CSDATA-XFELD
Optional: No
Call by Reference: Yes

E_URL - URL displayed

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

E_SHOW_BUTTONS - Navigation buttons are displayed

Data type: CSDATA-XFELD
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EXIT_SAPLCSSO_001 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_vbeln  TYPE KDST-VBELN, "   
lv_e_use_html  TYPE CSDATA-XFELD, "   
lv_e_url  TYPE CHAR1024, "   
lv_i_vbpos  TYPE KDST-VBPOS, "   
lv_i_matnr  TYPE KDST-MATNR, "   
lv_e_show_buttons  TYPE CSDATA-XFELD, "   
lv_i_pspnr  TYPE PRST-PSPNR, "   
lv_i_kunnr  TYPE VBAK-KUNNR. "   

  CALL FUNCTION 'EXIT_SAPLCSSO_001'  "Order/WBS BOM, HTML control
    EXPORTING
         I_VBELN = lv_i_vbeln
         I_VBPOS = lv_i_vbpos
         I_MATNR = lv_i_matnr
         I_PSPNR = lv_i_pspnr
         I_KUNNR = lv_i_kunnr
    IMPORTING
         E_USE_HTML = lv_e_use_html
         E_URL = lv_e_url
         E_SHOW_BUTTONS = lv_e_show_buttons
. " EXIT_SAPLCSSO_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLCSSO_001

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 VBELN FROM KDST INTO @DATA(ld_i_vbeln).
 
"SELECT single XFELD FROM CSDATA INTO @DATA(ld_e_use_html).
 
 
"SELECT single VBPOS FROM KDST INTO @DATA(ld_i_vbpos).
 
"SELECT single MATNR FROM KDST INTO @DATA(ld_i_matnr).
 
"SELECT single XFELD FROM CSDATA INTO @DATA(ld_e_show_buttons).
 
"SELECT single PSPNR FROM PRST INTO @DATA(ld_i_pspnr).
 
"SELECT single KUNNR FROM VBAK INTO @DATA(ld_i_kunnr).
 


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!