I_LglTransToBeUpdated

DDL: I_LGLTRANSTOBEUPDATED SQL: ILGLTBUPD Type: view BASIC

Legal Transactions that are to be updatd

I_LglTransToBeUpdated is a Basic CDS View that provides data about "Legal Transactions that are to be updatd" in SAP S/4HANA. It reads from 1 data source (lcm_lt_bi_updtim) and exposes 4 fields with key field LegalTransaction.

Data Sources (1)

SourceAliasJoin Type
lcm_lt_bi_updtim lcm_lt_bi_updtim from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILGLTBUPD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Legal Transactions that are to be updatd view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LegalTransaction legaltransaction
LglCntntMChangedUTCDateTime lglcntntmchangedutcdatetime
LglCntntMLinkdObj lglcntntmlinkdobj
LglCntntMLglTransUpdtIsRqd
@AbapCatalog.sqlViewName: 'ILGLTBUPD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType: {
                 serviceQuality: #A,
                 sizeCategory: #M,
                 dataClass: #TRANSACTIONAL
}

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType : #BASIC

@EndUserText.label: 'Legal Transactions that are to be updatd'

define view I_LglTransToBeUpdated
  as select from lcm_lt_bi_updtim
{
  key legaltransaction            as LegalTransaction,
      lglcntntmchangedutcdatetime as LglCntntMChangedUTCDateTime,
      lglcntntmlinkdobj           as LglCntntMLinkdObj,
      
      @Semantics.booleanIndicator: true
      'X'                         as LglCntntMLglTransUpdtIsRqd // All records in this table requires update so by default value is 'X'

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LCM_LT_BI_UPDTIM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/