I_SchedgAgrmtHeaderNotes
Scheduling Agreement Header Notes
I_SchedgAgrmtHeaderNotes is a Basic CDS View that provides data about "Scheduling Agreement Header Notes" in SAP S/4HANA. It reads from 1 data source (I_Text_Templates) and exposes 10 fields with key fields Language, DocumentText, TechnicalObjectType, ArchObjectNumber, SchedulingAgreement. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Text_Templates | I_Text_Templates | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Schedgagrmthdr | _Schedgagrmthdr | $projection.SchedulingAgreement = _Schedgagrmthdr.SchedulingAgreement |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISCHAGRHDRNOTES | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Scheduling Agreement Header Notes | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | DocumentText | DocumentText | ||
| KEY | TechnicalObjectType | TechnicalObjectType | ||
| KEY | ArchObjectNumber | ArchitecturalObjectNumber | ||
| KEY | SchedulingAgreement | |||
| NoteDescription | NoteDescription | |||
| FixedIndicator | FixedIndicator | |||
| DisplayModeOfTextTypeInPurg | DisplayModeOfTextTypeInPurg | |||
| TextIsAdoptedFromReference | TextIsAdoptedFromReference | |||
| _Schedgagrmthdr | _Schedgagrmthdr |
@AbapCatalog.sqlViewName: 'ISCHAGRHDRNOTES'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Scheduling Agreement Header Notes'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_SchedgAgrmtHeaderNotes
as select from I_Text_Templates
association [1..1] to I_Schedgagrmthdr as _Schedgagrmthdr on $projection.SchedulingAgreement = _Schedgagrmthdr.SchedulingAgreement
{
key Language,
key DocumentText,
key TechnicalObjectType,
key ArchitecturalObjectNumber as ArchObjectNumber,
key cast (substring(ArchitecturalObjectNumber,1,10) as ebeln ) as SchedulingAgreement,
NoteDescription,
FixedIndicator,
DisplayModeOfTextTypeInPurg,
TextIsAdoptedFromReference,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_Schedgagrmthdr
}
where
TechnicalObjectType = 'EKKO'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXT_TEMPLATES"
],
"ASSOCIATED":
[
"I_SCHEDGAGRMTHDR"
],
"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