I_LabelSetIdfrBscForKeyDate

DDL: I_LABELSETIDFRBSCFORKEYDATE SQL: ILBLSPCIDFRBSC Type: view COMPOSITE Package: VDM_PLMB_LBL

Label Set Spec Basic Identifier by Appl for Key Date

I_LabelSetIdfrBscForKeyDate is a Composite CDS View that provides data about "Label Set Spec 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. Part of development package VDM_PLMB_LBL.

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 ILBLSPCIDFRBSC 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 Label Set Spec 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_LabelSetIdfrBscForKeyDate.
-- 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: ILBLSPCIDFRBSC
-- Parameters: P_KeyDate : sydate

CREATE VIEW I_LabelSetIdfrBscForKeyDate 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]
;