SAP FSLSA Foreign Trade: Legal Control-Sanctioned Party List-Address Table data and field list

FSLSA is a standard SAP Table which is used to store Foreign Trade: Legal Control-Sanctioned Party List-Address data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FSLSA table consists of various fields, each holding specific information or linking keys about Foreign Trade: Legal Control-Sanctioned Party List-Address data available in SAP. These include SLNUM (Internal number for sanctioned party list in legal control), LAUNR (Sequential number for legal control), SLDCO (Deletion indicator for entry in sanctioned party list), SLAEN (Name of last person to change entry of sanctioned party)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

FSLSA table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP FSLSA table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the FSLSA table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
SLNUMInternal number for sanctioned party list in legal control SLNUMCHAR10FSLSALPHASLNUMSLNFSLS
LAUNRSequential number for legal control LAUNRNUMC5NUMC
SLDCODeletion indicator for entry in sanctioned party list SLDCOCHAR1XFELD
SLAENName of last person to change entry of sanctioned party SLAENCHAR12USNAM
SLDAEChange date of entry in sanctioned party list SLDAEDATS8DATUM
SLDZTTime when entry in sanctioned party list was changed SLDZTTIMS6UZEIT
SPRASLanguage Key SPRASLANG1T002ISOLASPRASSPRH_T002
CITY1City AD_CITY1CHAR40TEXT40CLCITYNAME
CITY2District AD_CITY2CHAR40TEXT40CITY_PART
POST_CODE1City postal code AD_PSTCD1CHAR10CHAR10
PO_BOXPO Box AD_POBXCHAR10CHAR10
STREETStreet AD_STREETCHAR60TEXT60CLSTRTNAME
HOUSE_NUM1House Number AD_HSNM1CHAR10TEXT10
BUILDINGBuilding (Number or Code) AD_BLDNGCHAR20TEXT20
ROOMNUMBERRoom or Appartment Number AD_ROOMNUMCHAR10TEXT10
COUNTRYCountry Key LAND1CHAR3T005LAND1LND
REGIONSTATE (State, Province, County) REGIOCHAR3T005SREGIO
SLKW01Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW02Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW03Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW04Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW05Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW06Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW07Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW08Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW09Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD
SLKW10Search term for sanctioned party list in legal control SLKWDCHAR40SLKWD

Key field Non-key field



How do I retrieve data from SAP table FSLSA using ABAP code

The following ABAP code Example will allow you to do a basic selection on FSLSA to SELECT all data from the table
DATA: WA_FSLSA TYPE FSLSA.

SELECT SINGLE *
FROM FSLSA
INTO CORRESPONDING FIELDS OF WA_FSLSA
WHERE...

How to access SAP table FSLSA

Within an ECC or HANA version of SAP you can also view further information about FSLSA and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).