A_BOMItemCategoryText

DDL: A_BOMITEMCATEGORYTEXT SQL: ABOMITEMCATTEXT Type: view BASIC

Item Category Description

A_BOMItemCategoryText is a Basic CDS View that provides data about "Item Category Description" in SAP S/4HANA. It reads from 1 data source (I_BomItemCategoryText) and exposes 3 fields with key fields Language, BillOfMaterialItemCategory.

Data Sources (1)

SourceAliasJoin Type
I_BomItemCategoryText I_BomItemCategoryText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ABOMITEMCATTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BillOfMaterialItemCategory view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Item Category Description view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY BillOfMaterialItemCategory BillOfMaterialItemCategory
BillOfMaterialItemCategoryDesc BillOfMaterialItemCategoryDesc
@AbapCatalog.sqlViewName: 'ABOMITEMCATTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'BillOfMaterialItemCategory'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Item Category Description'
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_BOMItemCategoryText as 
    select from I_BomItemCategoryText {
    
    @Semantics.language: true
  key  Language,

  key  BillOfMaterialItemCategory,
  
      @Semantics.text: true
       BillOfMaterialItemCategoryDesc
    
}