I_StatusProfiletext

DDL: I_STATUSPROFILETEXT SQL: ISTATUSPROFILET Type: view BASIC Package: VDM_FND

Status Profile - Text

I_StatusProfiletext (Basic)

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

Cross Applications

I_StatusProfiletext is a Basic CDS View that provides data about "Status Profile - Text" in SAP S/4HANA. It reads from 2 data sources (tj20, tj20t) and exposes 5 fields with key fields StatusProfile, Language. It has 2 associations to related views. Part of development package VDM_FND.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentCA-GTF-VDM
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Data Source for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
tj20 tj20 from
tj20t tj20t left_outer

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_StatusProfile _StatusProfile $projection.StatusProfile = _StatusProfile.StatusProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

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 ISTATUSPROFILET view
EndUserText.label Status Profile - Text view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StatusProfile tj20 stsma Status Profile
KEY Language tj20t spras Off. Language
StatusProfileName tj20t txt Text (30 Characters)
_StatusProfile _StatusProfile
_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_StatusProfiletext.
-- 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: ISTATUSPROFILET

CREATE VIEW I_StatusProfiletext AS
SELECT
  tj20.stsma AS StatusProfile,
  tj20t.spras AS Language,
  tj20t.txt AS StatusProfileName
FROM tj20
LEFT OUTER JOIN tj20t ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_StatusProfile AS _StatusProfile ON StatusProfile = _StatusProfile.StatusProfile  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;