AUSB SAP (Plant Status Table) Table details

Dictionary Type: Table
Description: Plant Status Table




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




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

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

The AUSB table consists of various fields, each holding specific information or linking keys about Plant Status Table data available in SAP. These include ABELN (Allocation Table Number), ABELP (Item number of allocation table), ABELG (Sub-item no. of plant group (alloc tbl)), ABELF (Sub.item no. of plant (alloc. tbl)).. 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: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP AUSB 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
ABELNAllocation Table Number ABELNCHAR10Assigned to domainALPHAABELNABE
ABELPItem number of allocation table ABELPNUMC5Assigned to domainABELP
ABELGSub-item no. of plant group (alloc tbl) ABELGNUMC5Assigned to domainABELG
ABELFSub.item no. of plant (alloc. tbl) ABELFNUMC5Assigned to domainABELF
ABFSTStatus plant notification ABFSTCHAR1ASTAB
ABASTDetails status, plant notification ABASTCHAR1ABAST
BSTSTStatus: Vendor Purchase Order Generation BSTSTCHAR1ASTAB
UMLSTStatus: warehouse order generation UMLSTCHAR1ASTAB
LIESTStatus: generate deliveries LIESTCHAR1ASTAB
ABVSTNotification status (DC) ABVSTCHAR1ASTAB
WEESTEntry status of GR in DC WEESTCHAR1ASTAB
KAGSTStatus of sales order generation KAGSTCHAR1ASTAB

Key field Non-key field



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

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

SELECT SINGLE *
FROM AUSB
INTO CORRESPONDING FIELDS OF WA_AUSB
WHERE...

How to access SAP table AUSB

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