I_SchedgAgrmtHeaderNotes

DDL: I_SCHEDGAGRMTHEADERNOTES SQL: ISCHAGRHDRNOTES Type: view BASIC

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)

SourceAliasJoin Type
I_Text_Templates I_Text_Templates from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Schedgagrmthdr _Schedgagrmthdr $projection.SchedulingAgreement = _Schedgagrmthdr.SchedulingAgreement

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY DocumentText DocumentText Text ID
KEY TechnicalObjectType TechnicalObjectType Text object
KEY ArchObjectNumber ArchitecturalObjectNumber Text Name
KEY SchedulingAgreement
NoteDescription NoteDescription Long Text
FixedIndicator FixedIndicator Fixing
DisplayModeOfTextTypeInPurg DisplayModeOfTextTypeInPurg Text Display Mode
TextIsAdoptedFromReference TextIsAdoptedFromReference Is Adopted
_Schedgagrmthdr _Schedgagrmthdr

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SchedgAgrmtHeaderNotes.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISCHAGRHDRNOTES

CREATE VIEW I_SchedgAgrmtHeaderNotes AS
SELECT
  Language,
  DocumentText,
  TechnicalObjectType,
  ArchitecturalObjectNumber AS ArchObjectNumber,
  cast (substring(ArchitecturalObjectNumber,1,10) as ebeln ) AS SchedulingAgreement,
  NoteDescription,
  FixedIndicator,
  DisplayModeOfTextTypeInPurg,
  TextIsAdoptedFromReference
FROM I_Text_Templates
LEFT OUTER JOIN I_Schedgagrmthdr AS _Schedgagrmthdr ON SchedulingAgreement = _Schedgagrmthdr.SchedulingAgreement  -- association [1..1]
;