R_SrcgSuplrListMatlGroupTP

DDL: R_SRCGSUPLRLISTMATLGROUPTP SQL: RSRCSLMATLGRPTP Type: view_entity TRANSACTIONAL

Material Group for Srcg Suplr List - TP

R_SrcgSuplrListMatlGroupTP is a Transactional CDS View that provides data about "Material Group for Srcg Suplr List - TP" in SAP S/4HANA. It reads from 1 data source (R_SrcgSuplrListMaterialGroup) and exposes 7 fields with key field MaterialGroupUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_SrcgSuplrListMaterialGroup R_SrcgSuplrListMaterialGroup from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialGroupText _MaterialGroupText $projection.MaterialGroup = _MaterialGroupText.MaterialGroup and _MaterialGroupText.Language = $session.system_language

Annotations (10)

NameValueLevelField
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Material Group for Srcg Suplr List - TP view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey MaterialGroupUUID view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroupUUID MaterialGroupUUID Material Group UUID
MaterialGroup MaterialGroup Product Group
SourcingSupplierListUUID SourcingSupplierListUUID UUID of Sourcing Supplier List
IsDeleted IsDeleted TRUE
_SourcingSupplierListTP _SourcingSupplierListTP
_MaterialGroup _MaterialGroup
_MaterialGroupText _MaterialGroupText

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_SrcgSuplrListMatlGroupTP.
-- 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: RSRCSLMATLGRPTP

CREATE VIEW R_SrcgSuplrListMatlGroupTP AS
SELECT
  MaterialGroupUUID,
  MaterialGroup,
  SourcingSupplierListUUID,
  IsDeleted
FROM R_SrcgSuplrListMaterialGroup
LEFT OUTER JOIN I_MaterialGroupText AS _MaterialGroupText ON MaterialGroup = _MaterialGroupText.MaterialGroup AND _MaterialGroupText.Language = $session.system_language  -- association [0..1]
;