I_LglTransToBeUpdated
Legal Transactions that are to be updatd
I_LglTransToBeUpdated is a Basic CDS View that provides data about "Legal Transactions that are to be updatd" in SAP S/4HANA. It reads from 1 data source (lcm_lt_bi_updtim) and exposes 4 fields with key field LegalTransaction.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| lcm_lt_bi_updtim | lcm_lt_bi_updtim | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILGLTBUPD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Legal Transactions that are to be updatd | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LegalTransaction | legaltransaction | ||
| LglCntntMChangedUTCDateTime | lglcntntmchangedutcdatetime | |||
| LglCntntMLinkdObj | lglcntntmlinkdobj | |||
| LglCntntMLglTransUpdtIsRqd |
@AbapCatalog.sqlViewName: 'ILGLTBUPD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #M,
dataClass: #TRANSACTIONAL
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType : #BASIC
@EndUserText.label: 'Legal Transactions that are to be updatd'
define view I_LglTransToBeUpdated
as select from lcm_lt_bi_updtim
{
key legaltransaction as LegalTransaction,
lglcntntmchangedutcdatetime as LglCntntMChangedUTCDateTime,
lglcntntmlinkdobj as LglCntntMLinkdObj,
@Semantics.booleanIndicator: true
'X' as LglCntntMLglTransUpdtIsRqd // All records in this table requires update so by default value is 'X'
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LCM_LT_BI_UPDTIM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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