I_LegalTransactionBase
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)
| Source | Alias | Join Type |
|---|---|---|
| lcm_legaltr | lcm_legaltr | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | E_LegalTransaction | _Extension | $projection.LegalTransactionUUID = _Extension.LegalTransactionUUID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA