I_ProjMatBomCatName

DDL: I_PROJMATBOMCATNAME SQL: IPROJBOMCATNAME Type: view BASIC

Project Material Component BOM Category Name

I_ProjMatBomCatName is a Basic CDS View that provides data about "Project Material Component BOM Category Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, BillOfMaterialCategory, BillOfMaterialCategoryDesc. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPROJBOMCATNAME view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Project Material Component BOM Category Name view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY BillOfMaterialCategory dd07t domvalue_l
KEY BillOfMaterialCategoryDesc dd07t ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'IPROJBOMCATNAME'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Project Material Component BOM Category Name'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API

define view I_ProjMatBomCatName
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

      @Semantics.language : true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage as Language,
  key dd07t.domvalue_l as BillOfMaterialCategory,
      @Semantics.text: true
  key dd07t.ddtext     as BillOfMaterialCategoryDesc,
      _Language

}
where
      dd07t.as4local = 'A'
  and dd07t.domname  = 'STLTY'; 

 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/