I_LEGALTRANSACTIONINTCONTACT
Basic View for LCM LT Internal Contact
I_LEGALTRANSACTIONINTCONTACT is a CDS View in S/4HANA. Basic View for LCM LT Internal Contact. It contains 8 fields. 5 CDS views read from this table.
CDS Views using this table (5)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_LegalTransactionIntContact | view | from | CONSUMPTION | Legal Transaction Internal Contacts |
| I_LegalTransactionIntContactTP | view | from | TRANSACTIONAL | TP View for LCM LT Internal Contact |
| I_LglCntntMTransIntCntctTeam | view | from | COMPOSITE | Legal Transaction Internal Contact Team |
| I_LglTransIntContactAPI01 | view | from | BASIC | Internal Contacts of Legal Transaction |
| R_LegalTransInternalContactTP | view_entity | from | TRANSACTIONAL | Legal Transaction Internal Contacts |
Fields (8)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | LegalTransactionIntCntctUUID | LegalTransactionIntCntctUUID | 1 |
| LegalTransactionMandatoryFlag | LegalTransactionMandatoryFlag | 1 | |
| LegalTransactionUUID | LegalTransactionUUID | 1 | |
| LglCntntMIntCntctType | LglCntntMIntCntctType | 1 | |
| LglCntntMIntCntctUser | LglCntntMIntCntctUser | 1 | |
| LglCntntMIntContactTeam | LglCntntMIntContactTeam | 1 | |
| LglCntntMIntContactUserType | LglCntntMIntContactUserType | 1 | |
| LglCntntMRank | LglCntntMRank | 1 |
@AbapCatalog.sqlViewName: 'ILEGALTRINTCONT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:#CHECK
@VDM.viewType : #BASIC
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.personalData.blocking: #REQUIRED
@ObjectModel: {
representativeKey: 'LegalTransactionIntCntctUUID',
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Basic View for LCM LT Internal Contact'
define view I_LegalTransactionIntContact
as select from lcm_lt_intcont
association [1..1] to I_LegalTransaction as _LegalTransaction on $projection.LegalTransactionUUID = _LegalTransaction.LegalTransactionUUID
//ESH associations
association [0..1] to I_LCMIntContactTypeText as _IntContactTypeText on $projection.LglCntntMIntCntctType = _IntContactTypeText.LglCntntMIntCntctType
and _IntContactTypeText.Language = $session.system_language
association [0..1] to I_LCMUserAddressAssignment as _InternalContact on $projection.LglCntntMIntCntctUser = _InternalContact.ContactCardID
association [0..1] to I_LglCntntMIntCntctUsrTypeText as _LglCntntMIntCntctUsrTypeText on $projection.LglCntntMIntContactUserType = _LglCntntMIntCntctUsrTypeText.LglCntntMIntContactUserType
and Language = $session.system_language
association [0..*] to I_LglCntntMTeamUserList as _LglCntntMTeamUserList on $projection.LglCntntMIntContactTeam = _LglCntntMTeamUserList.LglCntntMIntContactTeam
{
key lcm_lt_intcont.legaltransactionintcntctuuid as LegalTransactionIntCntctUUID,
lcm_lt_intcont.lglcntntmrank as LglCntntMRank,
lcm_lt_intcont.lglcntntmintcntctuser as LglCntntMIntCntctUser,
lcm_lt_intcont.lglcntntmintcontactteam as LglCntntMIntContactTeam,
lcm_lt_intcont.lglcntntmintcntcttype as LglCntntMIntCntctType,
lcm_lt_intcont.lglcntntmintcontactusertype as LglCntntMIntContactUserType,
lcm_lt_intcont.legaltransactionuuid as LegalTransactionUUID,
lcm_lt_intcont.legaltransactionmandatoryflag as LegalTransactionMandatoryFlag,
lcm_lt_intcont.lglcntntmisintegrelevant as LglCntntMIsIntegRelevant,
@Semantics.booleanIndicator: true
lcm_lt_intcont.lglcntntmisaddedbyintegvarbl as LglCntntMIsAddedByIntegVarbl,
_LegalTransaction,
_IntContactTypeText,
_InternalContact,
_LglCntntMIntCntctUsrTypeText,
_LglCntntMTeamUserList
}