SDBAC SAP (DBA Action Table) Table details

Dictionary Type: Table
Description: DBA Action Table




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




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

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

The SDBAC table consists of various fields, each holding specific information or linking keys about DBA Action Table data available in SAP. These include DBSYS (Database System for DBA), OPSYS (Name of operating system), LANGUAGE (Language Key), SHORTNAM (Short name for the DBA action).. 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: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP SDBAC 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
SHORTCUTType of DBA action SDBA_BTYPECHAR5SDBA_BTYPE
DBSYSDatabase System for DBA DBADBSYSCHAR10DBADBSYS
OPSYSName of operating system OPSYSCHAR10Assigned to domainOPSYS
LANGUAGELanguage Key SPRASLANG1Assigned to domainISOLASPRASSPRH_T002
SHORTNAMShort name for the DBA action SDBA_SNAMECHAR11TEXT11
LONGNAMELong name for DBA action SDBA_LNAMECHAR40TEXT40
HOSTName of the server where the DBA action is to be executed SDBA_HOSTCHAR30TEXT30
PTYPESList of parameter types SDBA_PTYPSCHAR5TEXT5
CTYPEExecution mode for DBA action (using ext. program or report) SDBA_CTYPECHAR3CHAR3
CNAMEName of command or report to execute SDBA_CNAMECHAR30TEXT30
PSTRINGGeneric parameter string for the DBA action SDBA_PSTRGCHAR128TEXT128
DURATIONDuration of the DBA action SDBA_DURAINT410INT4
ATYPEType of the DBA action (for grouping) SDBA_ATYPECHAR5CHAR5
EXT1Extension 1 for description of DBA action SDBA_EXT1CHAR1TEXT1
EXT2Extension 2 for description of DBA action SDBA_EXT2CHAR5TEXT5
EXT3Extension 3 for description of DBA action SDBA_EXT3CHAR8TEXT8
BEGRELRelease of SAP System SYSAPRLCHAR4SYCHAR04
ENDRELRelease of SAP System SYSAPRLCHAR4SYCHAR04
BEGDBRELDatabase release SDBA_DBRELCHAR10SDBA_DBREL
ENDDBRELDatabase release SDBA_DBRELCHAR10SDBA_DBREL
ACTMODEAction Type: 'R' - NW Act., 'N' - Non-NW Act., ' ' - Both SDBA_ACTMOCHAR1CHAR1
PLANMODE Planning Mode: 'L' - Local Only 'G' - Global Only ' ' - Both0

Key field Non-key field



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

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

SELECT SINGLE *
FROM SDBAC
INTO CORRESPONDING FIELDS OF WA_SDBAC
WHERE...

How to access SAP table SDBAC

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