P_ClientBehavior
P_ClientBehavior is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_SAPClient).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | client | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCLNTBHVR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.private | true | view |
@AbapCatalog.sqlViewName: 'PCLNTBHVR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
}
@VDM.private: true
define view P_ClientBehavior as select from I_SAPClient as client
left outer to one join I_AuditRelevanceBehavior as trans on trans.mandt = client.sapclient
and trans.AuditRelevanceDataType = 'TRANSACTN'
left outer to one join I_AuditRelevanceBehavior as config on config.mandt = client.sapclient
and config.AuditRelevanceDataType = 'CONFIG'
{
case when ( trans.DataIsAuditRelevant = '' or config.DataIsAuditRelevant = '' )
and client.SAPClientRole = 'P'
then ''
when trans.DataIsAuditRelevant = 'X' and config.DataIsAuditRelevant = 'X'
then ''
else 'X'
end as DataIsAuditRelevant
}
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