I_ChmlCmplncPrpsAssStatus

DDL: I_CHMLCMPLNCPRPSASSSTATUS Type: view BASIC

Status of Purpose Assignment

I_ChmlCmplncPrpsAssStatus is a Basic CDS View that provides data about "Status of Purpose Assignment" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ChmlCmplncPrpsAssgmtStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l ChmlCmplncPrpsAssStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlCmplncPrpsAssStatusText _Text $projection.ChmlCmplncPrpsAssgmtStatus = _Text.ChmlCmplncPrpsAssgmtStatus

Annotations (10)

NameValueLevelField
EndUserText.label Status of Purpose Assignment view
AbapCatalog.sqlViewName ICCPRPSASSSTAT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlCmplncPrpsAssgmtStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncPrpsAssgmtStatus
_Text _Text

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_ChmlCmplncPrpsAssStatus.
-- 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.

CREATE VIEW I_ChmlCmplncPrpsAssStatus AS
SELECT
  substring(ChmlCmplncPrpsAssStatus.domvalue_l, 1, 4) AS ChmlCmplncPrpsAssgmtStatus
FROM dd07l AS ChmlCmplncPrpsAssStatus
LEFT OUTER JOIN I_ChmlCmplncPrpsAssStatusText AS _Text ON ChmlCmplncPrpsAssgmtStatus = _Text.ChmlCmplncPrpsAssgmtStatus  -- association [0..*]
;