I_UtilsChargeTierTypeT
Utilities Charge/Price Type Text
I_UtilsChargeTierTypeT is a Basic CDS View that provides data about "Utilities Charge/Price Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field UtilsPriceTierType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEPSCHGTIERTYPT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Utilities Charge/Price Type Text | view | |
| ObjectModel.representativeKey | UtilsPriceTierType | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UtilsPriceTierType | domvalue_l | ||
| UtilsPriceTierTypeDescription | ddtext |
@AbapCatalog.sqlViewName: 'IEPSCHGTIERTYPT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Utilities Charge/Price Type Text'
@ObjectModel.representativeKey: 'UtilsPriceTierType'
define view I_UtilsChargeTierTypeT
as select from dd07t
{
key domvalue_l as UtilsPriceTierType,
@Semantics.text: true
ddtext as UtilsPriceTierTypeDescription
}
where
dd07t.domname = 'E_PREISART'
and dd07t.ddlanguage = $session.system_language
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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