I_PrepaymentAgrmtPostingStatus
Prepayment Aggrement Posting Status
I_PrepaymentAgrmtPostingStatus is a Basic CDS View that provides data about "Prepayment Aggrement Posting Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 6 fields with key fields SystemStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatusText | I_SystemStatusText | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMGAGRMPSSTS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Prepayment Aggrement Posting Status | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | Status | |
| KEY | Language | Language | ||
| SystemStatusName | SystemStatusName | Status Description | ||
| SystemStatusShortName | SystemStatusShortName | |||
| _Language | _Language | |||
| _SystemStatus | _SystemStatus |
@AbapCatalog.sqlViewName: 'IPPMGAGRMPSSTS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Prepayment Aggrement Posting Status'
@VDM.viewType : #BASIC
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm : #SESSION_VARIABLE
define view I_PrepaymentAgrmtPostingStatus as select from I_SystemStatusText {
@Search.defaultSearchElement: true
@Search.ranking: #MEDIUM
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.element: ['SystemStatusName']
@EndUserText.label: 'Status'
key SystemStatus,
@UI.hidden: true
key Language,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
@EndUserText.label: 'Status Description'
SystemStatusName,
@UI.hidden: true
SystemStatusShortName,
@UI.hidden: true
@Consumption.filter.hidden: true
_Language,
@UI.hidden: true
@Consumption.filter.hidden: true
_SystemStatus
}
where (SystemStatus = 'IPP06'
or SystemStatus = 'IPP07'
or SystemStatus = 'IPP09'
or SystemStatus = 'IPP11'
or SystemStatus = 'IPP13'
or SystemStatus = 'IPP10')
and Language = $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