I_SpecDefIdfrForSpecCat

DDL: I_SPECDEFIDFRFORSPECCAT SQL: ISPECDEFSPECCAT Type: view COMPOSITE

Default description of a specification

I_SpecDefIdfrForSpecCat is a Composite CDS View that provides data about "Default description of a specification" in SAP S/4HANA. It reads from 5 data sources (I_SpecIdentifierForKeyDate, I_SpecificationForKeyDate, I_SpecPrimIdfrForSpecCatMin, I_SpecIdnListingDefinition, I_SpecTypeAssignedCategory) and exposes 13 fields with key fields SpecificationInternalID, SpecIdfgDescInternalID.

Data Sources (5)

SourceAliasJoin Type
I_SpecIdentifierForKeyDate I_SpecIdentifierForKeyDate from
I_SpecificationForKeyDate I_SpecificationForKeyDate inner
I_SpecPrimIdfrForSpecCatMin I_SpecPrimIdfrForSpecCatMin inner
I_SpecIdnListingDefinition listingCust inner
I_SpecTypeAssignedCategory spectypecategory inner

Parameters (2)

NameTypeDefault
P_KeyDate sydate
P_SpecificationCategory eseobjtype

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISPECDEFSPECCAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Default description of a specification view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY SpecificationInternalID idn SpecificationInternalID Specification
KEY SpecIdfgDescInternalID idn SpecIdfgDescInternalID
SpecIdfgDescCreatedByUser idn SpecIdfgDescCreatedByUser
SpecIdfgDescCreationDate idn SpecIdfgDescCreationDate
SpecIdfgDescLastChangedByUser idn SpecIdfgDescLastChangedByUser
SpecIdfgDescLastChangeDate idn SpecIdfgDescLastChangeDate
SpecIdfgDescText idn SpecIdfgDescText
SpecificationIdnListingPrio SpecificationIdnListingPrio ID list. prior.
SpecificationIdnListingPos SpecificationIdnListingPos ID Listing Pos.
SpecIdfgDescCategory idn SpecIdfgDescCategory Type
SpecIdfgDescType idn SpecIdfgDescType ID Type
SpecIdfgDescLanguage idn SpecIdfgDescLanguage
_SpecificationForKeyDate _SpecificationForKeyDate

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_SpecDefIdfrForSpecCat.
-- 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: ISPECDEFSPECCAT
-- Parameters: P_KeyDate : sydate, P_SpecificationCategory : eseobjtype

CREATE VIEW I_SpecDefIdfrForSpecCat AS
SELECT
  idn.SpecificationInternalID AS SpecificationInternalID,
  idn.SpecIdfgDescInternalID AS SpecIdfgDescInternalID,
  idn.SpecIdfgDescCreatedByUser AS SpecIdfgDescCreatedByUser,
  idn.SpecIdfgDescCreationDate AS SpecIdfgDescCreationDate,
  idn.SpecIdfgDescLastChangedByUser AS SpecIdfgDescLastChangedByUser,
  idn.SpecIdfgDescLastChangeDate AS SpecIdfgDescLastChangeDate,
  idn.SpecIdfgDescText AS SpecIdfgDescText,
  SpecificationIdnListingPrio,
  SpecificationIdnListingPos,
  idn.SpecIdfgDescCategory AS SpecIdfgDescCategory,
  idn.SpecIdfgDescType AS SpecIdfgDescType,
  idn.SpecIdfgDescLanguage AS SpecIdfgDescLanguage
FROM I_SpecIdentifierForKeyDate
INNER JOIN I_SpecificationForKeyDate ON /* join condition not captured in parsed metadata */
INNER JOIN I_SpecTypeAssignedCategory AS spectypecategory ON /* join condition not captured in parsed metadata */
INNER JOIN I_SpecIdnListingDefinition AS listingCust ON /* join condition not captured in parsed metadata */
INNER JOIN I_SpecPrimIdfrForSpecCatMin ON /* join condition not captured in parsed metadata */
;