I_DerivativeContrSpec

DDL: I_DERIVATIVECONTRSPEC SQL: IDCSPEC Type: view BASIC Package: LOG_CMM_CDS

Derivative Contract Specification

I_DerivativeContrSpec (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Cross Applications

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. Part of development package LOG_CMM_CDS.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentLO-CMM-BF
CapabilitiesAnalytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

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 Derivative Contract Specification ID
DerivativeContractSpecCategory derivativetype Derivative Category
_DCSCategory _DCSCategory
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_DerivativeContrSpec.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IDCSPEC

CREATE VIEW I_DerivativeContrSpec AS
SELECT
  dcsid AS DerivativeContrSpecification,
  derivativetype AS DerivativeContractSpecCategory
FROM tbac_dcs
LEFT OUTER JOIN I_DerivativeContractSpecText AS _Text ON DerivativeContrSpecification = _Text.DerivativeContrSpecification  -- association [0..*]
LEFT OUTER JOIN I_DCSCategory AS _DCSCategory ON DerivativeContractSpecCategory = _DCSCategory.DerivativeContractSpecCategory  -- association [0..1]
;