P_RO_SAFTDocumentType
GL Entry Document Type for RO SAFT
P_RO_SAFTDocumentType is a Consumption CDS View that provides data about "GL Entry Document Type for RO SAFT" in SAP S/4HANA. It reads from 1 data source (I_JournalEntry) and exposes 4 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_JournalEntry | Header | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PROSAFTDOCTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | GL Entry Document Type for RO SAFT | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| StatryRptCategory | Log | StatryRptCategory | ||
| StatryRptgEntity | Log | StatryRptgEntity | ||
| StatryRptRunID | Log | StatryRptRunID | ||
| AccountingDocumentType | I_JournalEntry | AccountingDocumentType |
@AbapCatalog.sqlViewName: 'PROSAFTDOCTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@VDM.private:true
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'GL Entry Document Type for RO SAFT'
define view P_RO_SAFTDocumentType
as select distinct from I_StRpJournalEntryHeaderLog as Log
inner join I_JournalEntry as Header on Log.AccountingDocument = Header.AccountingDocument
and Log.CompanyCode = Header.CompanyCode
and Log.FiscalYear = Header.FiscalYear
{
@Consumption.filter.mandatory: true
Log.StatryRptCategory,
@Consumption.filter.mandatory: true
Log.StatryRptgEntity,
@Consumption.filter.mandatory: true
Log.StatryRptRunID,
Header.AccountingDocumentType
}
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