I_SpecIdentifierForKeyDate

DDL: I_SPECIDENTIFIERFORKEYDATE SQL: ISPECIDFR_KD Type: view COMPOSITE

Specification on a Key Date

I_SpecIdentifierForKeyDate is a Composite CDS View that provides data about "Specification on a Key Date" in SAP S/4HANA. It reads from 1 data source (I_SpecIdentifier) and exposes 30 fields with key fields SpecIdfgDescInternalID, SpecIdfgDescChangeState. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SpecIdentifier I_SpecIdentifier from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SpecificationForKeyDate _SpecificationForKeyDate $projection.SpecificationInternalID = _SpecificationForKeyDate.SpecificationInternalID

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ISPECIDFR_KD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Specification on a Key Date view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY SpecIdfgDescInternalID SpecIdfgDescInternalID Unique ID No.
KEY SpecIdfgDescChangeState SpecIdfgDescChangeState GUID number
SpecificationInternalID SpecificationInternalID Specification
SpecIdfgDescValidityStartDate SpecIdfgDescValidityStartDate Valid From
SpecIdfgDescValidityEndDate SpecIdfgDescValidityEndDate Valid To
SpecIdfgDescChangeNumber SpecIdfgDescChangeNumber Change Number
SpecIdfgDescIsDeleted SpecIdfgDescIsDeleted DID
SpecIdfgDescCreatedByUser SpecIdfgDescCreatedByUser Requester
SpecIdfgDescCreationDate SpecIdfgDescCreationDate Generation Time
SpecIdfgDescLastChangedByUser SpecIdfgDescLastChangedByUser User Name
SpecIdfgDescLastChangeDate SpecIdfgDescLastChangeDate Changed On
SpecIdfgDescSortSequence SpecIdfgDescSortSequence Sort Order
SpecIdfgDescIsInheritanceSrce SpecIdfgDescIsInheritanceSrce Truth Value
SpecIdfgDescInheritanceParent SpecIdfgDescInheritanceParent Record number
SpecIdfgDescInheritanceRoot SpecIdfgDescInheritanceRoot Record number
SpecIdfgDescRootSpecIntID SpecIdfgDescRootSpecIntID Record number
InhtdSpecIdfgDescIsTmpChgd InhtdSpecIdfgDescIsTmpChgd Truth Value
InhtdSpecIdfgDescIsPermChgd InhtdSpecIdfgDescIsPermChgd Truth Value
SpecInheritanceTemplate SpecInheritanceTemplate Record number
SpecInheritanceTmplSortSeq SpecInheritanceTmplSortSeq Sort Order
SpecIdfgDescCategory SpecIdfgDescCategory Type
SpecIdfgDescType SpecIdfgDescType ID Type
SpecIdfgDescLanguage SpecIdfgDescLanguage Primary lang.
SpecIdfgDescText SpecIdfgDescText Tree Structure
_SpecIdfgDescLanguage _SpecIdfgDescLanguage
_SpecificationForKeyDate _SpecificationForKeyDate
_SpecIdentifierLongText _SpecIdentifierLongText
_SpecIdentifierUsageLocal _SpecIdentifierUsageLocal
_SpecIdentifierUsageOrigl _SpecIdentifierUsageOrigl
_SpecInheritanceTemplateHdr _SpecInheritanceTemplateHdr

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_SpecIdentifierForKeyDate.
-- 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: ISPECIDFR_KD
-- Parameters: P_KeyDate : sydate

CREATE VIEW I_SpecIdentifierForKeyDate AS
SELECT
  SpecIdfgDescInternalID,
  SpecIdfgDescChangeState,
  SpecificationInternalID,
  SpecIdfgDescValidityStartDate,
  SpecIdfgDescValidityEndDate,
  SpecIdfgDescChangeNumber,
  SpecIdfgDescIsDeleted,
  SpecIdfgDescCreatedByUser,
  SpecIdfgDescCreationDate,
  SpecIdfgDescLastChangedByUser,
  SpecIdfgDescLastChangeDate,
  SpecIdfgDescSortSequence,
  SpecIdfgDescIsInheritanceSrce,
  SpecIdfgDescInheritanceParent,
  SpecIdfgDescInheritanceRoot,
  SpecIdfgDescRootSpecIntID,
  InhtdSpecIdfgDescIsTmpChgd,
  InhtdSpecIdfgDescIsPermChgd,
  SpecInheritanceTemplate,
  SpecInheritanceTmplSortSeq,
  SpecIdfgDescCategory,
  SpecIdfgDescType,
  SpecIdfgDescLanguage,
  SpecIdfgDescText
FROM I_SpecIdentifier
LEFT OUTER JOIN I_SpecificationForKeyDate AS _SpecificationForKeyDate ON SpecificationInternalID = _SpecificationForKeyDate.SpecificationInternalID  -- association [0..1]
;