AROVD_F4_REFKEY
Value help view: REF_KEY for ARO_OBJECTS
AROVD_F4_REFKEY is a CDS View that provides data about "Value help view: REF_KEY for ARO_OBJECTS" in SAP S/4HANA. It reads from 2 data sources (acesobj, aro_objects) and exposes 5 fields with key fields comp, bukrs, aro_objtype.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| acesobj | acesobj | left_outer |
| aro_objects | aro_objects | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_ARO_REFKEY_F4 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Value help view: REF_KEY for ARO_OBJECTS | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| AbapCatalog.preserveKey | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | comp | acesobj | comp | |
| KEY | bukrs | aro_objects | bukrs | |
| KEY | aro_objtype | aro_objects | aro_objtype | |
| text | aro_objects | text | ||
| ref_key | acesobj | ref_key |
@AbapCatalog.sqlViewName: 'V_ARO_REFKEY_F4'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Value help view: REF_KEY for ARO_OBJECTS'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@AbapCatalog.preserveKey:true
define view AROVD_F4_REFKEY
as select from aro_objects
left outer join acesobj on acesobj.comp = 'ARO'
and acesobj.logsys = '' //central finance not enabled for ARO: table aro_objects does not have field LOGSYS
and acesobj.bukrs = aro_objects.bukrs
and acesobj.ref_key = aro_objects.ref_key
{
key acesobj.comp,
key aro_objects.bukrs,
key aro_objects.aro_objtype,
key aro_objects.aro_objnumber,
aro_objects.text,
aro_objects.aro_resperson,
acesobj.ref_key
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ACESOBJ",
"ARO_OBJECTS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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