SAP SQLD_DOWNLOAD_SE11 Function Module for Download SE11 data for Service Assistant









SQLD_DOWNLOAD_SE11 is a standard sqld download se11 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Download SE11 data for Service Assistant 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 sqld download se11 FM, simply by entering the name SQLD_DOWNLOAD_SE11 into the relevant SAP transaction such as SE37 or SE38.

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



Function SQLD_DOWNLOAD_SE11 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 'SQLD_DOWNLOAD_SE11'"Download SE11 data for Service Assistant
TABLES
TABLE_HEADER = "SQL Download SE11 Table header
* TABLE_FIELDS = "SQL Download SE11 Table columns
* INDEX_HEADER = "SQL Download SE11 Index header
* INDEX_FIELDS = "SQL Download SE11 Index positions
* JOIN_CONDITIONS = "Internal structure for joins of views
* SELECTION_CONDITIONS = "Internal structure for joins of views
* PHYS_TABLES = "Base Tables of a View

EXCEPTIONS
TABLE_UNKNOWN = 1
.



TABLES Parameters details for SQLD_DOWNLOAD_SE11

TABLE_HEADER - SQL Download SE11 Table header

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

TABLE_FIELDS - SQL Download SE11 Table columns

Data type: SQLDSE11TP
Optional: Yes
Call by Reference: Yes

INDEX_HEADER - SQL Download SE11 Index header

Data type: SQLDSE11IH
Optional: Yes
Call by Reference: Yes

INDEX_FIELDS - SQL Download SE11 Index positions

Data type: SQLDSE11IP
Optional: Yes
Call by Reference: Yes

JOIN_CONDITIONS - Internal structure for joins of views

Data type: SQLD_JOIN
Optional: Yes
Call by Reference: Yes

SELECTION_CONDITIONS - Internal structure for joins of views

Data type: SQLD_SEL
Optional: Yes
Call by Reference: Yes

PHYS_TABLES - Base Tables of a View

Data type: SQLD_PHT
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

TABLE_UNKNOWN - Table unknown

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SQLD_DOWNLOAD_SE11 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_table_header  TYPE STANDARD TABLE OF SQLDSE11TH, "   
lv_table_unknown  TYPE SQLDSE11TH, "   
lt_table_fields  TYPE STANDARD TABLE OF SQLDSE11TP, "   
lt_index_header  TYPE STANDARD TABLE OF SQLDSE11IH, "   
lt_index_fields  TYPE STANDARD TABLE OF SQLDSE11IP, "   
lt_join_conditions  TYPE STANDARD TABLE OF SQLD_JOIN, "   
lt_selection_conditions  TYPE STANDARD TABLE OF SQLD_SEL, "   
lt_phys_tables  TYPE STANDARD TABLE OF SQLD_PHT. "   

  CALL FUNCTION 'SQLD_DOWNLOAD_SE11'  "Download SE11 data for Service Assistant
    TABLES
         TABLE_HEADER = lt_table_header
         TABLE_FIELDS = lt_table_fields
         INDEX_HEADER = lt_index_header
         INDEX_FIELDS = lt_index_fields
         JOIN_CONDITIONS = lt_join_conditions
         SELECTION_CONDITIONS = lt_selection_conditions
         PHYS_TABLES = lt_phys_tables
    EXCEPTIONS
        TABLE_UNKNOWN = 1
. " SQLD_DOWNLOAD_SE11




ABAP code using 7.40 inline data declarations to call FM SQLD_DOWNLOAD_SE11

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



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!