I_LglTransExtContactAPI01
External Contacts of Legal Transaction
I_LglTransExtContactAPI01 is a Basic CDS View that provides data about "External Contacts of Legal Transaction" in SAP S/4HANA. It reads from 1 data source (I_LegalTransactionExtContact) and exposes 9 fields with key field LegalTransactionExtCntctUUID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LegalTransactionExtContact | I_LegalTransactionExtContact | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_LegalTransactionAPI01 | _LegalTransaction | $projection.LegalTransactionUUID = _LegalTransaction.LegalTransactionUUID |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ILTEXTCONTAPI01 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | LegalTransactionExtCntctUUID | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | External Contacts of Legal Transaction | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LegalTransactionExtCntctUUID | LegalTransactionExtCntctUUID | ||
| LglCntntMRank | LglCntntMRank | |||
| LglCntntMExtCntctBP | LglCntntMExtCntctBP | |||
| LglCntntMExtCntctType | LglCntntMExtCntctType | |||
| LegalTransactionUUID | LegalTransactionUUID | |||
| LegalTransactionMandatoryFlag | LegalTransactionMandatoryFlag | |||
| LglCntntMIsIntegRelevant | LglCntntMIsIntegRelevant | |||
| LglCntntMIsAddedByIntegVarbl | LglCntntMIsAddedByIntegVarbl | |||
| _LegalTransaction | _LegalTransaction |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ILTEXTCONTAPI01'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@VDM.viewType : #BASIC
@ObjectModel: {
representativeKey: 'LegalTransactionExtCntctUUID',
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@Metadata.ignorePropagatedAnnotations:true
@AccessControl.personalData.blocking: #REQUIRED
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities:[ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ]
@EndUserText.label: 'External Contacts of Legal Transaction'
define view I_LglTransExtContactAPI01
as select from I_LegalTransactionExtContact
association [1..1] to I_LegalTransactionAPI01 as _LegalTransaction on $projection.LegalTransactionUUID = _LegalTransaction.LegalTransactionUUID
{
key LegalTransactionExtCntctUUID,
LglCntntMRank,
LglCntntMExtCntctBP,
LglCntntMExtCntctType,
LegalTransactionUUID,
LegalTransactionMandatoryFlag,
LglCntntMIsIntegRelevant,
@Semantics.booleanIndicator: true
LglCntntMIsAddedByIntegVarbl,
/* Associations */
_LegalTransaction
}
where
_LegalTransaction.IsEndOfPurposeBlocked = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LEGALTRANSACTIONAPI01",
"I_LEGALTRANSACTIONEXTCONTACT"
],
"ASSOCIATED":
[
"I_LEGALTRANSACTIONAPI01"
],
"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