A_BOMItemCategory

DDL: A_BOMITEMCATEGORY SQL: ABOMITEMCATEGORY Type: view BASIC

Item Category

A_BOMItemCategory is a Basic CDS View that provides data about "Item Category" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterialItemCategory) and exposes 4 fields with key field BillOfMaterialItemCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterialItemCategory I_BillOfMaterialItemCategory from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_BOMItemCategoryText _BOMItemCategoryText $projection.BillOfMaterialItemCategory = _BOMItemCategoryText.BillOfMaterialItemCategory and _BOMItemCategoryText.Language = $session.system_language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ABOMITEMCATEGORY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED 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 view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterialItemCategory BillOfMaterialItemCategory
FixedItemCategory FixedItemCategory
BillOfMaterialItemCategoryDesc _BOMItemCategoryText BillOfMaterialItemCategoryDesc
_BOMItemCategoryText _BOMItemCategoryText
@AbapCatalog.sqlViewName: 'ABOMITEMCATEGORY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@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'
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_BOMItemCategory as 
    select from I_BillOfMaterialItemCategory 
    association [0..1] to A_BOMItemCategoryText as _BOMItemCategoryText on $projection.BillOfMaterialItemCategory = _BOMItemCategoryText.BillOfMaterialItemCategory
                                                                 and _BOMItemCategoryText.Language = $session.system_language
{
    
    key BillOfMaterialItemCategory,
    FixedItemCategory,
    _BOMItemCategoryText.BillOfMaterialItemCategoryDesc,
    _BOMItemCategoryText
    
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_BOMITEMCATEGORYTEXT",
"I_BILLOFMATERIALITEMCATEGORY"
],
"ASSOCIATED":
[
"A_BOMITEMCATEGORYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/