I_BPEMCasePriority

DDL: I_BPEMCASEPRIORITY SQL: IBPEMCASEPRIO Type: view BASIC

Klärungsfallpriorität

Clarification Case Priority

I_BPEMCasePriority (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Contract Accounting

I_BPEMCasePriority is a Basic CDS View (Dimension) that provides data about "Klärungsfallpriorität" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BPEMCasePriority. It has 1 association to related views. It is exposed through 1 OData service (UI_BPEMCASE). It is used in 1 Fiori application: Manage BPEM Clarification Cases.

SAP Help Documentation

CategoryBusiness Process Exception Management (BPEM)
Data CategoryDimension
Purpose
This CDS view retrieves BPEM clarification case priority data. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Not applicable.

Structure
Important Fields Important fields in this view include the following: Field Name Description BPEMCasePriority Case Priority

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessContract Accounting
Application ComponentFI-CA
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Search, Data Source in SQL Select, Data Provider for Value Help
PackageContract Accounting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BPEMCasePriorityText _Text $projection.BPEMCasePriority = _Text.BPEMCasePriority

Annotations (19)

NameValueLevelField
EndUserText.label Klärungsfallpriorität view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IBPEMCASEPRIO view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BPEMCasePriority view
AbapCatalog.compiler.compareFilter true view
Analytics.internalName #LOCAL view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_BPEMCASE UI_BPEMCASE V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F7256 Manage BPEM Clarification Cases Transactional

Manage BPEM Clarification Cases

Business Role: Operations Specialist (Utilities)

A new Fiori app enables you to display a list of BPEM (Business Process Exception Management) clarification cases in Utilities meter-to-cash processes, to access detailed information related to clarification cases, and apply actions.The app provides forward navigation to the transaction EMMAC3 ("Display Clarification Case"), where further detailed information and BPEM features are available.

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BPEMCasePriority Clarification Case Priority
DomainValue dd07l domvalue_l Values for Domains: Single Value/Lower Limit
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_BPEMCasePriority.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IBPEMCASEPRIO

CREATE VIEW I_BPEMCasePriority AS
SELECT
  cast( dd07l.domvalue_l as emma_cprio ) AS BPEMCasePriority,
  dd07l.domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_BPEMCasePriorityText AS _Text ON BPEMCasePriority = _Text.BPEMCasePriority  -- association [0..*]
;