A_SupplierListProposedSupplier

DDL: A_SUPPLIERLISTPROPOSEDSUPPLIER Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_SUPLRLIST_API

Proposed Supplier for Supplier List

A_SupplierListProposedSupplier is a Consumption CDS View that provides data about "Proposed Supplier for Supplier List" in SAP S/4HANA. It reads from 1 data source (R_SuplrListProposedSupplierTP) and exposes 16 fields with key field SuplrListProposedSupplierUUID. It is exposed through 1 OData service (API_SUPPLIERLIST). Part of development package ODATA_MM_PUR_SUPLRLIST_API.

Data Sources (1)

SourceAliasJoin Type
R_SuplrListProposedSupplierTP R_SuplrListProposedSupplierTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.representativeKey SuplrListProposedSupplierUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Proposed Supplier for Supplier List view

OData Services (1)

ServiceBindingVersionContractRelease
API_SUPPLIERLIST API_SUPPLIERLIST V4 C2 Deprecated

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY SuplrListProposedSupplierUUID SuplrListProposedSupplierUUID Proposed Supplier UUID
BusinessPartnerUUID BusinessPartnerUUID UUID
BusinessPartner BusinessPartner Issuing Authority
SupplierListUUID SupplierListUUID Supplier List UUID
Supplier Supplier Supplier
BusinessPartnerIsBlocked BusinessPartnerIsBlocked Central Block
AddressID AddressID Ship-to address
SupplierCountryGroup SupplierCountryGroup Country/Region Group
SuplrListSuplrProposedDateTime SuplrListSuplrProposedDateTime Proposed On
SuplrListSupplierProposalText SuplrListSupplierProposalText Proposal Comments
SupplierProposedByUser SupplierProposedByUser Created By
SuplrListSupplierApprovalText SuplrListSupplierApprovalText Approval Comments
SuplrListSuplrProposalStatus SuplrListSuplrProposalStatus Prop. Suplr. status
IsDeleted IsDeleted TRUE
SuplrListSuplrProposalAction SuplrListSuplrProposalAction Supplier Proposal Action
Country Country Venue: Ctry/Reg

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 A_SupplierListProposedSupplier.
-- 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 A_SupplierListProposedSupplier AS
SELECT
  SuplrListProposedSupplierUUID,
  BusinessPartnerUUID,
  BusinessPartner,
  SupplierListUUID,
  Supplier,
  BusinessPartnerIsBlocked,
  AddressID,
  SupplierCountryGroup,
  SuplrListSuplrProposedDateTime,
  SuplrListSupplierProposalText,
  SupplierProposedByUser,
  SuplrListSupplierApprovalText,
  SuplrListSuplrProposalStatus,
  IsDeleted,
  SuplrListSuplrProposalAction,
  Country
FROM R_SuplrListProposedSupplierTP
;