I_PostingPeriodStatusText
Text of Posting Period Status
I_PostingPeriodStatusText is a Basic CDS View that provides data about "Text of Posting Period Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field PostingPeriodStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPOPERSTSTXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | Text of Posting Period Status | view | |
| ObjectModel.representativeKey | PostingPeriodStatus | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PostingPeriodStatus | |||
| StatusName |
@AbapCatalog.sqlViewName: 'IPOPERSTSTXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@EndUserText.label: 'Text of Posting Period Status'
@ObjectModel.representativeKey: 'PostingPeriodStatus'
@VDM.viewType: #BASIC
define view I_PostingPeriodStatusText
as select from dd07t
// association [0..1] to I_Language as _Language on $projection.language = _Language.Language
{
@ObjectModel.text.element: [ 'StatusName' ]
@UI.textArrangement: #TEXT_ONLY
key cast(domvalue_l as postingperiodstatus) as PostingPeriodStatus,
// @ObjectModel.foreignKey.association: '_Language'
// @Semantics.language: true
// key cast( ddlanguage as spras ) as Language,
@Semantics.text: true
cast(ddtext as postingperiodstatustext) as StatusName
// _Language
}
where
domname = 'POSTINGPERIODSTATUS'
and as4local = 'A'
and ddlanguage = $session.system_language;
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