P_RSHOperationsHasErrorVH
Does the operation has error Value help
P_RSHOperationsHasErrorVH is a Consumption CDS View that provides data about "Does the operation has error Value help" in SAP S/4HANA. It reads from 1 data source (I_RSHGetDomainText) and exposes 2 fields with key field HasError.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RSHGetDomainText | I_RSHGetDomainText | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PRSHHASERRORVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Does the operation has error Value help | view | |
| VDM.private | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | HasError | |||
| HasErrorDescription |
@AbapCatalog.sqlViewName: 'PRSHHASERRORVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Does the operation has error Value help'
@VDM.private: true
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
/*
CONTRACT**********************************************************************************************************************
Specification: This view provides the values for haserror field
This field indicates if teh operation has any error/could be dispatched or not
Requires: n/a
Ensures: that only the texts for does the operation has Error are returned in the session language
Owners: SY
Contributors: SY
Unit Test required Y/N: No
Additional comments None
END OF CONTRACT***************************************************************************************************************
*/
define view P_RSHOperationsHasErrorVH
as select from I_RSHGetDomainText
{
//Processing status key
@UI.hidden: true
key cast (I_RSHGetDomainText.DomainValue as rsh_eam_haserror ) as HasError,
//Processing Status text
cast(I_RSHGetDomainText.DomainText as rsh_eam_haserror_text preserving type ) as HasErrorDescription
}where I_RSHGetDomainText.DomainValueName = 'RSH_EAM_HASERROR'
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