A_ProdSpecComponentDescription

DDL: A_PRODSPECCOMPONENTDESCRIPTION SQL: APRODSPECOMPDESC Type: view CONSUMPTION Package: VDM_PLMB_SPC_API_OP

Description of a Product Spec Component

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

Data Sources (1)

SourceAliasJoin Type
I_ProdSpecComponentDescription I_ProdSpecComponentDescription from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName APRODSPECOMPDESC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Description of a Product Spec Component view

OData Services (1)

ServiceBindingVersionContractRelease
API_PRODSPECCMPSTNCONFIGN API_PRODSPECCMPSTNCONFIGN V2 C2 C1

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProdSpecComponentInternalID ProdSpecComponentInternalID
KEY Language Language
ProdSpecComponentDescription ProdSpecComponentDescription
_ProdSpecComponent _ProdSpecComponent
@AbapCatalog.sqlViewName: 'APRODSPECOMPDESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER

@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@EndUserText.label: 'Description of a Product Spec Component'

define view A_ProdSpecComponentDescription
  with parameters
    @Semantics.businessDate.at: true
    @Consumption.hidden: true
    P_KeyDate : sydate
  as select from I_ProdSpecComponentDescription( P_KeyDate: $parameters.P_KeyDate )
  association [1..1] to A_ProdSpecComponent as _ProdSpecComponent on _ProdSpecComponent.ProdSpecComponentInternalID = $projection.ProdSpecComponentInternalID
{
  key ProdSpecComponentInternalID,
  key Language,
      ProdSpecComponentDescription,

      _ProdSpecComponent
}