C_CrdtDcsnDocApprvlHierTP

DDL: C_CRDTDCSNDOCAPPRVLHIERTP Type: view_entity CONSUMPTION

Approval Hierarchy

C_CrdtDcsnDocApprvlHierTP is a Consumption CDS View that provides data about "Approval Hierarchy" in SAP S/4HANA. It reads from 1 data source (R_CrdtDcsnDocApprvlHierTP) and exposes 16 fields with key fields CaseUUID, CrdtDecisionDocApprvlHierUUID.

Data Sources (1)

SourceAliasJoin Type
R_CrdtDcsnDocApprvlHierTP R_CrdtDcsnDocApprvlHierTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Approval Hierarchy view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey CrdtDecisionDocApprvlHierUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #X view
Metadata.allowExtensions true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY CaseUUID CaseUUID UUID
KEY CrdtDecisionDocApprvlHierUUID CrdtDecisionDocApprvlHierUUID
CreditDecisionDocApprvlHierLvl CreditDecisionDocApprvlHierLvl
CreditDecisionDocumentApprover CreditDecisionDocumentApprover
CreditDecisionDocApprvrGroup CreditDecisionDocApprvrGroup
CreditDecisionDocApprvlStatus CreditDecisionDocApprvlStatus
CreditDecisionDocApprovalNote CreditDecisionDocApprovalNote
ApprovedByUser ApprovedByUser
ApprovalDateTime ApprovalDateTime Time Stamp
CrdtDecisionDocApprvrFullName _ApproverContactCard UserDescription Full Name
CreditDecisionDocApprvrGrpName
ApprovedByUserFullName _ApprovedByContactCard UserDescription Full Name
_ApprovalStepStatus _ApprovalStepStatus
_ApprovedByUser _ApprovedByUser
_ApproverUser _ApproverUser
_ApproverGroup _ApproverGroup

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 C_CrdtDcsnDocApprvlHierTP.
-- 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 C_CrdtDcsnDocApprvlHierTP AS
SELECT
  CaseUUID,
  CrdtDecisionDocApprvlHierUUID,
  CreditDecisionDocApprvlHierLvl,
  CreditDecisionDocumentApprover,
  CreditDecisionDocApprvrGroup,
  CreditDecisionDocApprvlStatus,
  CreditDecisionDocApprovalNote,
  ApprovedByUser,
  ApprovalDateTime,
  _ApproverContactCard.UserDescription AS CrdtDecisionDocApprvrFullName,
  _ApproverGroup._Text.CreditDecisionDocApprvrGrpName AS CreditDecisionDocApprvrGrpName,
  _ApprovedByContactCard.UserDescription AS ApprovedByUserFullName
FROM R_CrdtDcsnDocApprvlHierTP
;