DBATRIAL SAP (Look-Up Tables for Database Sub-Operations) Table details

Dictionary Type: Table
Description: Look-Up Tables for Database Sub-Operations




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




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

DBATRIAL is a standard SAP Table which is used to store Look-Up Tables for Database Sub-Operations data and is available within R/3 SAP systems depending on the version and release level.

The DBATRIAL table consists of various fields, each holding specific information or linking keys about Look-Up Tables for Database Sub-Operations data available in SAP. These include TASKNAME (Name of program that executes database operation), TRIAL (Unique ID Number of the Suboperation), TRIALDESC (Description of sub-operation).. 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: Not classified


SAP DBATRIAL 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
DBNAMEDatabase system SDBA_DBCHAR10SDBA_DBS
TASKNAMEName of program that executes database operation SDBA_PROGCHAR30EDI_REPID
TRIALUnique ID Number of the Suboperation SDBA_TRIALCHAR10CHAR10
TRIALDESCDescription of sub-operation SDBA_TRDCHAR80SDBA_TRD

Key field Non-key field



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

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

SELECT SINGLE *
FROM DBATRIAL
INTO CORRESPONDING FIELDS OF WA_DBATRIAL
WHERE...

How to access SAP table DBATRIAL

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