I_LegalContextAPI01
Legal Context
I_LegalContextAPI01 is a Basic CDS View that provides data about "Legal Context" in SAP S/4HANA. It reads from 1 data source (I_LglCntntMContextBasic) and exposes 22 fields with key field LglCntntMContextUUID. It has 1 association to related views. Part of development package VDM_LCM_CTX.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LglCntntMContextBasic | I_LglCntntMContextBasic | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | E_LglCntntMContext | _Extension | $projection.LglCntntMContextUUID = _Extension.LglCntntMContextUUID |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCMCONTEXTAPI01 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.semanticKey | LglCntntMContext | view | |
| ObjectModel.representativeKey | LglCntntMContextUUID | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | Legal Context | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LglCntntMContextUUID | LglCntntMContextUUID | ||
| LglCntntMContext | LglCntntMContext | |||
| LglCntntMContextVersion | LglCntntMContextVersion | |||
| LglCntntMContextTitle | LglCntntMContextTitle | |||
| LglCntntMContextOwner | LglCntntMContextOwner | |||
| LglCntntMProfile | LglCntntMProfile | |||
| LglCntntMContextStatus | LglCntntMContextStatus | |||
| LglCntntMContextValidFromDate | LglCntntMContextValidFromDate | |||
| LglCntntMContextValidToDate | LglCntntMContextValidToDate | |||
| LglCntntMCntxtLanguage | LglCntntMCntxtLanguage | |||
| LglCntntMPrevCntxtVers | LglCntntMPrevCntxtVers | |||
| LglCntntMCntxtIsReadOnly | LglCntntMCntxtIsReadOnly | |||
| LglCntntMGovLaw | LglCntntMGovLaw | |||
| LglCntntMCntxtAccessLvl | LglCntntMCntxtAccessLvl | |||
| LglCntntMMainOrgType | LglCntntMMainOrgType | |||
| LglCntntMMainOrgCoCode | LglCntntMMainOrgCoCode | |||
| LglCntntMMainOrgSalesOrg | LglCntntMMainOrgSalesOrg | |||
| LglCntntMMainOrgPurOrg | LglCntntMMainOrgPurOrg | |||
| LglCntntMCreatedByUser | LglCntntMCreatedByUser | |||
| LglCntntMCreatedUTCDateTime | LglCntntMCreatedUTCDateTime | |||
| LglCntntMChangedUTCDateTime | LglCntntMChangedUTCDateTime | |||
| LglCntntMChangedByUser | LglCntntMChangedByUser |
@AbapCatalog.sqlViewName: 'ILCMCONTEXTAPI01'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:#CHECK
@VDM.viewType : #BASIC
@ObjectModel: {
semanticKey: 'LglCntntMContext',
representativeKey: 'LglCntntMContextUUID',
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@AccessControl.personalData.blocking: #REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities:[ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ]
@EndUserText.label: 'Legal Context'
define view I_LegalContextAPI01
as select from I_LglCntntMContextBasic
//Extension
association [1..1] to E_LglCntntMContext as _Extension on $projection.LglCntntMContextUUID = _Extension.LglCntntMContextUUID
{
//Key
key LglCntntMContextUUID,
LglCntntMContext,
LglCntntMContextVersion,
LglCntntMContextTitle,
LglCntntMContextOwner,
LglCntntMProfile,
//Status
LglCntntMContextStatus,
//Validity
LglCntntMContextValidFromDate,
LglCntntMContextValidToDate,
LglCntntMCntxtLanguage,
LglCntntMPrevCntxtVers,
LglCntntMCntxtIsReadOnly,
LglCntntMGovLaw,
LglCntntMCntxtAccessLvl,
//Organization
LglCntntMMainOrgType,
LglCntntMMainOrgCoCode,
LglCntntMMainOrgSalesOrg,
LglCntntMMainOrgPurOrg,
//Administration
LglCntntMCreatedByUser,
LglCntntMCreatedUTCDateTime,
LglCntntMChangedUTCDateTime,
LglCntntMChangedByUser
}
where
IsEndOfPurposeBlocked = ''
or IsEndOfPurposeBlocked is null
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