I_MaintNotificationPartnerTP_3

DDL: I_MAINTNOTIFICATIONPARTNERTP_3 Type: view_entity TRANSACTIONAL

Maintenance Notification Partner - TP

I_MaintNotificationPartnerTP_3 is a Transactional CDS View that provides data about "Maintenance Notification Partner - TP" in SAP S/4HANA. It reads from 1 data source (R_MaintNotificationPartnerTP) and exposes 10 fields with key fields MaintenanceNotification, PartnerFunction, NotificationPartnerObjectNmbr.

Data Sources (1)

SourceAliasJoin Type
R_MaintNotificationPartnerTP R_MaintNotificationPartnerTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Maintenance Notification Partner - TP view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceNotification MaintenanceNotification Notification
KEY PartnerFunction PartnerFunction Partner Functn
KEY NotificationPartnerObjectNmbr NotificationPartnerObjectNmbr Counter
NotificationPartner Partner With Partner
MaintenancePartner MaintenancePartner Partner
_ContactPerson _ContactPerson
_Customer _Customer
_Employee _Employee
_Supplier _Supplier
_PartnerFunction _PartnerFunction

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_MaintNotificationPartnerTP_3.
-- 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.

CREATE VIEW I_MaintNotificationPartnerTP_3 AS
SELECT
  MaintenanceNotification,
  PartnerFunction,
  NotificationPartnerObjectNmbr,
  Partner AS NotificationPartner,
  MaintenancePartner
FROM R_MaintNotificationPartnerTP
;