I_MKT_ProdCatHierUsageText
Mktg: ProdCat Hierarchy Usage - Text
I_MKT_ProdCatHierUsageText is a Basic CDS View that provides data about "Mktg: ProdCat Hierarchy Usage - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, ProductCategoryHierarchyUsage. Part of development package CUAN_CDS_CONTACT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMKT_PRODHUSAGET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ProductCategoryHierarchyUsage | view | |
| EndUserText.label | Mktg: ProdCat Hierarchy Usage - Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ProductCategoryHierarchyUsage | |||
| ProdCategoryHierarchyUsageName | ddtext |
@AbapCatalog.sqlViewName: 'IMKT_PRODHUSAGET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'ProductCategoryHierarchyUsage'
@EndUserText.label: 'Mktg: ProdCat Hierarchy Usage - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
@Metadata.ignorePropagatedAnnotations
define view I_MKT_ProdCatHierUsageText as select from dd07t
//association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key cast( ddlanguage as spras preserving type ) as Language,
key cast( substring( domvalue_l, 1, 1 ) as cuan_prod_cat_hier_usage preserving type ) as ProductCategoryHierarchyUsage,
@Semantics.text: true
ddtext as ProdCategoryHierarchyUsageName
// _Language //Comment this association in order to hide it if this association causes issues in analytical consumption
}
where domname = 'CUAN_PROD_CAT_HIER_USAGE' and as4local = 'A'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA