I_InspSpecCatalogTP

DDL: I_INSPSPECCATALOGTP Type: view_entity TRANSACTIONAL

Catalogs of Master Characteristic

I_InspSpecCatalogTP is a Transactional CDS View that provides data about "Catalogs of Master Characteristic" in SAP S/4HANA. It reads from 1 data source (I_InspSpecCatalog) and exposes 17 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion, InspSpecAddlCatalogFieldGroup. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_InspSpecCatalog I_InspSpecCatalog from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_InspectionCatalogText _InspSpecAddlCatalogText $projection.InspSpecAdditionalCatalog = _InspSpecAddlCatalogText.InspectionCatalog
[0..*] I_Inspectioncodegrouptext _InspSpecAddlCodeGroupText $projection.InspSpecAdditionalCatalog = _InspSpecAddlCodeGroupText.InspectionCatalog and $projection.InspSpecAdditionalCodeGroup = _InspSpecAddlCodeGroupText.InspectionCodeGroup

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Catalogs of Master Characteristic view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey InspSpecAddlCatalogFieldGroup view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY InspectionSpecificationPlant InspectionSpecificationPlant
KEY InspectionSpecification InspectionSpecification Master IC
KEY InspectionSpecificationVersion InspectionSpecificationVersion
KEY InspSpecAddlCatalogFieldGroup InspSpecAddlCatalogFieldGroup
InspSpecAdditionalCatalog InspSpecAdditionalCatalog
InspSpecAdditionalSelectedSet InspSpecAdditionalSelectedSet CodeGrp/SelSet
InspSpecAdditionalCodeGroup InspSpecAdditionalCodeGroup
InspSpecAddlSeldCodeSetPlant InspSpecAddlSeldCodeSetPlant
_InspSpecificationVersion _InspSpecificationVersion
_InspectionSpecification _InspectionSpecification
_InspectionSpecificationPlant _InspectionSpecificationPlant
_InspSpecAddlCatalog _InspSpecAddlCatalog
_InspSpecAddlSelectedSet _InspSpecAddlSelectedSet
_InspSpecAddlCodeGroup _InspSpecAddlCodeGroup
_InspSpecAddlSeldCodeSetPlant _InspSpecAddlSeldCodeSetPlant
_InspSpecAddlCodeGroupText _InspSpecAddlCodeGroupText
_InspSpecAddlCatalogText _InspSpecAddlCatalogText

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_InspSpecCatalogTP.
-- 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_InspSpecCatalogTP AS
SELECT
  InspectionSpecificationPlant,
  InspectionSpecification,
  InspectionSpecificationVersion,
  InspSpecAddlCatalogFieldGroup,
  InspSpecAdditionalCatalog,
  InspSpecAdditionalSelectedSet,
  InspSpecAdditionalCodeGroup,
  InspSpecAddlSeldCodeSetPlant
FROM I_InspSpecCatalog
LEFT OUTER JOIN I_InspectionCatalogText AS _InspSpecAddlCatalogText ON InspSpecAdditionalCatalog = _InspSpecAddlCatalogText.InspectionCatalog  -- association [0..*]
LEFT OUTER JOIN I_Inspectioncodegrouptext AS _InspSpecAddlCodeGroupText ON InspSpecAdditionalCatalog = _InspSpecAddlCodeGroupText.InspectionCatalog AND InspSpecAdditionalCodeGroup = _InspSpecAddlCodeGroupText.InspectionCodeGroup  -- association [0..*]
;