C_Matlcfopcattexttemp

DDL: C_MATLCFOPCATTEXTTEMP SQL: CMATLCFOPCATTEXT Type: view CONSUMPTION

Material CFOP category Value Help

C_Matlcfopcattexttemp is a Consumption CDS View that provides data about "Material CFOP category Value Help" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields ProductCFOPCategory, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CMATLCFOPCATTEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey productcfopcategory view
EndUserText.label Material CFOP category Value Help view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProductCFOPCategory
KEY Language
Name
@AbapCatalog.sqlViewName: 'CMATLCFOPCATTEXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'productcfopcategory'

@EndUserText.label: 'Material CFOP category Value Help'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER


define view C_Matlcfopcattexttemp
  as select from dd07t
{

  key  cast(cast ( substring( domvalue_l, 1, 2 ) as abap.char( 2 ) ) as productcfopcategory) as ProductCFOPCategory,

       @Semantics.language:true
  key  cast( ddlanguage as spras )                                                           as Language,
       @Semantics.text: true
       cast ( substring ( ddtext, 1, 60 ) as val_text )                                      as Name
}
where
  domname = 'J_1BINDUS3'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/