N_StatusObjectStatus
Status Object Status
N_StatusObjectStatus is a CDS View that provides data about "Status Object Status" in SAP S/4HANA. It reads from 1 data source (I_StatusObjectStatusBasic) and exposes 8 fields with key fields StatusObject, StatusCode. It has 4 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StatusObjectStatusBasic | jest | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SystemStatus | _SystemStatus | $projection.StatusCode = _SystemStatus.SystemStatus |
| [0..1] | I_UserStatus | _UserStatus | $projection.StatusCode = _UserStatus.UserStatus and $projection.StatusProfile = _UserStatus.StatusProfile |
| [0..1] | I_StatusObject | _StatusObject | $projection.StatusObject = _StatusObject.StatusObject |
| [0..1] | I_StatusProfile | _StatusProfile | $projection.StatusProfile = _StatusProfile.StatusProfile |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | StatusCode | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AbapCatalog.sqlViewName | NSTATUSOBJSTATUS | view | |
| EndUserText.label | Status Object Status | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.auxiliaryEntity.for.entity | I_StatusObjectStatus | view | |
| AbapCatalog.preserveKey | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusObject | I_StatusObjectStatusBasic | StatusObject | Status Object |
| KEY | StatusCode | I_StatusObjectStatusBasic | StatusCode | Statuscode |
| StatusProfile | jsto | StatusProfile | Status Profile | |
| StatusIsInactive | I_StatusObjectStatusBasic | StatusIsInactive | TRUE | |
| _SystemStatus | _SystemStatus | |||
| _UserStatus | _UserStatus | |||
| _StatusObject | _StatusObject | |||
| _StatusProfile | _StatusProfile |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view N_StatusObjectStatus.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: NSTATUSOBJSTATUS
CREATE VIEW N_StatusObjectStatus AS
SELECT
jest.StatusObject AS StatusObject,
jest.StatusCode AS StatusCode,
jsto.StatusProfile AS StatusProfile,
jest.StatusIsInactive AS StatusIsInactive
FROM I_StatusObjectStatusBasic AS jest
LEFT OUTER JOIN I_SystemStatus AS _SystemStatus ON StatusCode = _SystemStatus.SystemStatus -- association [0..1]
LEFT OUTER JOIN I_UserStatus AS _UserStatus ON StatusCode = _UserStatus.UserStatus AND StatusProfile = _UserStatus.StatusProfile -- association [0..1]
LEFT OUTER JOIN I_StatusObject AS _StatusObject ON StatusObject = _StatusObject.StatusObject -- association [0..1]
LEFT OUTER JOIN I_StatusProfile AS _StatusProfile ON StatusProfile = _StatusProfile.StatusProfile -- association [0..1]
;
Learn More
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA