SAP FT_SLS_DATA_READ Function Module for NOTRANSL: Ges. Kontrolle: Lesen von Einträgen der Sanctioned Party List









FT_SLS_DATA_READ is a standard ft sls data read 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: Ges. Kontrolle: Lesen von Einträgen der Sanctioned Party List 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 ft sls data read FM, simply by entering the name FT_SLS_DATA_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function FT_SLS_DATA_READ 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 'FT_SLS_DATA_READ'"NOTRANSL: Ges. Kontrolle: Lesen von Einträgen der Sanctioned Party List
EXPORTING
* I_ENQUEUE_NECESSARY = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_SHOW_DELETED = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_SELECTION_FLAG = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_BUFFER = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
* T_SLNUM = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* T_FSLS = "Foreign Trade: Legal Control-Sanctioned Party List-Master
* T_FSLSN = "Foreign Trade: Legal Control - Sanctioned Party List - Names
* T_FSLSA = "Foreign Trade: Legal Control-Sanctioned Party List-Address
* T_FSLSW = "Foreign Trade: Legal Control - Sanct. Party List - Keyword

EXCEPTIONS
NO_DATA_SELECTED = 1 FOREIGN_LOCK = 2
.



IMPORTING Parameters details for FT_SLS_DATA_READ

I_ENQUEUE_NECESSARY - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_SHOW_DELETED - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_SELECTION_FLAG - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_BUFFER - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

TABLES Parameters details for FT_SLS_DATA_READ

T_SLNUM - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

T_FSLS - Foreign Trade: Legal Control-Sanctioned Party List-Master

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

T_FSLSN - Foreign Trade: Legal Control - Sanctioned Party List - Names

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

T_FSLSA - Foreign Trade: Legal Control-Sanctioned Party List-Address

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

T_FSLSW - Foreign Trade: Legal Control - Sanct. Party List - Keyword

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

EXCEPTIONS details

NO_DATA_SELECTED - No data could be selected

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

FOREIGN_LOCK - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for FT_SLS_DATA_READ 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_slnum  TYPE STANDARD TABLE OF VFSM_SLNUM, "   
lv_no_data_selected  TYPE VFSM_SLNUM, "   
lv_i_enqueue_necessary  TYPE VFSM_SLNUM, "   'X'
lt_t_fsls  TYPE STANDARD TABLE OF FSLS, "   
lv_foreign_lock  TYPE FSLS, "   
lv_i_show_deleted  TYPE FSLS, "   ' '
lt_t_fslsn  TYPE STANDARD TABLE OF FSLSN, "   
lv_i_selection_flag  TYPE FSLSN, "   ' '
lt_t_fslsa  TYPE STANDARD TABLE OF FSLSA, "   
lv_i_buffer  TYPE FSLSA, "   'X'
lt_t_fslsw  TYPE STANDARD TABLE OF FSLSW. "   

  CALL FUNCTION 'FT_SLS_DATA_READ'  "NOTRANSL: Ges. Kontrolle: Lesen von Einträgen der Sanctioned Party List
    EXPORTING
         I_ENQUEUE_NECESSARY = lv_i_enqueue_necessary
         I_SHOW_DELETED = lv_i_show_deleted
         I_SELECTION_FLAG = lv_i_selection_flag
         I_BUFFER = lv_i_buffer
    TABLES
         T_SLNUM = lt_t_slnum
         T_FSLS = lt_t_fsls
         T_FSLSN = lt_t_fslsn
         T_FSLSA = lt_t_fslsa
         T_FSLSW = lt_t_fslsw
    EXCEPTIONS
        NO_DATA_SELECTED = 1
        FOREIGN_LOCK = 2
. " FT_SLS_DATA_READ




ABAP code using 7.40 inline data declarations to call FM FT_SLS_DATA_READ

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.

 
 
DATA(ld_i_enqueue_necessary) = 'X'.
 
 
 
DATA(ld_i_show_deleted) = ' '.
 
 
DATA(ld_i_selection_flag) = ' '.
 
 
DATA(ld_i_buffer) = 'X'.
 
 


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!