I_LglCntntMNotesLglTransObj
Related Objects for Legal Transactions
I_LglCntntMNotesLglTransObj is a Basic CDS View that provides data about "Related Objects for Legal Transactions" in SAP S/4HANA. It reads from 1 data source (I_LegalTransaction) and exposes 9 fields with key fields LglCntntMParApplObjUUID, LglCntntMObjType, LglCntntMObjUUID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LegalTransaction | LT | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_LegalTransaction | _LegalTransaction | LT.LegalTransactionUUID = _LegalTransaction.LegalTransactionUUID |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCMNOTELTOBJ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Related Objects for Legal Transactions | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LglCntntMParApplObjUUID | I_LegalTransaction | LegalTransactionUUID | |
| KEY | LglCntntMObjType | |||
| KEY | LglCntntMObjUUID | I_LegalTransaction | LegalTransactionUUID | |
| LglCntntMObjectID | I_LegalTransaction | LegalTransaction | ||
| LglCntntMObjTitle | ||||
| LglCntntMParObjUUID | I_LegalTransaction | LegalTransactionUUID | ||
| LglCntntMParObjID | I_LegalTransaction | LegalTransaction | ||
| LglCntntMParObjTitle | ||||
| _LegalTransaction | _LegalTransaction |
@AbapCatalog.sqlViewName: 'ILCMNOTELTOBJ'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
usageType.serviceQuality: #B,
usageType.sizeCategory: #XL,
usageType.dataClass: #TRANSACTIONAL
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Related Objects for Legal Transactions'
define view I_LglCntntMNotesLglTransObj
as select from I_LegalTransaction as LT
association [1..1] to I_LegalTransaction as _LegalTransaction on LT.LegalTransactionUUID = _LegalTransaction.LegalTransactionUUID
{
key LT.LegalTransactionUUID as LglCntntMParApplObjUUID,
key 'LT ' as LglCntntMObjType,
key LT.LegalTransactionUUID as LglCntntMObjUUID,
LT.LegalTransaction as LglCntntMObjectID,
cast(LT.LegalTransactionTitle as abap.char(255)) as LglCntntMObjTitle,
LT.LegalTransactionUUID as LglCntntMParObjUUID,
LT.LegalTransaction as LglCntntMParObjID,
cast(LT.LegalTransactionTitle as abap.char(255)) as LglCntntMParObjTitle,
// Expose association for Authorization
_LegalTransaction
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LEGALTRANSACTION"
],
"ASSOCIATED":
[
"I_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