I_LegalTransactionDocLinkTP
TP View for Legal Transaction Doc Link
I_LegalTransactionDocLinkTP is a Transactional CDS View that provides data about "TP View for Legal Transaction Doc Link" in SAP S/4HANA. It reads from 1 data source (I_LegalTransactionDocLink) and exposes 8 fields with key field LegalTransactionDocLinkUUID. It has 1 association to related views. Part of development package APPL_LCM_LT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LegalTransactionDocLink | I_LegalTransactionDocLink | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_LegalTransactionTP | _LegalTransactionTP | $projection.LegalTransactionUUID = _LegalTransactionTP.LegalTransactionUUID |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILTDOCLINKTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | LegalTransactionDocLinkUUID | view | |
| ObjectModel.semanticKey | LegalTransactionDocLinkUUID | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.writeActivePersistence | LCM_LT_DOCLINK | view | |
| ObjectModel.writeDraftPersistence | LCM_LT_DOCLINK_D | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | TP View for Legal Transaction Doc Link | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LegalTransactionDocLinkUUID | I_LegalTransactionDocLink | LegalTransactionDocLinkUUID | |
| LegalTransactionUUID | I_LegalTransactionDocLink | LegalTransactionUUID | ||
| LglCntntMDocument | I_LegalTransactionDocLink | LglCntntMDocument | ||
| LglCntntMDocumentLinkedObject | I_LegalTransactionDocLink | LglCntntMDocumentLinkedObject | ||
| LglCntntMDocumentLinkedObjKey | I_LegalTransactionDocLink | LglCntntMDocumentLinkedObjKey | ||
| _LegalTransactionTP | _LegalTransactionTP | |||
| _LegalTransaction | _LegalTransaction | |||
| _DocumentAuth | _DocumentAuth |
@AbapCatalog.sqlViewName: 'ILTDOCLINKTP'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:#CHECK
@VDM.viewType : #TRANSACTIONAL
@ObjectModel: {
representativeKey: 'LegalTransactionDocLinkUUID',
semanticKey: 'LegalTransactionDocLinkUUID',
createEnabled: true,
updateEnabled: true,
deleteEnabled: true,
writeActivePersistence: 'LCM_LT_DOCLINK',
writeDraftPersistence: 'LCM_LT_DOCLINK_D',
usageType.serviceQuality: #C,
usageType.sizeCategory: #M,
usageType.dataClass: #TRANSACTIONAL
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'TP View for Legal Transaction Doc Link'
define view I_LegalTransactionDocLinkTP
as select from I_LegalTransactionDocLink
// Parent/Root association
association [1..1] to I_LegalTransactionTP as _LegalTransactionTP on $projection.LegalTransactionUUID = _LegalTransactionTP.LegalTransactionUUID
{
key I_LegalTransactionDocLink.LegalTransactionDocLinkUUID as LegalTransactionDocLinkUUID,
I_LegalTransactionDocLink.LegalTransactionUUID as LegalTransactionUUID,
@ObjectModel.mandatory: true
I_LegalTransactionDocLink.LglCntntMDocument as LglCntntMDocument,
@ObjectModel.readOnly: true
I_LegalTransactionDocLink.LglCntntMDocumentLinkedObject as LglCntntMDocumentLinkedObject,
@ObjectModel.readOnly: true
I_LegalTransactionDocLink.LglCntntMDocumentLinkedObjKey as LglCntntMDocumentLinkedObjKey,
// Parent/Root association
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
_LegalTransactionTP,
_LegalTransaction,
_DocumentAuth
}
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