I_PRODSPECCOMPONENTDESCRIPTION

CDS View

Description of a Product Spec Component

I_PRODSPECCOMPONENTDESCRIPTION is a CDS View in S/4HANA. Description of a Product Spec Component. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
A_ProdSpecComponentDescription view from CONSUMPTION Description of a Product Spec Component
@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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SPECDEFIDFRFORSPECCAT"
],
"ASSOCIATED":
[
"I_PRODSPECCOMPONENT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/