I_LglCntntMNotesObjTypes
Object Types and Desc. related to Notes
I_LglCntntMNotesObjTypes is a Basic CDS View that provides data about "Object Types and Desc. related to Notes" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field LglCntntMObjType.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCMNTOBJTYPES | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Object Types and Desc. related to Notes | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LglCntntMObjType | |||
| LglCntntMObjTypeDesc | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'ILCMNTOBJTYPES'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Object Types and Desc. related to Notes'
define view I_LglCntntMNotesObjTypes
as select from dd07l
inner join dd07t on dd07t.domname = dd07l.domname
and dd07t.ddlanguage = $session.system_language
and dd07t.as4local = dd07l.as4local
and dd07t.valpos = dd07l.valpos
{
//dd07l
key cast( dd07t.domvalue_l as lcm_note_object_type) as LglCntntMObjType,
dd07t.ddtext as LglCntntMObjTypeDesc
}
where
dd07t.domname = 'LCM_NOTE_OBJECT_TYPE'
and dd07t.as4local = 'A'
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