C_MngJrnlEntryWorkflowStatus
Journal Entry Workflow Status
C_MngJrnlEntryWorkflowStatus is a Consumption CDS View that provides data about "Journal Entry Workflow Status" in SAP S/4HANA. It reads from 1 data source (R_MngJrnlEntryWorkflowStatus) and exposes 5 fields with key fields CompanyCode, FiscalYear, AccountingDocument. It has 1 association to related views. It is exposed through 1 OData service (UI_JOURNALENTRY_MANAGE). It is used in 2 Fiori applications: Manage Journal Entries - New Version, Display Journal Entries. Part of development package ODATA_MANAGE_JOURNAL_ENTRY_V2.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_MngJrnlEntryWorkflowStatus | _WorkFlowStatus | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MngJrnlEntrDocWrkflwStsText | _StatusName | $projection.AcctgDocumentWorkflowStatus = _StatusName.AcctgDocumentWorkflowStatus and _StatusName.Language = $session.system_language |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Journal Entry Workflow Status | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_JOURNALENTRY_MANAGE | UI_JOURNALENTRY_MANAGE | V2 | C1 | NOT_RELEASED |
Fiori Apps (2)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F0717A | Manage Journal Entries - New Version | Transactional | With this app you can analyze journal entries, create reversals or make adjustments. |
| F7697 | Display Journal Entries | Transactional | With this app you can display and analyze journal entries. |
Manage Journal Entries - New Version
Business Role: General Ledger Accountant
With this app, you can manage and analyze journal entries. You can find, filter, sort, and group journal entries according to the requirements of your business. The app is your entry point for many important journal entry management functions, allowing you to create, copy, verify, edit, and reverse entries. Additionally, you can initiate correspondence, analyze change and reversal logs, and display entries in t-account views or document flows. You navigate to the details of individual journal entries to display more information, such as transaction data, line items, associated journal entries, and other related documents.
Display Journal Entries
Business Role: General Ledger Accountant
With this app, you can view and analyze journal entries. You can find, filter, sort, and group journal entries according to the requirements of your business. Additionally, you can analyze change logs and display entries in t-account views or document flows. You navigate to the details of individual journal entries to display more information, such as transaction data, line items, associated journal entries, and other related documents.
Key Features: Display journal entries and their line items Access a detail screen for each journal entry Display parked documents View change logs See related documents, such as purchase orders or incoming invoices Display amounts in different ledgers and currencies Display intercompany journal entries See an overview of the customer and supplier accounting document data View notes and attachments added to journal entries Display predictive journal entries if you use predictive accounting
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | R_MngJrnlEntryWorkflowStatus | CompanyCode | |
| KEY | FiscalYear | R_MngJrnlEntryWorkflowStatus | FiscalYear | |
| KEY | AccountingDocument | R_MngJrnlEntryWorkflowStatus | AccountingDocument | |
| AcctgDocumentWorkflowStatus | R_MngJrnlEntryWorkflowStatus | AcctgDocumentWorkflowStatus | ||
| StatusName | _StatusName | StatusName |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Journal Entry Workflow Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XXL,
dataClass: #MIXED
}
@VDM: {
viewType: #CONSUMPTION
}
define view entity C_MngJrnlEntryWorkflowStatus
as select from R_MngJrnlEntryWorkflowStatus as _WorkFlowStatus
association [1..1] to I_MngJrnlEntrDocWrkflwStsText as _StatusName on $projection.AcctgDocumentWorkflowStatus = _StatusName.AcctgDocumentWorkflowStatus
and _StatusName.Language = $session.system_language
{
key _WorkFlowStatus.CompanyCode,
key _WorkFlowStatus.FiscalYear,
key _WorkFlowStatus.AccountingDocument,
_WorkFlowStatus.AcctgDocumentWorkflowStatus as AcctgDocumentWorkflowStatus,
@Semantics.text: true
_StatusName.StatusName
}
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