I_StatusProfile

DDL: I_STATUSPROFILE SQL: ISTATUSPROFILE Type: view BASIC

Status Profile

I_StatusProfile (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_StatusProfile is a Basic CDS View (Dimension) that provides data about "Status Profile" in SAP S/4HANA. It reads from 1 data source (tj20) and exposes 4 fields with key field StatusProfile. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentCA-GTF-VDM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tj20 tj20 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_StatusProfiletext _StatusProfileText $projection.StatusProfile = _StatusProfileText.StatusProfile
[0..1] I_Language _Language $projection.MasterLanguage = _Language.Language

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey StatusProfile view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName ISTATUSPROFILE view
EndUserText.label Status Profile view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatusProfile tj20 stsma Status Profile
MasterLanguage tj20 pflsp Maintenance Language
_StatusProfileText _StatusProfileText
_Language _Language

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 I_StatusProfile.
-- 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: ISTATUSPROFILE

CREATE VIEW I_StatusProfile AS
SELECT
  tj20.stsma AS StatusProfile,
  tj20.pflsp AS MasterLanguage
FROM tj20
LEFT OUTER JOIN I_StatusProfiletext AS _StatusProfileText ON StatusProfile = _StatusProfileText.StatusProfile  -- association [0..*]
LEFT OUTER JOIN I_Language AS _Language ON MasterLanguage = _Language.Language  -- association [0..1]
;