TSIW_CONFIG SAP (SIW Configurations) Table details

Dictionary Type: Table
Description: SIW Configurations




ABAP Code to SELECT data from TSIW_CONFIG
Related tables to TSIW_CONFIG
Access table TSIW_CONFIG




Table field list including key, data, relationships and ABAP select examples

TSIW_CONFIG is a standard SAP Table which is used to store SIW Configurations data and is available within R/3 SAP systems depending on the version and release level.

The TSIW_CONFIG table consists of various fields, each holding specific information or linking keys about SIW Configurations data available in SAP. These include SETUP_CLASS (Class for Configuration Setup), LANDSCAPE_ID (Landscape ID), FLG_AUTH_CHECK (Check Authorization), RELEASE_ID (SIW: Release Identifier).. 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. .

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced

Text table = TSIW_CONFIGT


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

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
CONFIG_IDConfiguration ID SIW_DTE_CONFIG_IDCHAR20SIW_DOM_CONFIG_ID
SETUP_CLASSClass for Configuration Setup SIW_DTE_CONFIG_SETUP_CLASSCHAR30SEOCLSNAME
LANDSCAPE_IDLandscape ID SIW_DTE_LANDSCAPE_IDCHAR20TSIW_LANDSCAPESIW_DOM_LANDSCAPE_ID
FLG_AUTH_CHECKCheck Authorization SIW_DTE_FLG_AUTH_CHECKCHAR1FLAG
RELEASE_IDSIW: Release Identifier SIW_DTE_RELEASE_IDCHAR30SIW_DOM_RELEASE_ID
DISPLAY_ONLYDisplay Only SIW_DTE_DISP_ONLYCHAR1FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM TSIW_CONFIG
INTO CORRESPONDING FIELDS OF WA_TSIW_CONFIG
WHERE...

How to access SAP table TSIW_CONFIG

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

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


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!