I_CustMgmtLifecycleUserStsText

DDL: I_CUSTMGMTLIFECYCLEUSERSTSTEXT Type: view BASIC

Life Cycle Status in Service - Text

I_CustMgmtLifecycleUserStsText is a Basic CDS View that provides data about "Life Cycle Status in Service - Text" in SAP S/4HANA. It reads from 1 data source (crms4c_stat_lc_t) and exposes 5 fields with key fields Language, CustMgmtLifecycleUserStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
crms4c_stat_lc_t crms4c_stat_lc_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CustMgmtLifecycleUserStatus _CustMgmtLifecycleUserStatus $projection.CustMgmtLifecycleUserStatus = _CustMgmtLifecycleUserStatus.CustMgmtLifecycleUserStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Life Cycle Status in Service - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CustMgmtLifecycleUserStatus view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICMLFCYCUSERSTST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language language Report Text Language
KEY CustMgmtLifecycleUserStatus stat_lifecycle Unique Custom Status
CustMgmtLifecycleUserStsName description Well Code Des.
_CustMgmtLifecycleUserStatus _CustMgmtLifecycleUserStatus
_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_CustMgmtLifecycleUserStsText.
-- 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_CustMgmtLifecycleUserStsText AS
SELECT
  Language,
  stat_lifecycle AS CustMgmtLifecycleUserStatus,
  description AS CustMgmtLifecycleUserStsName
FROM crms4c_stat_lc_t
LEFT OUTER JOIN I_CustMgmtLifecycleUserStatus AS _CustMgmtLifecycleUserStatus ON CustMgmtLifecycleUserStatus = _CustMgmtLifecycleUserStatus.CustMgmtLifecycleUserStatus  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;