I_LEGALTRLINKEDOBJECTS

CDS View

Basic View for LCM LT Linked Objects

I_LEGALTRLINKEDOBJECTS is a CDS View in S/4HANA. Basic View for LCM LT Linked Objects. It contains 5 fields. 6 CDS views read from this table.

CDS Views using this table (6)

ViewTypeJoinVDMDescription
C_LegalTrLinkedObjects view from CONSUMPTION Legal Transaction Linked Objects ( Draft disabled )
I_LegalTrLinkedObjectsTP view from TRANSACTIONAL TP view for LCM LT Linked Objects
I_LegalTrLinkedObjectTrigger view from COMPOSITE Composite View for LCM LT Linked Object Trigger
I_LglCntntMIntegLinkdObj view from COMPOSITE LCM Integration Linked Object
I_LglTransLinkedObjectAPI01 view from BASIC Linked Objects of Legal Transaction
R_LegalTransLinkedObjectsTP view_entity from TRANSACTIONAL Legal Transaction Linked Objects

Fields (5)

KeyField CDS FieldsUsed in Views
KEY LegalTransactionLinkdObjUUID LegalTransactionLinkdObjUUID 1
LegalTransactionIsTriggerObj LegalTransactionIsTriggerObj 1
LegalTransactionUUID LegalTransactionUUID 1
LglCntntMLinkdObj LglCntntMLinkdObj 1
LglCntntMLinkdObjType LglCntntMLinkdObjType 1
@AbapCatalog.sqlViewName: 'ILEGALTRLINKOBJ'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true

@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType : #BASIC
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel: {
  representativeKey: 'LegalTransactionLinkdObjUUID',
  usageType.serviceQuality: #A,
  usageType.sizeCategory: #L,
  usageType.dataClass: #TRANSACTIONAL
}

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Basic View for LCM LT Linked Objects'


define view I_LegalTrLinkedObjects
  as select from lcm_lt_linkobj

  association [1..1] to I_LegalTransaction             as _LegalTransaction           on  $projection.LegalTransactionUUID = _LegalTransaction.LegalTransactionUUID

  // ESH associations

  association [0..1] to I_LCMLinkedObjectTypeText      as _LinkedObjectTypeText       on  $projection.LglCntntMLinkdObjType = _LinkedObjectTypeText.LglCntntMLinkdObjType
                                                                                      and _LinkedObjectTypeText.Language    = $session.system_language
  // Extension

  association [1..1] to E_LegalTransactionLinkedObject as _LegalTransLinkedObjectExtn on  $projection.LegalTransactionLinkdObjUUID = _LegalTransLinkedObjectExtn.LegalTransactionLinkdObjUUID
{
  key lcm_lt_linkobj.legaltransactionlinkdobjuuid  as LegalTransactionLinkdObjUUID,
      lcm_lt_linkobj.lglcntntmlinkdobjtype         as LglCntntMLinkdObjType,
      lcm_lt_linkobj.lglcntntmlinkdobj             as LglCntntMLinkdObj,
      lcm_lt_linkobj.legaltransactionuuid          as LegalTransactionUUID,
      lcm_lt_linkobj.legaltransactionmandatoryflag as LegalTransactionMandatoryFlag,
      lcm_lt_linkobj.legaltransactionistriggerobj  as LegalTransactionIsTriggerObj,
      lcm_lt_linkobj.lglcntntmisintegrelevant      as LglCntntMIsIntegRelevant,
      @Semantics.booleanIndicator: true
      lcm_lt_linkobj.lglcntntmisaddedbyintegvarbl  as LglCntntMIsAddedByIntegVarbl,
      lcm_lt_linkobj._dataaging                    as LglCntntMAgingTemperature,

      _LegalTransaction,

      _LinkedObjectTypeText
}