R_SuplrCostBrkdwnTmplPurgGrp

DDL: R_SUPLRCOSTBRKDWNTMPLPURGGRP SQL: RSUPLRCDBTPGRP Type: view BASIC Package: VDM_MM_PUR_SUPLRCOSTBRKDWNTMPL

Basic view for SupCosBrkdwnTmpl Purg Grp

R_SuplrCostBrkdwnTmplPurgGrp is a Basic CDS View that provides data about "Basic view for SupCosBrkdwnTmpl Purg Grp" in SAP S/4HANA. It reads from 1 data source (mmsuplrcbdtpgrp) and exposes 8 fields with key field SuplrCostBrkdwnTmplPurgGrpUUID. It has 1 association to related views. Part of development package VDM_MM_PUR_SUPLRCOSTBRKDWNTMPL.

Data Sources (1)

SourceAliasJoin Type
mmsuplrcbdtpgrp mmsuplrcbdtpgrp from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_SuplrCostBreakdownTemplate _SuplrCostBreakdownTemplate $projection.SuplrCostBreakdownTemplateUUID = _SuplrCostBreakdownTemplate.SuplrCostBreakdownTemplateUUID

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Basic view for SupCosBrkdwnTmpl Purg Grp view
AbapCatalog.sqlViewName RSUPLRCDBTPGRP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey SuplrCostBrkdwnTmplPurgGrpUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SuplrCostBrkdwnTmplPurgGrpUUID suplrcostbrkdwntmplpurggrpuuid Purchasing Grp UUID
PurchasingGroup purchasinggroup Purchasing Group
SuplrCostBreakdownTemplateUUID suplrcostbreakdowntemplateuuid SUPLRCBDTUUID
IsDeleted isdeleted TRUE
ProcurementHubSourceSystem procurementhubsourcesystem Connected System ID
PurchasingGroupName purchasinggroupname Purchasing Grp. Name
SupCosBrkTmplSrcSysPurgGroup supcosbrktmplsrcsyspurggroup Source Syst & PGrp
_SuplrCostBreakdownTemplate _SuplrCostBreakdownTemplate

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 R_SuplrCostBrkdwnTmplPurgGrp.
-- 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: RSUPLRCDBTPGRP

CREATE VIEW R_SuplrCostBrkdwnTmplPurgGrp AS
SELECT
  SuplrCostBrkdwnTmplPurgGrpUUID,
  PurchasingGroup,
  SuplrCostBreakdownTemplateUUID,
  IsDeleted,
  ProcurementHubSourceSystem,
  PurchasingGroupName,
  SupCosBrkTmplSrcSysPurgGroup
FROM mmsuplrcbdtpgrp
LEFT OUTER JOIN R_SuplrCostBreakdownTemplate AS _SuplrCostBreakdownTemplate ON SuplrCostBreakdownTemplateUUID = _SuplrCostBreakdownTemplate.SuplrCostBreakdownTemplateUUID  -- association [1..1]
;