C_ABOPSortAttributeVH
Value Help for BOP Sort Attributes
C_ABOPSortAttributeVH is a Consumption CDS View that provides data about "Value Help for BOP Sort Attributes" in SAP S/4HANA. It reads from 2 data sources (I_ProdAllocCharcCatalogPath, I_ProdAllocCharcCtlgPathRef) and exposes 5 fields with key field ABOPSortAttributeFldPathUUID. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ProdAllocCharcCatalogPath | I_ProdAllocCharcCatalogPath | from |
| I_ProdAllocCharcCtlgPathRef | I_ProdAllocCharcCtlgPathRef | left_outer |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | C_Prodalloccharcctlgpathdsp | _CharcCtlgPathDsp | $projection.ABOPSortAttributeFldPathIntID = _CharcCtlgPathDsp.ProdAllocCharcCtlgPathIntID |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | CABOPSORTATTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ABOPSortAttributeFldPathUUID | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| EndUserText.label | Value Help for BOP Sort Attributes | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABOPSortAttributeFldPathUUID | I_ProdAllocCharcCatalogPath | ProdAllocCharcCtlgPathUUID | |
| ABOPSortAttributeFldPathIntID | I_ProdAllocCharcCatalogPath | ProdAllocCharcCtlgPathIntID | ||
| ABOPSortAttribute | I_ProdAllocCharcCatalogPath | ProdAllocCharcCtlgCharc | ||
| ABAPDataElement | I_ProdAllocCharcCatalogPath | ABAPDataElement | ||
| _CharcCtlgPathDsp | _CharcCtlgPathDsp |
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'CABOPSORTATTVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
representativeKey: 'ABOPSortAttributeFldPathUUID',
dataCategory: #VALUE_HELP,
resultSet.sizeCategory: #XS,
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #META
}
}
@EndUserText.label: 'Value Help for BOP Sort Attributes'
define view C_ABOPSortAttributeVH
as select from I_ProdAllocCharcCatalogPath
left outer join I_ProdAllocCharcCtlgPathRef on I_ProdAllocCharcCatalogPath.ProdAllocCharcCtlgPathUUID = I_ProdAllocCharcCtlgPathRef.BaseCharcCatalogPathUUID
association [0..1] to C_Prodalloccharcctlgpathdsp as _CharcCtlgPathDsp on $projection.ABOPSortAttributeFldPathIntID = _CharcCtlgPathDsp.ProdAllocCharcCtlgPathIntID
{
// @ObjectModel.text.element: ['ProdAllocCharcCtlgPathDesc']
@ObjectModel.text.association: '_CharcCtlgPathDsp'
key I_ProdAllocCharcCatalogPath.ProdAllocCharcCtlgPathUUID as ABOPSortAttributeFldPathUUID,
I_ProdAllocCharcCatalogPath.ProdAllocCharcCtlgPathIntID as ABOPSortAttributeFldPathIntID,
I_ProdAllocCharcCatalogPath.ProdAllocCharcCtlgCharc as ABOPSortAttribute,
@Consumption.hidden: true
I_ProdAllocCharcCatalogPath.ABAPDataElement,
// @Semantics.text: true
// _Text.ProdAllocCharcCtlgPathDesc,
_CharcCtlgPathDsp
}
where
ProdAllocCharcCatalogUseType = '02' -- BOP
and ProdAllocCharcCatalogPathType = '02' -- only characteristics (no nodes/value groups)
and I_ProdAllocCharcCtlgPathRef.ProdAllocCharcCtlgPathUUID is null -- not used in a mixed catalog
and ProdAllocCharcCtlgPathIsHidden = '' -- not hidden
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODALLOCCHARCCATALOGPATH",
"I_PRODALLOCCHARCCTLGPATHREF"
],
"ASSOCIATED":
[
"C_PRODALLOCCHARCCTLGPATHDSP"
],
"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