P_StatusInfluenceOnBusTran1
P_StatusInfluenceOnBusTran1 is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (jest, jest) and exposes 5 fields with key fields StatusObject, BusTransactionType, BusTransactionType.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PStatInfluOnBT1 | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'PStatInfluOnBT1'
//@EndUserText.label: 'P_StatusInfluenceOnBusTran1'
//@Analytics : { dataExtraction.enabled : true}
@VDM.viewType : #BASIC
@VDM.private : true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_StatusInfluenceOnBusTran1 as
select from jest
join tj07 on tj07.obtyp = ' ' and
jest.stat = tj07.istat
{
key jest.objnr as StatusObject,
key tj07.vrgng as BusTransactionType,
max(modkz) as BusTransacTypePermission
}
where stat like 'I%' and inact = ' '
group by jest.objnr,
tj07.vrgng
union all
select from jest
join jsto on jsto.objnr = jest.objnr
join tj31 on jsto.stsma = tj31.stsma and
jest.stat = tj31.estat
{
key jest.objnr as StatusObject,
key tj31.vrgng as BusTransactionType,
max(modkz) as BusTransacTypePermission
}
where stat like 'E%' and inact = ' '
group by jest.objnr,
tj31.vrgng
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"JEST",
"JSTO",
"TJ07",
"TJ31"
],
"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