I_SalesQuotationPartnerTP

DDL: I_SALESQUOTATIONPARTNERTP Type: view_entity TRANSACTIONAL Package: ODATA_SD_QUOTATION

Sales Quotation Partner - TP

I_SalesQuotationPartnerTP is a Transactional CDS View that provides data about "Sales Quotation Partner - TP" in SAP S/4HANA. It reads from 1 data source (R_SalesQuotationPartnerTP) and exposes 13 fields with key fields SalesQuotation, PartnerFunction. Part of development package ODATA_SD_QUOTATION.

Data Sources (1)

SourceAliasJoin Type
R_SalesQuotationPartnerTP R_SalesQuotationPartnerTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Sales Quotation Partner - TP view
AccessControl.authorizationCheck #CHECK view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
Metadata.ignorePropagatedAnnotations true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY SalesQuotation SalesQuotationPartner SalesQuotation
KEY PartnerFunction SalesQuotationPartner PartnerFunction Partner Functn
PartnerFunctionForEdit SalesQuotationPartner PartnerFunctionForEdit Partner Funct.
Customer SalesQuotationPartner Customer Sold-to Party
Supplier SalesQuotationPartner Supplier Supplier
Personnel SalesQuotationPartner Personnel Personnel No.
ContactPerson SalesQuotationPartner ContactPerson Contact Person Key
ReferenceBusinessPartner SalesQuotationPartner ReferenceBusinessPartner Busn. Partner
Partner SalesQuotationPartner Partner With Partner
SalesQuotationType SalesQuotationPartner SalesQuotationType
SalesOrganization SalesQuotationPartner SalesOrganization Sales Organization
DistributionChannel SalesQuotationPartner DistributionChannel RefDistCh-Cust/Mat.
OrganizationDivision SalesQuotationPartner OrganizationDivision Org. Division

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_SalesQuotationPartnerTP.
-- 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_SalesQuotationPartnerTP AS
SELECT
  SalesQuotationPartner.SalesQuotation AS SalesQuotation,
  SalesQuotationPartner.PartnerFunction AS PartnerFunction,
  SalesQuotationPartner.PartnerFunctionForEdit AS PartnerFunctionForEdit,
  SalesQuotationPartner.Customer AS Customer,
  SalesQuotationPartner.Supplier AS Supplier,
  SalesQuotationPartner.Personnel AS Personnel,
  SalesQuotationPartner.ContactPerson AS ContactPerson,
  SalesQuotationPartner.ReferenceBusinessPartner AS ReferenceBusinessPartner,
  SalesQuotationPartner.Partner AS Partner,
  SalesQuotationPartner.SalesQuotationType AS SalesQuotationType,
  SalesQuotationPartner.SalesOrganization AS SalesOrganization,
  SalesQuotationPartner.DistributionChannel AS DistributionChannel,
  SalesQuotationPartner.OrganizationDivision AS OrganizationDivision
FROM R_SalesQuotationPartnerTP
;