I_SalesQuotationItemPartner

DDL: I_SALESQUOTATIONITEMPARTNER Type: view COMPOSITE

Sales Quotation Item Partner

I_SalesQuotationItemPartner is a Composite CDS View that provides data about "Sales Quotation Item Partner" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentItemPartner) and exposes 18 fields with key fields SalesQuotation, SalesQuotationItem, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentItemPartner Partner from

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Sales Quotation Item Partner view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName ISDSLSQTANITMPT view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey PartnerFunction view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY SalesQuotation SD Document
KEY SalesQuotationItem Sales Document Item
KEY PartnerFunction PartnerFunction Partner Functn
Customer Customer Sold-to Party
Supplier Supplier Supplier
Personnel Personnel Personnel No.
AddressID AddressID Ship-to address
AddressPersonID AddressPersonID Person Number
AddressObjectType AddressObjectType Address Type
SDDocPartnerAddressRefType SDDocPartnerAddressRefType Adress ind.
ContactPerson ContactPerson Contact Person Key
ReferenceBusinessPartner ReferenceBusinessPartner Busn. Partner
_SalesQuotation _SalesQuotation
_SalesQuotationItem _SalesQuotationItem
_PartnerFunction _PartnerFunction
_Address _Address
_DfltAddrRprstn _DfltAddrRprstn
_BusinessPartnerAddress _BusinessPartnerAddress

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_SalesQuotationItemPartner.
-- 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_SalesQuotationItemPartner AS
SELECT
  cast(SalesDocument as sales_quotation preserving type) AS SalesQuotation,
  cast(SalesDocumentItem as sales_quotation_item preserving type) AS SalesQuotationItem,
  PartnerFunction,
  Customer,
  Supplier,
  Personnel,
  AddressID,
  AddressPersonID,
  AddressObjectType,
  SDDocPartnerAddressRefType,
  ContactPerson,
  ReferenceBusinessPartner
FROM I_SalesDocumentItemPartner AS Partner
;