P_WorkViewAssgmtPrptyRootType
Work perspective assignment property root type
P_WorkViewAssgmtPrptyRootType is a Consumption CDS View that provides data about "Work perspective assignment property root type" in SAP S/4HANA. It reads from 1 data source (I_WorkViewAssgmt) and exposes 9 fields with key fields WorkView, WorkViewAssgmtUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_WorkViewAssgmt | I_WorkViewAssgmt | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PWVASSGMTPRPTY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view | |
| EndUserText.label | Work perspective assignment property root type | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkView | WorkView | ||
| KEY | WorkViewAssgmtUUID | WorkViewAssgmtUUID | ||
| WorkViewUUID | WorkViewUUID | |||
| ComplianceRequirement | ComplianceRequirement | |||
| WorkViewComposition | WorkViewComposition | |||
| WorkViewDataType | WorkViewDataType | |||
| WorkViewGroupUUID | WorkViewGroupUUID | |||
| _WorkView | _WorkView | |||
| _WorkViewGroup | _WorkViewGroup |
@AbapCatalog:
{
sqlViewName: 'PWVASSGMTPRPTY',
compiler.compareFilter: true,
preserveKey:true
}
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@VDM: {
private: true
}
@EndUserText.label: 'Work perspective assignment property root type'
define view P_WorkViewAssgmtPrptyRootType
as select from I_WorkViewAssgmt
{
key WorkView,
key WorkViewAssgmtUUID,
WorkViewUUID,
ComplianceRequirement,
WorkViewComposition,
-- translate shortened fix values to correct ones
cast( case WorkViewProperty
when 'EHFNDD_PHY' then 'EHFNDD_PHYSCHEM'
when 'EHFNDD_ECT' then 'EHFNDD_ECTX'
else WorkViewProperty
end as ehfnd_prop_property_root ) as WorkViewProperty,
WorkViewDataType,
WorkViewGroupUUID,
/* Associations */
_WorkView,
_WorkViewGroup
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_WORKVIEWASSGMT"
],
"ASSOCIATED":
[
"I_WORKVIEW",
"I_WORKVIEWGROUP"
],
"BASE":
[
"I_WORKVIEWASSGMT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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