I_SpecIdfrBscForKeyDate

DDL: I_SPECIDFRBSCFORKEYDATE SQL: ISPCIDFRBSC Type: view COMPOSITE

Specification Basic Identifier by Appl for Key Date

I_SpecIdfrBscForKeyDate is a Composite CDS View that provides data about "Specification Basic Identifier by Appl for Key Date" in SAP S/4HANA. It reads from 1 data source (I_SpecIdfrBscByAppForKeyDate) and exposes 3 fields with key field SpecificationInternalID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SpecIdfrBscByAppForKeyDate I_SpecIdfrBscByAppForKeyDate from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISPCIDFRBSC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK 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
EndUserText.label Specification Basic Identifier by Appl for Key Date view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SpecificationInternalID idfr SpecificationInternalID Specification
SpecIdfgDescText idfr SpecIdfgDescText
_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_SpecIdfrBscForKeyDate.
-- 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: ISPCIDFRBSC
-- Parameters: P_KeyDate : sydate

CREATE VIEW I_SpecIdfrBscForKeyDate AS
SELECT
  idfr.SpecificationInternalID AS SpecificationInternalID,
  idfr.SpecIdfgDescText AS SpecIdfgDescText
FROM I_SpecIdfrBscByAppForKeyDate
LEFT OUTER JOIN I_SpecificationForKeyDate AS _SpecificationForKeyDate ON SpecificationInternalID = _SpecificationForKeyDate.SpecificationInternalID  -- association [0..1]
;