I_PPS_POAuthznProfileBasic
PPS Purchase Order Authorizatin Profile
I_PPS_POAuthznProfileBasic is a Basic CDS View that provides data about "PPS Purchase Order Authorizatin Profile" in SAP S/4HANA. It reads from 1 data source (ust12) and exposes 1 field.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ust12 | _Profile2Activities | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | PPS Purchase Order Authorizatin Profile | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| PPS_AuthorizationProfile | ust12 | auth |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'PPS Purchase Order Authorizatin Profile'
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #M,
dataClass: #CUSTOMIZING
}
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
define view entity I_PPS_POAuthznProfileBasic
as select from ust12 as _Profile2Activities
{
_Profile2Activities.auth as PPS_AuthorizationProfile //Authorization for creating or changing purchase orders
}
where
(
_Profile2Activities.objct = 'M_BEST_BSA'
or _Profile2Activities.objct = 'M_BEST_EKG'
or _Profile2Activities.objct = 'M_BEST_EKO'
or _Profile2Activities.objct = 'M_BEST_WRK'
)
and _Profile2Activities.field = 'ACTVT'
and(
_Profile2Activities.von <= '02'
or _Profile2Activities.von = '*'
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UST12"
],
"ASSOCIATED":
[],
"BASE":
[],
"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