I_CmmdtySubAcctStatusText
Commodity Subaccount Status Text
I_CmmdtySubAcctStatusText is a Basic CDS View that provides data about "Commodity Subaccount Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields CmmdtySubAccountStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICMMDTYSASTSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CmmdtySubAccountStatus | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Commodity Subaccount Status Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CmmdtySubAccountStatus | |||
| KEY | Language | ddlanguage | ||
| CmmdtySubAccountStatusText | ddtext |
@AbapCatalog.sqlViewName: 'ICMMDTYSASTSTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CmmdtySubAccountStatus'
@ObjectModel.usageType:{ serviceQuality: #B, sizeCategory : #S, dataClass: #META}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Commodity Subaccount Status Text'
@Metadata.ignorePropagatedAnnotations:true
define view I_CmmdtySubAcctStatusText
as select from dd07t
{
key substring(domvalue_l, 1, 2) as CmmdtySubAccountStatus,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as CmmdtySubAccountStatusText
}
where
domname = 'CMMFSA_SUBACCOUNTSTATUS'
and dd07t.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