P_CalculatedOverdueDocCategory
Calculated Allowance document category
P_CalculatedOverdueDocCategory is a Composite CDS View that provides data about "Calculated Allowance document category" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 4 fields with key fields DocumentCategory, Language. Part of development package ODATA_DOUBTFUL_ACCTS_VALUATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCALOVERDUEDC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentCategory | DomainValue | ||
| KEY | Language | Language | ||
| DocumentCategoryText | DomainText | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'PCALOVERDUEDC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@VDM.private: true
@VDM.viewType: #COMPOSITE
define view P_CalculatedOverdueDocCategory
as select from I_DomainFixedValueText
{
@UI.hidden: true
@ObjectModel.text.element: 'DocumentCategoryText'
key DomainValue as DocumentCategory,
@UI.hidden: true
key Language,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
DomainText as DocumentCategoryText,
/* Associations */
_Language
}
where
SAPDataDictionaryDomain = 'FARP_OVRD_DOCUMENT_CATEGORY'
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