I_AROObjectsHeaderData
AROObjectsHeaderData
I_AROObjectsHeaderData is a Basic CDS View that provides data about "AROObjectsHeaderData" in SAP S/4HANA. It reads from 1 data source (aro_objects) and exposes 6 fields with key fields CompanyCode, AROObjectType, AROObjectNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| aro_objects | aro_objects | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IAROOBJHDR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | AROObjectsHeaderData | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | bukrs | ||
| KEY | AROObjectType | aro_objtype | ||
| KEY | AROObjectNumber | aro_objnumber | ||
| AROObjectCreatedByUser | aro_resperson | |||
| AROObjectReferenceKey | ref_key | |||
| AROSubObjReferenceKey | ref_subkey |
@AbapCatalog.sqlViewName: 'IAROOBJHDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MASTER
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'AROObjectsHeaderData'
define view I_AROObjectsHeaderData
as select from aro_objects
{
key bukrs as CompanyCode,
key aro_objtype as AROObjectType,
key aro_objnumber as AROObjectNumber,
aro_resperson as AROObjectCreatedByUser,
ref_key as AROObjectReferenceKey,
ref_subkey as AROSubObjReferenceKey
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"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