I_DerivativeContrSpec

DDL: I_DERIVATIVECONTRSPEC SQL: IDCSPEC Type: view BASIC

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)

SourceAliasJoin Type
tbac_dcs tbac_dcs from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_DerivativeContractSpecText _Text $projection.DerivativeContrSpecification = _Text.DerivativeContrSpecification
[0..1] I_DCSCategory _DCSCategory $projection.DerivativeContractSpecCategory = _DCSCategory.DerivativeContractSpecCategory

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/