DHADM_MON_AccessPlanOvwBase
Access Plan Calculation Overview Base
DHADM_MON_AccessPlanOvwBase is a CDS View that provides data about "Access Plan Calculation Overview Base" in SAP S/4HANA. It reads from 1 data source (dhcdc_rtobjcalc) and exposes 8 fields with key fields SubscriberId, SubscriberType, Objtype, Objname.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dhcdc_rtobjcalc | objinfo | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Access Plan Calculation Overview Base | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SubscriberId | dhcdc_rtobjcalc | subscriber_id | |
| KEY | SubscriberType | subsreg | type | |
| KEY | Objtype | dhcdc_rtobjcalc | objtype | |
| KEY | Objname | dhcdc_rtobjcalc | objname | |
| charXthenBelsePendasPushPull | ||||
| ProcessOption | osubsreg | process_option | ||
| TransferStatus | status | TransferStatus | ||
| CalculationStatus | status | CalculationStatus |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Access Plan Calculation Overview Base'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity DHADM_MON_AccessPlanOvwBase
as select from dhcdc_rtobjcalc as objinfo
join dhcdc_subsreg as subsreg on objinfo.subscriber_id = subsreg.id
join dhcdc_objsubsreg as osubsreg on objinfo.subscriber_id = osubsreg.subscriber_id
and objinfo.objname = osubsreg.objname
and objinfo.objtype = osubsreg.objtype
join DHADM_MON_AcsPlanSummaryStatus as status on status.acd_id = objinfo.acd_id
{
key objinfo.subscriber_id as SubscriberId,
key subsreg.type as SubscriberType,
key objinfo.objtype as Objtype,
key objinfo.objname as Objname,
case when subsreg.type = 'ODP' or subsreg.use_data_buffer = abap.char'X'
then 'B'
else 'P'
end as PushPull,
osubsreg.process_option as ProcessOption,
status.TransferStatus as TransferStatus,
status.CalculationStatus as CalculationStatus
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DHADM_MON_ACSPLANSUMMARYSTATUS",
"DHCDC_OBJSUBSREG",
"DHCDC_RTOBJCALC",
"DHCDC_SUBSREG"
],
"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