I_ProdCmplncPhrs

DDL: I_PRODCMPLNCPHRS Type: view BASIC

Phrase

I_ProdCmplncPhrs is a Basic CDS View that provides data about "Phrase" in SAP S/4HANA. It reads from 1 data source (ehfndd_phrs) and exposes 17 fields with key field ProdCmplncPhrsUUID. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ehfndd_phrs ehfndd_phrs from

Associations (4)

CardinalityTargetAliasCondition
[1..1] I_ProdCmplncPhrsEnabledField _ProdCmplncPhrsEnabledField $projection.ProdCmplncPhrsEnabledFldUUID = _ProdCmplncPhrsEnabledField.ProdCmplncPhrsEnabledFldUUID
[0..*] I_ProdCmplncPhrsText _ProdCmplncPhrsText $projection.ProdCmplncPhrsUUID = _ProdCmplncPhrsText.ProdCmplncPhrsUUID
[0..1] I_ProdCmplncCntntUser _CreatedByUser $projection.CreatedByUser = _CreatedByUser.UserID
[0..1] I_ProdCmplncCntntUser _LastChangedByUser $projection.LastChangedByUser = _LastChangedByUser.UserID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPCPHRS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Phrase view
ObjectModel.representativeKey ProdCmplncPhrsUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ProdCmplncPhrsUUID prodcmplncphrsuuid Phrase UUID
ProdCmplncPhrsEnabledFldUUID prodcmplncphrsenabledflduuid Phrase-Enabled Field UUID
ContentProvider contentprovider Content Provider
ProdCmplncPhrs prodcmplncphrs Phrase ID
ProdCmplncPhrsCode prodcmplncphrscode Phrase Code
ProdCmplncPhrsNote prodcmplncphrsnote Additional Notes
ProdCmplncPhrsIsHidden prodcmplncphrsishidden Hide Phrase
ProdCmplncPhrsIsHistorical prodcmplncphrsishistorical Is Historical
ProdCmplncPhrsSyncUUID prodcmplncphrssyncuuid Phrase Synchronization UUID
CreationDateTime creationdatetime Timestamp
CreatedByUser createdbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp
LastChangedByUser lastchangedbyuser User Name
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_ProdCmplncPhrsText _ProdCmplncPhrsText
_ProdCmplncPhrsEnabledField _ProdCmplncPhrsEnabledField

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_ProdCmplncPhrs.
-- 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_ProdCmplncPhrs AS
SELECT
  ProdCmplncPhrsUUID,
  ProdCmplncPhrsEnabledFldUUID,
  ContentProvider,
  ProdCmplncPhrs,
  ProdCmplncPhrsCode,
  ProdCmplncPhrsNote,
  ProdCmplncPhrsIsHidden,
  ProdCmplncPhrsIsHistorical,
  ProdCmplncPhrsSyncUUID,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser
FROM ehfndd_phrs
LEFT OUTER JOIN I_ProdCmplncPhrsEnabledField AS _ProdCmplncPhrsEnabledField ON ProdCmplncPhrsEnabledFldUUID = _ProdCmplncPhrsEnabledField.ProdCmplncPhrsEnabledFldUUID  -- association [1..1]
LEFT OUTER JOIN I_ProdCmplncPhrsText AS _ProdCmplncPhrsText ON ProdCmplncPhrsUUID = _ProdCmplncPhrsText.ProdCmplncPhrsUUID  -- association [0..*]
LEFT OUTER JOIN I_ProdCmplncCntntUser AS _CreatedByUser ON CreatedByUser = _CreatedByUser.UserID  -- association [0..1]
LEFT OUTER JOIN I_ProdCmplncCntntUser AS _LastChangedByUser ON LastChangedByUser = _LastChangedByUser.UserID  -- association [0..1]
;