R_SupCosBrkTmplPurchasingOrg

DDL: R_SUPCOSBRKTMPLPURCHASINGORG SQL: RSUPLRCDBTPORG Type: view BASIC

Basic view for SupCosBrkTmpl Purg Org

R_SupCosBrkTmplPurchasingOrg is a Basic CDS View that provides data about "Basic view for SupCosBrkTmpl Purg Org" in SAP S/4HANA. It reads from 1 data source (mmsuplrcbdtporg) and exposes 8 fields with key field SuplrCostBrkdwnTmplPurgOrgUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
mmsuplrcbdtporg mmsuplrcbdtporg from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProcmtHubPurgOrg _SupCosBrkTmplPurgOrg ( $projection.PurchasingOrganization = _SupCosBrkTmplPurgOrg.ProcmtHubPurchasingOrg and $projection.ProcurementHubSourceSystem = _SupCosBrkTmplPurgOrg.ProcurementHubSourceSystem )
[1..1] R_SuplrCostBreakdownTemplate _SuplrCostBreakdownTemplate $projection.SuplrCostBreakdownTemplateUUID = _SuplrCostBreakdownTemplate.SuplrCostBreakdownTemplateUUID

Annotations (12)

NameValueLevelField
EndUserText.label Basic view for SupCosBrkTmpl Purg Org view
AbapCatalog.sqlViewName RSUPLRCDBTPORG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey SuplrCostBrkdwnTmplPurgOrgUUID 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 SuplrCostBrkdwnTmplPurgOrgUUID suplrcostbrkdwntmplpurgorguuid Purchasing Org UUID
SupCosBrkTmplSrcSysPurgOrg supcosbrktmplsrcsyspurgorg Source Syst & POrg
PurchasingOrganization purchasingorganization Purchasing Organization
SuplrCostBreakdownTemplateUUID suplrcostbreakdowntemplateuuid SUPLRCBDTUUID
IsDeleted isdeleted TRUE
ProcurementHubSourceSystem procurementhubsourcesystem Connected System ID
_SupCosBrkTmplPurgOrg _SupCosBrkTmplPurgOrg
_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_SupCosBrkTmplPurchasingOrg.
-- 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: RSUPLRCDBTPORG

CREATE VIEW R_SupCosBrkTmplPurchasingOrg AS
SELECT
  SuplrCostBrkdwnTmplPurgOrgUUID,
  SupCosBrkTmplSrcSysPurgOrg,
  PurchasingOrganization,
  SuplrCostBreakdownTemplateUUID,
  IsDeleted,
  ProcurementHubSourceSystem
FROM mmsuplrcbdtporg
LEFT OUTER JOIN I_ProcmtHubPurgOrg AS _SupCosBrkTmplPurgOrg ON ( PurchasingOrganization = _SupCosBrkTmplPurgOrg.ProcmtHubPurchasingOrg AND ProcurementHubSourceSystem = _SupCosBrkTmplPurgOrg.ProcurementHubSourceSystem )  -- association [0..1]
LEFT OUTER JOIN R_SuplrCostBreakdownTemplate AS _SuplrCostBreakdownTemplate ON SuplrCostBreakdownTemplateUUID = _SuplrCostBreakdownTemplate.SuplrCostBreakdownTemplateUUID  -- association [1..1]
;