RSDS SAP (DataSource in BW) Table details

Dictionary Type: Table
Description: DataSource in BW




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




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

RSDS is a standard SAP Table which is used to store DataSource in BW data and is available within R/3 SAP systems depending on the version and release level.

The RSDS table consists of various fields, each holding specific information or linking keys about DataSource in BW data available in SAP. These include LOGSYS (Source system), OBJVERS (Object version), OBJSTAT (Object Status), ACTIVFL (Active and revised version do not agree).. 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 = RSDST


SAP RSDS 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
DATASOURCEDataSource (OSOA/OSOD) ROOSOURCERCHAR30ROOSOURCEDRO1
LOGSYSSource system RSSLOGSYSCHAR10Assigned to domainALPHALOGSYS
OBJVERSObject version RSOBJVERSCHAR1RSOBJVERS
OBJSTATObject Status RSOBJSTATCHAR3RSOBJSTAT
ACTIVFLActive and revised version do not agree RSACTIVFLCHAR1XFELD
TYPEData Type of a DataSource RSDS_REQUTYPECHAR1RSDS_REQUTYPE
PRIMSEGIDPrimary Segment RSDS_PRIMSEGIDNUMC4RSBK_SEGID
OBJECTFDField Name: Object ID RSDS_OBJECTFDCHAR30RSFIELDNM
APPLNMApplication Component RSAPPLNMCHAR30RSAPPLNM
BASOSOURCEInternal Name of DataSource ROBASOURCECHAR30ROBASOURCERO2
DELTADelta Process for a DataSource ROGENDELTACHAR4Assigned to domainALPHARODELTA
STOCKUPDFlag: Creation of opening balance is supported RSSTOCKUPDCHAR1X
PACKGUPDRepeated request of a data packet supported RSPACKGUPDCHAR1X
REALTIMEReal-Time Property of a DataSource RSDS_REALTIMECHAR1RSDS_REALTIME
TIMDEPFLData Is Time Dependent RSDS_ISTIMEDEPCHAR1RS_BOOL
LANGUDEPFLData Is Language Dependent RSDS_ISLANGDEPCHAR1RS_BOOL
EXSTRUCTUREName of the provider structure for an InfoSource ROSTRUCCHAR30Assigned to domainAS4TABDTB
VIRTCUBEDataSource: Extractor Supports Direct Access ROVIRTFLCHAR1ROVIRT
HYBRIDACCESSDataSource: HybridProvider Access Supported RSDSHYBRIDACCESSCHAR1RS_BOOL
CHARONLYStructure only allows character fields RSCHARONLYCHAR1X
TSTMPOLTPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) RSTIMESTMPDEC15TZNTSTMPS
DELTAACTBoolean RS_BOOLCHAR1RS_BOOL
ICONIcon in text fields (substitute display, alias) ICON_DCHAR4Assigned to domainICON
CONTRELContent release RSCONTRELCHAR6CHAR6
CONTTIMESTMPContent time stamp: Last modification to the object by SAP RSCONTTIMESTMPDEC15TZNTSTMPS
APPL_CALLBACKFunction Module Rule Proposal RSDS_APPLPROPCHAR30Assigned to domainFUNCNAME
TFMETHODSSupported transfer methods RSTFMETHODSCHAR1RSTFMETHODS
ARCHMETHODArchive Link of a DataSource RSARCHMTHDCHAR1ROARCHMTHD
DUPRECFlag: DataSource returns duplicate records RSDUPRECCHAR1RSDUPREC
INITSIMUDelta process initialization simulation RSINITSIMUCHAR1CHAR1
ZDD_ABLEBoolean RS_BOOLCHAR1RS_BOOL
RECONCILIATIONDataSource for Data Synchronization RSDS_RECOCHAR1RS_BOOL
CHAR_PSAPSA for All Segments in CHAR Format RSDS_CHAR_PSACHAR1RS_BOOL
CHAR1000Thousand separator RSTHOUSANDCHAR1CHAR1
DEZICHARCharacter for decimal point RSDECIMALCHAR1CHAR1
CONTPACKETPackage DEVCLASSCHAR30Assigned to domainDEVCLASSDVCDEVCLASS
CONTMASTERObject Name in Object Directory SOBJ_NAMECHAR40SOBJ_NAME
DELTAFDDelta-Relevant Field of DataSource RSDS_DELTAFDCHAR30RSFIELDNM
DELTATPType of Delta-Relevant Field RSDS_DELTATPCHAR1RSDS_DELTATP
DELTALOWSafety Interval Lower Limit RSDLTASAF1CHAR45RSLOW
DELTAHIGHSafety Interval Upper Limit of Delta Selection RSDLTASAFECHAR45RSLOW
DELTATZTime Zone TZNZONECHAR6TTZZTZNZONE
TSTPNMLast changed by RSTSTPNMCHAR12USR02XUBNAME
TIMESTMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) RSTIMESTMPDEC15TZNTSTMPS
CODEIDID of the Generated Program RSDS_CODEIDCHAR25RSSGUID25
TRANSTRUS_APPLDeep Structure: Application Structures of a DataSource RSDS_STRAPPLCHAR30Assigned to domainAS4TAB
TRANSTRUS_CHARDeep Structure: DataSource Character Structures RSDS_STRCHARCHAR30Assigned to domainAS4TAB
HASHNUMBERNumber of Hash Name for DataSource RSDS_HASHNUMNUMC5NUMC5
CONTSRCTYPEContent Release Type RSDS_SRCTYPECHAR3Assigned to domainRSDS_SRCTYPE
CONTSRCVERSContent Version of DataSource RSDS_SRCVERSCHAR6RSDS_SRCVERS
PSADATCLSData Class for PSA Table RSDS_PSADATCLSCHAR5Assigned to domainTABARTRSF4DATCLS
PSASIZCATSize Category for PSA Table RSDS_PSASIZCATCHAR2TABKAT
CONVLANGUConversion Language RSDS_CONVLANGULANG1Assigned to domainISOLASPRASH_T002

Key field Non-key field



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

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

SELECT SINGLE *
FROM RSDS
INTO CORRESPONDING FIELDS OF WA_RSDS
WHERE...

How to access SAP table RSDS

Within an ECC or HANA version of SAP you can also view further information about RSDS 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!