P_HU_AuditReportSearchHelp
HU helper view for Audit Report
P_HU_AuditReportSearchHelp is a Consumption CDS View that provides data about "HU helper view for Audit Report" in SAP S/4HANA. It reads from 2 data sources (I_JournalEntry, I_JournalEntry) and exposes 6 fields. Part of development package GLO_FIN_IS_HU.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_JournalEntry | I_JournalEntry | from |
| I_JournalEntry | I_JournalEntry | union_all |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CompanyCode | CompanyCode | |||
| OriginalReferenceDocument | ||||
| DocumentDate | DocumentDate | |||
| OriginalReferenceDocument | AccountingDocument | |||
| DocumentDate | DocumentDate | |||
| PostingDate | PostingDate |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #CONSUMPTION
@VDM.private: true
define view entity P_HU_AuditReportSearchHelp as select from I_JournalEntry
{
CompanyCode,
cast (left(OriginalReferenceDocument,10) as idhu_invoice_id) as OriginalReferenceDocument,
DocumentDate,
PostingDate
}
where OriginalReferenceDocument is not initial and ( ReferenceDocumentType = 'RMRP' or ReferenceDocumentType = 'VBRK')
union all select from I_JournalEntry
{
CompanyCode,
AccountingDocument as OriginalReferenceDocument,
DocumentDate,
PostingDate
}
where OriginalReferenceDocument is not initial and TransactionCode = 'MRKO'
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