UACC_STEP SAP (Table holding steps with their properties) Table details

Dictionary Type: Table
Description: Table holding steps with their properties




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




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

UACC_STEP is a standard SAP Table which is used to store Table holding steps with their properties data and is available within R/3 SAP systems depending on the version and release level.

The UACC_STEP table consists of various fields, each holding specific information or linking keys about Table holding steps with their properties data available in SAP. These include USE_CASE (Use case of Check -- 'UPG', 'SPAM', 'ASU' etc..), STEP_ORDER (Defines order of execution of steps), STEP_GROUP (Group of checks), ROLE (Role of recipient).. 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: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP UACC_STEP 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
STEP_NAMEStep Name UACC_STEP_NAMECHAR50UACC_STEP_NAMEUACC_STEP_NAME
USE_CASEUse case of Check -- 'UPG', 'SPAM', 'ASU' etc.. UACC_USE_CASECHAR30UACC_USE_CASEUACC_USECASE
STEP_ORDERDefines order of execution of steps UACC_STEP_ORDERNUMC10UACC_STEP_ORDER
STEP_GROUPGroup of checks UACC_STEP_GROUPCHAR30UACC_STEP_GROUP
ROLERole of recipient UACC_ROLECHAR30UACC_ROLE
SW_COMPSoftware Component DLVUNITCHAR30Assigned to domainDLVUNITH_CVERS
AKH_COMPSoftware Component DLVUNITCHAR30Assigned to domainDLVUNITH_CVERS
CLIENT_DEPClient dependency UACC_CLIENT_DEPCHAR3UACC_CLIENT_DEP
CLASS_NAMEObject Type Name SEOCLSNAMECHAR30SEOCLSNAMECLASS
TYPEType check- 'Mandatory' or 'Optional UACC_TYPECHAR1UACC_TYPE
SCENARIOScenario - PRE or POST upgrade UACC_SCENARIOCHAR7UACC_SCENARIO
FREQUENCYFrequency of Checks UACC_FREQUENCYCHAR1UACC_FREQUENCY
SEVERITYSeverity of checks UACC_SEVERITYCHAR1UACC_SEVERITY
BATCH_STEPData element for domain BOOLE: TRUE (='X') and FALSE (=' ') BOOLE_DCHAR1BOOLE
PRE_STEP_NAMEStep Name UACC_STEP_NAMECHAR50UACC_STEP_NAMEUACC_STEP_NAME
PRE_USE_CASEUse case of Check -- 'UPG', 'SPAM', 'ASU' etc.. UACC_USE_CASECHAR30UACC_USE_CASEUACC_USECASE

Key field Non-key field



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

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

SELECT SINGLE *
FROM UACC_STEP
INTO CORRESPONDING FIELDS OF WA_UACC_STEP
WHERE...

How to access SAP table UACC_STEP

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