R_SuplrListProposedSupplierD

DDL: R_SUPLRLISTPROPOSEDSUPPLIERD Type: view_entity BASIC

Proposed Supplier for SuplrList - Draft

R_SuplrListProposedSupplierD is a Basic CDS View that provides data about "Proposed Supplier for SuplrList - Draft" in SAP S/4HANA. It reads from 1 data source (mmsuplrlprpsp2_d) and exposes 25 fields with key field SuplrListProposedSupplierUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
mmsuplrlprpsp2_d _SuplrListProposedSupplierD from

Associations (2)

CardinalityTargetAliasCondition
[1..1] R_SupplierListD _SupplierListD $projection.SupplierListUUID = _SupplierListD.SupplierListUUID
[1..1] E_SuplrListProposedSupplierD _Extension $projection.SuplrListProposedSupplierUUID = _Extension.SuplrListProposedSupplierUUID

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Proposed Supplier for SuplrList - Draft view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix SLP view
AbapCatalog.extensibility.quota.maximumFields 204 view
AbapCatalog.extensibility.quota.maximumBytes 4080 view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY SuplrListProposedSupplierUUID suplrlistproposedsupplieruuid Proposed Supplier UUID
BusinessPartnerUUID businesspartneruuid UUID
BusinessPartner businesspartner Issuing Authority
SupplierListUUID supplierlistuuid Supplier List UUID
SuplrListSuplrProposalUniqueID suplrlistsuplrproposaluniqueid Unique ID
BusinessPartnerIsBlocked businesspartnerisblocked Central Block
Supplier supplier Supplier
AddressID addressid Ship-to address
SupplierCountryGroup suppliercountrygroup Country/Region Group
SupplierProposedByUser supplierproposedbyuser Created By
SuplrListSuplrProposedDateTime suplrlistsuplrproposeddatetime Proposed On
SuplrListSupplierProposalText suplrlistsupplierproposaltext Proposal Comments
SuplrListSupplierApprovalText suplrlistsupplierapprovaltext Approval Comments
SuplrListSuplrProposalStatus suplrlistsuplrproposalstatus Prop. Suplr. status
IsDeleted isdeleted TRUE
SuplrListSuplrProposalAction suplrlistsuplrproposalaction Supplier Proposal Action
Country country Venue: Ctry/Reg
SuplrListPrpslSitnTriggerCode suplrlistprpslsitntriggercode Prop. Suplr. status
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes
_SupplierListD _SupplierListD

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 R_SuplrListProposedSupplierD.
-- 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 R_SuplrListProposedSupplierD AS
SELECT
  SuplrListProposedSupplierUUID,
  BusinessPartnerUUID,
  BusinessPartner,
  SupplierListUUID,
  SuplrListSuplrProposalUniqueID,
  BusinessPartnerIsBlocked,
  Supplier,
  AddressID,
  SupplierCountryGroup,
  SupplierProposedByUser,
  SuplrListSuplrProposedDateTime,
  SuplrListSupplierProposalText,
  SuplrListSupplierApprovalText,
  SuplrListSuplrProposalStatus,
  IsDeleted,
  SuplrListSuplrProposalAction,
  Country,
  SuplrListPrpslSitnTriggerCode,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM mmsuplrlprpsp2_d AS _SuplrListProposedSupplierD
LEFT OUTER JOIN R_SupplierListD AS _SupplierListD ON SupplierListUUID = _SupplierListD.SupplierListUUID  -- association [1..1]
LEFT OUTER JOIN E_SuplrListProposedSupplierD AS _Extension ON SuplrListProposedSupplierUUID = _Extension.SuplrListProposedSupplierUUID  -- association [1..1]
;