I_LegalTransactionBase

DDL: I_LEGALTRANSACTIONBASE SQL: ILEGALTRBASE Type: view BASIC

Basic Data of Legal Transaction

I_LegalTransactionBase is a Basic CDS View that provides data about "Basic Data of Legal Transaction" in SAP S/4HANA. It reads from 1 data source (lcm_legaltr) and exposes 17 fields with key field LegalTransactionUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
lcm_legaltr lcm_legaltr from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_LegalTransaction _Extension $projection.LegalTransactionUUID = _Extension.LegalTransactionUUID

Annotations (12)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.sqlViewName ILEGALTRBASE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Basic Data of Legal Transaction view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY LegalTransactionUUID legaltransactionuuid
LegalTransaction legaltransaction
LegalTransactionTitle legaltransactiontitle
LegalTransactionHealth legaltransactionhealth
LglCntntMLanguage lglcntntmlanguage
LglCntntMCreatedByUser lglcntntmcreatedbyuser
LglCntntMCreatedUTCDateTime lglcntntmcreatedutcdatetime
LglCntntMChangedByUser lglcntntmchangedbyuser
LglCntntMChangedUTCDateTime lglcntntmchangedutcdatetime
LglCntntMProfile lglcntntmprofile
IsEndOfPurposeBlocked isendofpurposeblocked
LglCntntMGovLaw lglcntntmgovlaw
LglTransAccessLvl lgltransaccesslvl
LglCntntMMainOrgType lglcntntmmainorgtype
LglCntntMMainOrgCoCode lglcntntmmainorgcocode
LglCntntMMainOrgSalesOrg lglcntntmmainorgsalesorg
LglCntntMMainOrgPurOrg lglcntntmmainorgpurorg
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.sqlViewName: 'ILEGALTRBASE'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:#CHECK
@VDM.viewType : #BASIC

@ObjectModel: {
  usageType.serviceQuality: #B,
  usageType.sizeCategory: #XL,
  usageType.dataClass: #TRANSACTIONAL
}

@AccessControl.personalData.blocking: #REQUIRED

@ObjectModel.supportedCapabilities:[ #SQL_DATA_SOURCE, 
                                     #CDS_MODELING_DATA_SOURCE, 
                                     #CDS_MODELING_ASSOCIATION_TARGET ]

@EndUserText.label: 'Basic Data of Legal Transaction'
define view I_LegalTransactionBase
  as select from lcm_legaltr

  //Extension

  association [1..1] to E_LegalTransaction as _Extension on $projection.LegalTransactionUUID = _Extension.LegalTransactionUUID
{
      @Consumption.filter.hidden : true
  key legaltransactionuuid        as LegalTransactionUUID,

      legaltransaction            as LegalTransaction,

      @Semantics.text: true
      legaltransactiontitle       as LegalTransactionTitle,

      legaltransactionhealth      as LegalTransactionHealth,
      lglcntntmlanguage           as LglCntntMLanguage,
      lglcntntmcreatedbyuser      as LglCntntMCreatedByUser,
      lglcntntmcreatedutcdatetime as LglCntntMCreatedUTCDateTime,
      lglcntntmchangedbyuser      as LglCntntMChangedByUser,
      lglcntntmchangedutcdatetime as LglCntntMChangedUTCDateTime,
      lglcntntmprofile            as LglCntntMProfile,

      @Consumption.filter.hidden: true
      @Semantics.booleanIndicator: true
      isendofpurposeblocked       as IsEndOfPurposeBlocked,
      lglcntntmgovlaw             as LglCntntMGovLaw,
      lgltransaccesslvl           as LglTransAccessLvl,
      lglcntntmmainorgtype        as LglCntntMMainOrgType,
      lglcntntmmainorgcocode      as LglCntntMMainOrgCoCode,
      lglcntntmmainorgsalesorg    as LglCntntMMainOrgSalesOrg,
      lglcntntmmainorgpurorg      as LglCntntMMainOrgPurOrg
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LCM_LEGALTR"
],
"ASSOCIATED":
[
"E_LEGALTRANSACTION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/