I_GenericPriorityData

DDL: I_GENERICPRIORITYDATA SQL: IGENERICPRIODATA Type: view COMPOSITE

Generic Priority Data

I_GenericPriorityData (Composite)

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

NotificationPriorityType · Asset Management

I_GenericPriorityData is a Composite CDS View (Dimension) that provides data about "Generic Priority Data" in SAP S/4HANA. It reads from 1 data source (I_GenericPriority) and exposes 11 fields with key fields GenericPriorityType, PriorityCode.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which priority type contains the priority? Which shift factor needs to be applied in the calculation of the start date? Which unit needs to be applied for the shift factor in the calculation of the start date? Which shift factor needs to be applied in the calculation of the end date? Which unit needs to be applied for the shift factor in the calculation of the end date? What is the color code for priority? Note This CDS view is modeled for usage as a DataSource in Business Warehouse. We recommend that you only use it for this purpose.

Prerequisites
You do not need any authorization to use it, since it is based on a customizing table.

Structure
Business Objects This view is built on the generic priority business object. Main CDS parameters and filters This CDS view does not have any input parameters. Measures and attributes Some important measures and attributes are: Priority type Shift factor for start date calculation Unit of shift factor for start date calculation Shift factor for end date calculation Unit of shift factor for end date calculation

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC-MN
CapabilitiesData Source for Data Extraction
PackageAsset Management for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which priority type contains the priority?</p></li> <li><p>Which shift factor needs to be applied in the calculation of the start date?</p></li> <li><p>Which unit needs to be applied for the shift factor in the calculation of the start date?</p></li> <li><p>Which shift factor needs to be applied in the calculation of the end date?</p></li> <li><p>Which unit needs to be applied for the shift factor in the calculation of the end date?</p></li> <li><p>What is the color code for priority?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_GenericPriority I_GenericPriority from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IGENERICPRIODATA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Generic Priority Data view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PriorityCode view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name NotificationPriorityType view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY GenericPriorityType GenericPriorityType Priority Type
KEY PriorityCode PriorityCode Priority
GenericStartDateShiftFactor GenericStartDateShiftFactor Relative Start Date for Task/Notification in Days
GenericStrtDateShiftFactorUnit GenericStrtDateShiftFactorUnit Relative Start Date Unit
GenericEndDateShiftFactor GenericEndDateShiftFactor Relative End Date for Task/Notification in Days
GenericEndDateShiftFactorUnit GenericEndDateShiftFactorUnit Relative End Date Unit
GenericPriorityColorCode GenericPriorityColorCode Priority Color Code
_GenericPriorityType _GenericPriorityType
_GenericPriorityText _GenericPriorityText
_GenericStrtDateShiftFctrUnit _GenericStrtDateShiftFctrUnit
_GenericEndDateShiftFactorUnit _GenericEndDateShiftFactorUnit

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_GenericPriorityData.
-- 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: IGENERICPRIODATA

CREATE VIEW I_GenericPriorityData AS
SELECT
  GenericPriorityType,
  PriorityCode,
  GenericStartDateShiftFactor,
  GenericStrtDateShiftFactorUnit,
  GenericEndDateShiftFactor,
  GenericEndDateShiftFactorUnit,
  GenericPriorityColorCode
FROM I_GenericPriority
;