I_ProdSpecComponentDescription

DDL: I_PRODSPECCOMPONENTDESCRIPTION SQL: IPRODSPECOMPDESC Type: view COMPOSITE Package: VDM_PLMB_SPC_COMP_CUST_OP

Description of a Product Spec Component

I_ProdSpecComponentDescription is a Composite CDS View that provides data about "Description of a Product Spec Component" in SAP S/4HANA. It reads from 1 data source (I_SpecDefIdfrForSpecCat) and exposes 4 fields with key fields ProdSpecComponentInternalID, Language. It has 1 association to related views. Part of development package VDM_PLMB_SPC_COMP_CUST_OP.

Data Sources (1)

SourceAliasJoin Type
I_SpecDefIdfrForSpecCat I_SpecDefIdfrForSpecCat from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ProdSpecComponent _ProdSpecComponent $projection.ProdSpecComponentInternalID = _ProdSpecComponent.ProdSpecComponentInternalID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPRODSPECOMPDESC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Description of a Product Spec Component view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProdSpecComponentInternalID SpecificationInternalID
KEY Language SpecIdfgDescLanguage
ProdSpecComponentDescription
_ProdSpecComponent _ProdSpecComponent
@AbapCatalog.sqlViewName: 'IPRODSPECOMPDESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true

@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Description of a Product Spec Component'

define view I_ProdSpecComponentDescription
  with parameters
    @Semantics.businessDate.at: true
    @Consumption.hidden: true
    P_KeyDate : sydate
  as select from I_SpecDefIdfrForSpecCat( P_KeyDate: $parameters.P_KeyDate, P_SpecificationCategory : 'SUBSTANCE' )
  association [1..1] to I_ProdSpecComponent as _ProdSpecComponent on $projection.ProdSpecComponentInternalID = _ProdSpecComponent.ProdSpecComponentInternalID
{

  key SpecificationInternalID                                             as ProdSpecComponentInternalID,
  key SpecIdfgDescLanguage                                                as Language,
      cast(SpecIdfgDescText as /plmb/spc_component_desc preserving type ) as ProdSpecComponentDescription,

      _ProdSpecComponent
}