I_DerivativeContrSpec
Derivative Contract Specification
I_DerivativeContrSpec is a Basic CDS View (Dimension) that provides data about "Derivative Contract Specification" in SAP S/4HANA. It reads from 1 data source (tbac_dcs) and exposes 4 fields with key field DerivativeContrSpecification. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tbac_dcs | tbac_dcs | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_DerivativeContractSpecText | _Text | $projection.DerivativeContrSpecification = _Text.DerivativeContrSpecification |
| [0..1] | I_DCSCategory | _DCSCategory | $projection.DerivativeContractSpecCategory = _DCSCategory.DerivativeContractSpecCategory |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Derivative Contract Specification | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IDCSPEC | view | |
| ObjectModel.representativeKey | DerivativeContrSpecification | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DerivativeContrSpecification | dcsid | ||
| DerivativeContractSpecCategory | derivativetype | |||
| _DCSCategory | _DCSCategory | |||
| _Text | _Text |
@EndUserText.label: 'Derivative Contract Specification'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or #CHECK
@AbapCatalog.sqlViewName: 'IDCSPEC'
@ObjectModel.representativeKey: 'DerivativeContrSpecification'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions:true
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION]
define view I_DerivativeContrSpec
as select from tbac_dcs
association [0..*] to I_DerivativeContractSpecText as _Text
on $projection.DerivativeContrSpecification = _Text.DerivativeContrSpecification
association [0..1] to I_DCSCategory as _DCSCategory
on $projection.DerivativeContractSpecCategory = _DCSCategory.DerivativeContractSpecCategory
{
@ObjectModel.text.association: '_Text'
key dcsid as DerivativeContrSpecification,
derivativetype as DerivativeContractSpecCategory,
// @Semantics.url
// dcs_url as DerivativeContractSpecURL,
_DCSCategory,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TBAC_DCS"
],
"ASSOCIATED":
[
"I_DCSCATEGORY",
"I_DERIVATIVECONTRACTSPECTEXT"
],
"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