I_SuplrListPrpsdSupplierNotify

DDL: I_SUPLRLISTPRPSDSUPPLIERNOTIFY SQL: ISUPLRLPROPNOTI Type: view BASIC Package: VDM_MM_PUR_SUPLRLIST

Notif about Prpsd Suplr for Suplr List

I_SuplrListPrpsdSupplierNotify is a Basic CDS View that provides data about "Notif about Prpsd Suplr for Suplr List" in SAP S/4HANA. It reads from 1 data source (R_SupplierListProposedSupplier) and exposes 17 fields with key field SuplrListProposedSupplierUUID. Part of development package VDM_MM_PUR_SUPLRLIST.

Data Sources (1)

SourceAliasJoin Type
R_SupplierListProposedSupplier R_SupplierListProposedSupplier from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISUPLRLPROPNOTI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Notif about Prpsd Suplr for Suplr List view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
ObjectModel.uniqueIdField SuplrListSuplrProposalUniqueID view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY SuplrListProposedSupplierUUID SuplrListProposedSupplierUUID Proposed Supplier UUID
BusinessPartnerUUID BusinessPartnerUUID UUID
SupplierListUUID SupplierListUUID Supplier List UUID
SupplierList _SupplierList SupplierList Supplier Selection
Supplier Supplier Supplier
SuplrListSuplrProposalUniqueID SuplrListSuplrProposalUniqueID Unique ID
PurchaserRespWorkAgreement _SupplierList PurchaserRespWorkAgreement Purchaser Responsible
PurchaserResponsibleUser _SupplierList PurchaserResponsibleUser Purchaser Responsible User
CreatedByUser _SupplierList CreatedByUser User Name
SupplierProposedByUser SupplierProposedByUser Supplier Proposed By
SupplierListType _SupplierList SupplierListType Supplier List Type
SuplrListLifecycleStatus _SupplierList SuplrListLifecycleStatus SL Lifecycle Status
SupplierListIsPublic _SupplierList SupplierListIsPublic Is Public
SuplrListSupplierProposalText SuplrListSupplierProposalText Proposal Comments
SuplrListSupplierApprovalText SuplrListSupplierApprovalText Approval Comments
_SupplierListType _SupplierList _SupplierListType
_SuplrListStatus _SupplierList _SuplrListStatus

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_SuplrListPrpsdSupplierNotify.
-- 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: ISUPLRLPROPNOTI

CREATE VIEW I_SuplrListPrpsdSupplierNotify AS
SELECT
  SuplrListProposedSupplierUUID,
  BusinessPartnerUUID,
  SupplierListUUID,
  _SupplierList.SupplierList AS SupplierList,
  Supplier,
  SuplrListSuplrProposalUniqueID,
  _SupplierList.PurchaserRespWorkAgreement AS PurchaserRespWorkAgreement,
  _SupplierList.PurchaserResponsibleUser AS PurchaserResponsibleUser,
  _SupplierList.CreatedByUser AS CreatedByUser,
  SupplierProposedByUser,
  _SupplierList.SupplierListType AS SupplierListType,
  _SupplierList.SuplrListLifecycleStatus AS SuplrListLifecycleStatus,
  _SupplierList.SupplierListIsPublic AS SupplierListIsPublic,
  SuplrListSupplierProposalText,
  SuplrListSupplierApprovalText,
  _SupplierList._SupplierListType AS _SupplierListType,
  _SupplierList._SuplrListStatus AS _SuplrListStatus
FROM R_SupplierListProposedSupplier
;