C_BSQPMBusSolnQtan

DDL: C_BSQPMBUSSOLNQTAN Type: view_entity CONSUMPTION

BSQPM Solution Quotation Attribute

C_BSQPMBusSolnQtan is a Consumption CDS View that provides data about "BSQPM Solution Quotation Attribute" in SAP S/4HANA. It reads from 2 data sources (I_BusSolutionQuotationType, I_ServiceDocument) and exposes 4 fields with key field ServiceDocument. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_BusSolutionQuotationType BusSolutionQuotationType inner
I_ServiceDocument SolutionQuotation from

Associations (1)

CardinalityTargetAliasCondition
[0..1] E_ServiceDocument _Extension _Extension.ServiceOrder = SolutionQuotation.ServiceDocument and _Extension.ServiceCategory = SolutionQuotation.ServiceObjectType

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label BSQPM Solution Quotation Attribute view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocument I_ServiceDocument ServiceDocument Transaction ID
SoldToParty I_ServiceDocument SoldToParty Sold-to Party
ServiceDocNetAmount I_ServiceDocument ServiceDocNetAmount Net Value
TransactionCurrency I_ServiceDocument TransactionCurrency Transaction Currency

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 C_BSQPMBusSolnQtan.
-- 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 C_BSQPMBusSolnQtan AS
SELECT
  SolutionQuotation.ServiceDocument AS ServiceDocument,
  SolutionQuotation.SoldToParty AS SoldToParty,
  SolutionQuotation.ServiceDocNetAmount AS ServiceDocNetAmount,
  SolutionQuotation.TransactionCurrency AS TransactionCurrency
FROM I_ServiceDocument AS SolutionQuotation
INNER JOIN I_BusSolutionQuotationType AS BusSolutionQuotationType ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN E_ServiceDocument AS _Extension ON _Extension.ServiceOrder = SolutionQuotation.ServiceDocument AND _Extension.ServiceCategory = SolutionQuotation.ServiceObjectType  -- association [0..1]
;