I_AcctgDocumentPostingStatusVH
VH for posting state of an acc. doc.
I_AcctgDocumentPostingStatusVH is a Basic CDS View that provides data about "VH for posting state of an acc. doc." in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field AccountingDocumentPostgStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | l | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACDOCPOSTSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | AccountingDocumentPostgStatus | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | VH for posting state of an acc. doc. | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccountingDocumentPostgStatus | |||
| AcctgDocumentPostingStatusName |
@AbapCatalog: {
sqlViewName: 'IACDOCPOSTSTAT',
compiler.compareFilter: true,
preserveKey: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #VALUE_HELP,
representativeKey: 'AccountingDocumentPostgStatus',
usageType: { dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #M
},
resultSet.sizeCategory:#XS
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'VH for posting state of an acc. doc.'
define view I_AcctgDocumentPostingStatusVH
as select from dd07l as l
left outer to one join dd07t as t on t.domvalue_l = l.domvalue_l
and t.domname = l.domname
and t.ddlanguage = $session.system_language
{
@ObjectModel.text.element: ['AcctgDocumentPostingStatusName']
key cast(l.domvalue_l as fbv_posting_state) as AccountingDocumentPostgStatus,
cast(t.ddtext as fbv_posting_state_text) as AcctgDocumentPostingStatusName
}
where
l.domname = 'FBV_POSTING_STATE'
and l.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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