A_LglTransLinkedObjects

DDL: A_LGLTRANSLINKEDOBJECTS SQL: ALGLTRANSLNKOBJS Type: view CONSUMPTION

Linked Objects

A_LglTransLinkedObjects is a Consumption CDS View that provides data about "Linked Objects" in SAP S/4HANA. It reads from 1 data source (I_LegalTrLinkedObjectsTP) and exposes 8 fields with key field LegalTransactionLinkdObjUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_LegalTrLinkedObjectsTP LglTransLinkedObjects from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_LegalTransaction _LegalTransactionTP $projection.LegalTransactionUUID = _LegalTransactionTP.LegalTransactionUUID

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ALGLTRANSLNKOBJS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Linked Objects view
ObjectModel.representativeKey LegalTransactionLinkdObjUUID view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY LegalTransactionLinkdObjUUID I_LegalTrLinkedObjectsTP LegalTransactionLinkdObjUUID
LglCntntMLinkdObjType I_LegalTrLinkedObjectsTP LglCntntMLinkdObjType
LglCntntMLinkdObj I_LegalTrLinkedObjectsTP LglCntntMLinkdObj
LegalTransactionMandatoryFlag I_LegalTrLinkedObjectsTP LegalTransactionMandatoryFlag
LegalTransactionUUID I_LegalTrLinkedObjectsTP LegalTransactionUUID
LegalTransactionIsTriggerObj I_LegalTrLinkedObjectsTP LegalTransactionIsTriggerObj
LglCntntMIntegrationLink I_LegalTrLinkedObjectsTP LglCntntMIntegrationLink
_LegalTransaction _LegalTransactionTP
@AbapCatalog.sqlViewName: 'ALGLTRANSLNKOBJS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED

@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@EndUserText.label: 'Linked Objects'

@ObjectModel: {
                representativeKey: 'LegalTransactionLinkdObjUUID',

                transactionalProcessingDelegated: true,

                createEnabled: true,
                updateEnabled: true,
                deleteEnabled: true,

                usageType.dataClass: #TRANSACTIONAL,
                usageType.serviceQuality:  #A,
                usageType.sizeCategory: #L,

                delegatedAction

              }

@Metadata.ignorePropagatedAnnotations: true

define view A_LglTransLinkedObjects
  as select from I_LegalTrLinkedObjectsTP as LglTransLinkedObjects

  association [1..1] to A_LegalTransaction as _LegalTransactionTP on $projection.LegalTransactionUUID = _LegalTransactionTP.LegalTransactionUUID
{
      @ObjectModel.readOnly: true
  key LglTransLinkedObjects.LegalTransactionLinkdObjUUID,
  
      @ObjectModel.sapObjectNodeTypeReference: 'LegalLinkedObjectType'
      LglTransLinkedObjects.LglCntntMLinkdObjType,
      
      LglTransLinkedObjects.LglCntntMLinkdObj,

      @ObjectModel.readOnly: true
      LglTransLinkedObjects.LegalTransactionMandatoryFlag,
      @ObjectModel.readOnly: true
      LglTransLinkedObjects.LegalTransactionUUID,

      LglTransLinkedObjects.LegalTransactionIsTriggerObj,

      @ObjectModel.readOnly: true
      LglTransLinkedObjects.LglCntntMIntegrationLink,

      @ObjectModel.association.type:  [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
      _LegalTransactionTP as _LegalTransaction
}