I_LegalTrLinkedObjectsTP
TP view for LCM LT Linked Objects
I_LegalTrLinkedObjectsTP is a Transactional CDS View that provides data about "TP view for LCM LT Linked Objects" in SAP S/4HANA. It reads from 1 data source (I_LegalTrLinkedObjects) and exposes 13 fields with key field LegalTransactionLinkdObjUUID. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LegalTrLinkedObjects | I_LegalTrLinkedObjects | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_LegalTransactionTP | _LegalTransactionTP | $projection.LegalTransactionUUID = _LegalTransactionTP.LegalTransactionUUID |
| [0..1] | I_LCMLinkedObjectType | _LinkedObjectType | $projection.LglCntntMLinkdObjType = _LinkedObjectType.LglCntntMLinkdObjType |
| [1..1] | E_LegalTransactionLinkedObject | _LegalTransLinkedObjectExtn | $projection.LegalTransactionLinkdObjUUID = _LegalTransLinkedObjectExtn.LegalTransactionLinkdObjUUID |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILGLTRLINKOBJTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| EndUserText.label | TP view for LCM LT Linked Objects | view | |
| ObjectModel.representativeKey | LegalTransactionLinkdObjUUID | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | EXTERNAL_CALCULATION | view | |
| ObjectModel.writeActivePersistence | LCM_LT_LINKOBJ | view | |
| ObjectModel.writeDraftPersistence | LCM_LT_LINKOBJ_D | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LegalTransactionLinkdObjUUID | LegalTransactionLinkdObjUUID | ||
| LglCntntMLinkdObjType | LglCntntMLinkdObjType | |||
| LglCntntMLinkdObj | LglCntntMLinkdObj | |||
| LegalTransactionUUID | LegalTransactionUUID | |||
| LegalTransactionMandatoryFlag | LegalTransactionMandatoryFlag | |||
| LegalTransactionIsTriggerObj | LegalTransactionIsTriggerObj | |||
| LglCntntMIsIntegRelevant | LglCntntMIsIntegRelevant | |||
| LglCntntMIsAddedByIntegVarbl | LglCntntMIsAddedByIntegVarbl | |||
| LglCntntMIntegrationLink | _LinkedObjectType | LglCntntMIntegrationLink | ||
| LglCntntMLinkdObjTechCat | ||||
| LglCntntMLinkdObjName | ||||
| _LegalTransaction | _LegalTransaction | |||
| _LegalTransactionTP | _LegalTransactionTP |
@AbapCatalog.sqlViewName: 'ILGLTRLINKOBJTP'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:#CHECK
@VDM.viewType : #TRANSACTIONAL
@EndUserText.label: 'TP view for LCM LT Linked Objects'
@ObjectModel: {
representativeKey: 'LegalTransactionLinkdObjUUID',
semanticKey: [ 'LegalTransactionLinkdObjUUID' ] ,
createEnabled: true,
updateEnabled: true,
deleteEnabled: 'EXTERNAL_CALCULATION',
writeActivePersistence: 'LCM_LT_LINKOBJ',
writeDraftPersistence: 'LCM_LT_LINKOBJ_D',
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_LegalTrLinkedObjectsTP
as select from I_LegalTrLinkedObjects
association [1..1] to I_LegalTransactionTP as _LegalTransactionTP on $projection.LegalTransactionUUID = _LegalTransactionTP.LegalTransactionUUID
association [0..1] to I_LCMLinkedObjectType as _LinkedObjectType on $projection.LglCntntMLinkdObjType = _LinkedObjectType.LglCntntMLinkdObjType
// Extension
association [1..1] to E_LegalTransactionLinkedObject as _LegalTransLinkedObjectExtn on $projection.LegalTransactionLinkdObjUUID = _LegalTransLinkedObjectExtn.LegalTransactionLinkdObjUUID
{
key LegalTransactionLinkdObjUUID,
@ObjectModel: {
readOnly: 'EXTERNAL_CALCULATION',
mandatory: true
}
LglCntntMLinkdObjType,
@ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
LglCntntMLinkdObj,
LegalTransactionUUID,
// @ObjectModel.readOnly: true
LegalTransactionMandatoryFlag,
LegalTransactionIsTriggerObj,
LglCntntMIsIntegRelevant,
LglCntntMIsAddedByIntegVarbl,
@ObjectModel.readOnly: true
_LinkedObjectType.LglCntntMIntegrationLink,
cast( '' as lcm_linkobjtech_cat ) as LglCntntMLinkdObjTechCat,
cast ('' as lcm_linkedobject_name ) as LglCntntMLinkdObjName,
_LegalTransaction,
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
_LegalTransactionTP
}
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