P_AccrEngineObjTypeParamField
P_AccrEngineObjTypeParamField is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (dd03l, tacecomp) and exposes 3 fields with key fields AccrualEngineAccrualObjectType, FieldName.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PACEAOBJTYPEPF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccrualEngineAccrualObjectType | tacecomp | comp | |
| KEY | FieldName | dd03l | fieldname | |
| IsCloudSystem | R_CloudPackage | IsCloudSystem |
@AbapCatalog: {
sqlViewName: 'PACEAOBJTYPEPF',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
private: true,
viewType: #BASIC
}
define view P_AccrEngineObjTypeParamField
as select from dd03l
inner join tacecomp on dd03l.tabname = tacecomp.param_fields
left outer to one join R_CloudPackage on R_CloudPackage.IsCloudSystem = 'X'
{
key tacecomp.comp as AccrualEngineAccrualObjectType,
key dd03l.fieldname as FieldName,
R_CloudPackage.IsCloudSystem
}
where
tacecomp.s4ace_used = 'X'
and dd03l.fieldname <> '.INCLUDE'
and(
$projection.iscloudsystem is null // get everything for OP
or(
$projection.iscloudsystem = 'X'
and tacecomp.available_in_cloud = 'X' // get Cloud only for Cloud
)
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"R_CLOUDPACKAGE",
"DD03L",
"TACECOMP"
],
"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