A_ProdSpecComponentBaseUoM

DDL: A_PRODSPECCOMPONENTBASEUOM SQL: APRODSPECOMPUOM Type: view COMPOSITE Package: VDM_PLMB_SPC_API_OP

Base UoM for Specification Type

A_ProdSpecComponentBaseUoM is a Composite CDS View that provides data about "Base UoM for Specification Type" in SAP S/4HANA. It reads from 1 data source (I_ProdSpecComponentBaseUoM) and exposes 3 fields with key field ProdSpecComponentInternalID. 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_ProdSpecComponentBaseUoM I_ProdSpecComponentBaseUoM from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName APRODSPECOMPUOM 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.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
EndUserText.label Base UoM for Specification Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_PRODSPECCMPSTNCONFIGN API_PRODSPECCMPSTNCONFIGN V2 C2 C1

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProdSpecComponentInternalID ProdSpecComponentInternalID
ProdSpecCompBaseUnitOfMeasure ProdSpecCompBaseUnitOfMeasure
_ProdSpecComponent _ProdSpecComponent
@AbapCatalog.sqlViewName: 'APRODSPECOMPUOM'
@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.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Base UoM for Specification Type'

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

      _ProdSpecComponent
}