I_PrepaymentAgrmtNotesTP

DDL: I_PREPAYMENTAGRMTNOTESTP SQL: IPPMGAGRNTTP Type: view TRANSACTIONAL

Prepayment Agreement Notes Transaction

I_PrepaymentAgrmtNotesTP is a Transactional CDS View that provides data about "Prepayment Agreement Notes Transaction" in SAP S/4HANA. It reads from 1 data source (I_PrepaymentAgrmtNotes) and exposes 10 fields with key field PrepaymentAgrmtNotesUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_PrepaymentAgrmtNotes PrepaymentAgmntNotes from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_PrepaymentAgreementTP _PrepaymentAgreement $projection.PrepaymentAgreementUUID = _PrepaymentAgreement.PrepaymentAgreementUUID -- Extension View for Notes in Prepayment
[0..1] E_PrepaymentAgrmtNotes _Extension $projection.PrepaymentAgrmtNotesUUID = _Extension.PrepaymentAgrmtNotesUUID

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGAGRNTTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Prepayment Agreement Notes Transaction view
VDM.viewType #TRANSACTIONAL view
ObjectModel.writeActivePersistence PPMGAG_T_NOTES view
ObjectModel.writeDraftPersistence PPMGAG_T_NOTES_D view
ObjectModel.createEnabled EXTERNAL_CALCULATION view
ObjectModel.updateEnabled EXTERNAL_CALCULATION view
ObjectModel.deleteEnabled EXTERNAL_CALCULATION view
ObjectModel.lifecycle.enqueue.expiryBehavior #RELATIVE_TO_LAST_CHANGE view
ObjectModel.lifecycle.enqueue.expiryInterval PT60M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.modelCategory #BUSINESS_OBJECT view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PrepaymentAgrmtNotesUUID I_PrepaymentAgrmtNotes PrepaymentAgrmtNotesUUID Key
PrepaymentAgreementUUID I_PrepaymentAgrmtNotes PrepaymentAgreementUUID Key
PrepaymentAgrmtNoteType I_PrepaymentAgrmtNotes PrepaymentAgrmtNoteType Note Type
LanguageCode I_PrepaymentAgrmtNotes LanguageCode Language Key
PrepaymentAgrmtNoteText I_PrepaymentAgrmtNotes PrepaymentAgrmtNoteText Note Comments
CreatedByUserasCreatedByUser
CreationDateTime I_PrepaymentAgrmtNotes CreationDateTime Timestamp
LastChangedByUser I_PrepaymentAgrmtNotes LastChangedByUser User Name
LastChangeDateTime I_PrepaymentAgrmtNotes LastChangeDateTime Timestamp
Associations_PrepaymentAgreement

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_PrepaymentAgrmtNotesTP.
-- 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: IPPMGAGRNTTP

CREATE VIEW I_PrepaymentAgrmtNotesTP AS
SELECT
  PrepaymentAgmntNotes.PrepaymentAgrmtNotesUUID AS PrepaymentAgrmtNotesUUID,
  PrepaymentAgmntNotes.PrepaymentAgreementUUID AS PrepaymentAgreementUUID,
  PrepaymentAgmntNotes.PrepaymentAgrmtNoteType AS PrepaymentAgrmtNoteType,
  PrepaymentAgmntNotes.LanguageCode AS LanguageCode,
  PrepaymentAgmntNotes.PrepaymentAgrmtNoteText AS PrepaymentAgrmtNoteText,
  PrepaymentAgmntNotes.CreationDateTime AS CreationDateTime,
  PrepaymentAgmntNotes.LastChangedByUser AS LastChangedByUser,
  PrepaymentAgmntNotes.LastChangeDateTime AS LastChangeDateTime
FROM I_PrepaymentAgrmtNotes AS PrepaymentAgmntNotes
LEFT OUTER JOIN I_PrepaymentAgreementTP AS _PrepaymentAgreement ON PrepaymentAgreementUUID = _PrepaymentAgreement.PrepaymentAgreementUUID  -- association [1..1]
LEFT OUTER JOIN E_PrepaymentAgrmtNotes AS _Extension ON PrepaymentAgrmtNotesUUID = _Extension.PrepaymentAgrmtNotesUUID  -- association [0..1]
;