R_SrvcQtanItemPriceElementTP

DDL: R_SRVCQTANITEMPRICEELEMENTTP Type: view_entity TRANSACTIONAL

Service Quotation Item Price Element - TP

R_SrvcQtanItemPriceElementTP is a Transactional CDS View that provides data about "Service Quotation Item Price Element - TP" in SAP S/4HANA. It reads from 2 data sources (I_PricingElement, I_ServiceDocumentEnhcd) and exposes 15 fields with key fields ServiceQuotation, ServiceQuotationItem, PricingProcedureStep, PricingProcedureCounter. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_PricingElement PricingElement from
I_ServiceDocumentEnhcd ServiceQuotation inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_ServiceQuotationTP _ServiceQuotationTP $projection.ServiceQuotation = _ServiceQuotationTP.ServiceQuotation

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Service Quotation Item Price Element - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotation I_ServiceDocumentEnhcd ServiceDocument Transaction ID
KEY ServiceQuotationItem
KEY PricingProcedureStep I_PricingElement PricingProcedureStep Step Number
KEY PricingProcedureCounter I_PricingElement PricingProcedureCounter Pricing Procedure Counter
PrcgProcedureCounterForHeader I_PricingElement PrcgProcedureCounterForHeader Pricing Procedure Counter for Header
ConditionType I_PricingElement ConditionType Condition type
ConditionRateValue I_PricingElement ConditionRateValue Condition Rate Value
ConditionCurrency I_PricingElement ConditionCurrency Currency
ConditionQuantity I_PricingElement ConditionQuantity Pricing Unit
ConditionQuantityUnit I_PricingElement ConditionQuantityUnit Unit of Measure
ConditionInactiveReason I_PricingElement ConditionInactiveReason Inactive
_ServiceQuotationItemTP _ServiceQuotationItemTP
_ServiceQuotationTP _ServiceQuotationTP
_ConditionQuantityUnit I_PricingElement _ConditionQuantityUnit
_ConditionInactiveReason I_PricingElement _ConditionInactiveReason

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_SrvcQtanItemPriceElementTP.
-- 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_SrvcQtanItemPriceElementTP AS
SELECT
  ServiceQuotation.ServiceDocument AS ServiceQuotation,
  cast(PricingElement.PricingDocumentItem as crms4_number_int preserving type) AS ServiceQuotationItem,
  PricingElement.PricingProcedureStep AS PricingProcedureStep,
  PricingElement.PricingProcedureCounter AS PricingProcedureCounter,
  PricingElement.PrcgProcedureCounterForHeader AS PrcgProcedureCounterForHeader,
  PricingElement.ConditionType AS ConditionType,
  PricingElement.ConditionRateValue AS ConditionRateValue,
  PricingElement.ConditionCurrency AS ConditionCurrency,
  PricingElement.ConditionQuantity AS ConditionQuantity,
  PricingElement.ConditionQuantityUnit AS ConditionQuantityUnit,
  PricingElement.ConditionInactiveReason AS ConditionInactiveReason,
  PricingElement._ConditionQuantityUnit AS _ConditionQuantityUnit,
  PricingElement._ConditionInactiveReason AS _ConditionInactiveReason
FROM I_PricingElement AS PricingElement
INNER JOIN I_ServiceDocumentEnhcd AS ServiceQuotation ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN R_ServiceQuotationTP AS _ServiceQuotationTP ON ServiceQuotation = _ServiceQuotationTP.ServiceQuotation  -- association [1..1]
;