I_LegalTransactionQuickView
Composite view for Legal Transaction Quick View
I_LegalTransactionQuickView is a Composite CDS View that provides data about "Composite view for Legal Transaction Quick View" in SAP S/4HANA. It reads from 1 data source (I_LegalTransaction) and exposes 12 fields with key field LegalTransaction. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LegalTransaction | I_LegalTransaction | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_LegalTransactionEntityMain | _LegalTransactionMainEntity | $projection.LegalTransactionUUID = _LegalTransactionMainEntity.LegalTransactionUUID |
| [0..*] | I_LegalTransactionHealthText | _LegalTransactionHealthText | $projection.LegalTransactionHealth = _LegalTransactionHealthText.LegalTransactionHealth |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILGLTRQUICKVIEW | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Composite view for Legal Transaction Quick View | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LegalTransaction | LegalTransaction | ||
| LegalTransactionUUID | LegalTransactionUUID | |||
| LegalTransactionHealth | LegalTransactionHealth | |||
| LglCntntMProfile | LglCntntMProfile | |||
| IsEndOfPurposeBlocked | IsEndOfPurposeBlocked | |||
| LglTransAccessLvl | LglTransAccessLvl | |||
| LglCntntMMainOrgCoCode | LglCntntMMainOrgCoCode | |||
| LglCntntMMainOrgSalesOrg | LglCntntMMainOrgSalesOrg | |||
| LglCntntMMainOrgPurOrg | LglCntntMMainOrgPurOrg | |||
| LglCntntMEntity | _LegalTransactionMainEntity | LglCntntMEntity | ||
| LegalTransactionEntityUUID | _LegalTransactionMainEntity | LegalTransactionEntityUUID | ||
| _LegalTransactionHealthText | _LegalTransactionHealthText |
@AbapCatalog.sqlViewName: 'ILGLTRQUICKVIEW'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Composite view for Legal Transaction Quick View'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_LegalTransactionQuickView
as select from I_LegalTransaction
association [0..*] to I_LegalTransactionEntityMain as _LegalTransactionMainEntity on $projection.LegalTransactionUUID = _LegalTransactionMainEntity.LegalTransactionUUID
association [0..*] to I_LegalTransactionHealthText as _LegalTransactionHealthText on $projection.LegalTransactionHealth = _LegalTransactionHealthText.LegalTransactionHealth
{
key LegalTransaction as LegalTransaction,
LegalTransactionUUID as LegalTransactionUUID,
LegalTransactionHealth as LegalTransactionHealth,
LglCntntMProfile as LglCntntMProfile,
IsEndOfPurposeBlocked as IsEndOfPurposeBlocked,
LglTransAccessLvl as LglTransAccessLvl,
LglCntntMMainOrgCoCode as LglCntntMMainOrgCoCode,
LglCntntMMainOrgSalesOrg as LglCntntMMainOrgSalesOrg,
LglCntntMMainOrgPurOrg as LglCntntMMainOrgPurOrg,
_LegalTransactionMainEntity.LglCntntMEntity as LglCntntMEntity,
_LegalTransactionMainEntity.LegalTransactionEntityUUID as LegalTransactionEntityUUID,
_LegalTransactionHealthText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LEGALTRANSACTION",
"I_LEGALTRANSACTIONENTITYMAIN"
],
"ASSOCIATED":
[
"I_LEGALTRANSACTIONENTITYMAIN",
"I_LEGALTRANSACTIONHEALTHTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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