P_SDControllingObjectStatus1
P_SDControllingObjectStatus1 is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (jest, jsto) and exposes 5 fields with key fields objnr, stat.
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PSDCTRLGOSTS1 | view |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PSDCTRLGOSTS1'
define view P_SDControllingObjectStatus1
as select from jsto
inner join jest
on jsto.objnr = jest.objnr
{
key jsto.objnr,
key jest.stat,
jsto.stsma,
jsto.obtyp,
jest.inact
}
where (jsto.obtyp = 'VBK' or jsto.obtyp = 'VBP');
//and not jest.inact = 'X';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"JEST",
"JSTO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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