I_DERIVATIVECONTRACTSPECTEXT

CDS View

Derivative Contract Specification - Text

I_DERIVATIVECONTRACTSPECTEXT is a CDS View in S/4HANA. Derivative Contract Specification - Text. It contains 1 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
C_CmmdtyOrdFillPacketAssgdFill view left_outer CONSUMPTION Fill Packet Assigned Fills Consump. View
I_CmmdtyDrvtvContrMicPhys view left_outer BASIC View for DCS, MIC and Commodity
I_CmmdtyIntCounterpartySubAcct view left_outer BASIC Subaccounts assgn. to int. Counterparty

Fields (1)

KeyField CDS FieldsUsed in Views
DerivativeContrSpecName DerivativeContrSpecName 3
@EndUserText.label: 'Derivative Contract Specification - Text'
//@Analytics.dataCategory: #TEXT

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or #CHECK

@AbapCatalog.sqlViewName: 'IDCST'
@ObjectModel.representativeKey: 'DerivativeContrSpecification'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT]

define view I_DerivativeContractSpecText
   as select from tbac_dcst

    association [0..1] to I_Language as _Language  on $projection.Language = _Language.Language
    association [1..1] to I_DerivativeContrSpec  as _DerivativeContrSpecification
      on $projection.DerivativeContrSpecification = _DerivativeContrSpecification.DerivativeContrSpecification

{

   key dcsid as DerivativeContrSpecification,
   @Semantics.language: true
   key langu as Language,
   @Semantics.text: true
   text as DerivativeContrSpecName,
   _DerivativeContrSpecification,
   _Language
  
}