A_ProdSpecType

DDL: A_PRODSPECTYPE SQL: APRODSPECTYP Type: view CONSUMPTION

Product Specification Type

A_ProdSpecType is a Consumption CDS View that provides data about "Product Specification Type" in SAP S/4HANA. It reads from 1 data source (I_ProdSpecType) and exposes 3 fields with key field ProdSpecType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProdSpecType I_ProdSpecType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_ProdSpecTypeText _ProdSpecTypeText $projection.ProdSpecType = _ProdSpecTypeText.ProdSpecType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName APRODSPECTYP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ProdSpecType view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
OData.entityType.name ProdSpecType_Type view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
EndUserText.label Product Specification Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProdSpecType
ProdSpecTypeDescription
_ProdSpecTypeText _ProdSpecTypeText
@AbapCatalog.sqlViewName: 'APRODSPECTYP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true

@AccessControl.authorizationCheck: #MANDATORY

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

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

@OData.entityType.name: 'ProdSpecType_Type'

@Search.searchable: true

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

@EndUserText.label: 'Product Specification Type'
define view A_ProdSpecType as select from I_ProdSpecType
  association [0..*] to A_ProdSpecTypeText as _ProdSpecTypeText
    on $projection.ProdSpecType = _ProdSpecTypeText.ProdSpecType
{
  @ObjectModel.text.element: ['ProdSpecType']
  @Search.defaultSearchElement: true
  @Search.ranking: #HIGH
  key cast( SpecificationType as /plmb/spc_prod_spec_type preserving type ) as ProdSpecType,

  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #LOW
  @Semantics.text: true
  _ProdSpecTypeText[1:Language=$session.system_language].ProdSpecTypeDescription,

  /* Associations */
  _ProdSpecTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_PRODSPECTYPETEXT",
"I_PRODSPECTYPE"
],
"ASSOCIATED":
[
"A_PRODSPECTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/