C_BusSolnOrdItmFinancialQ

DDL: C_BUSSOLNORDITMFINANCIALQ Type: view CONSUMPTION

Solution Order Item Financials - Query

C_BusSolnOrdItmFinancialQ (Consumption)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sales

C_BusSolnOrdItmFinancialQ is a Consumption CDS View that provides data about "Solution Order Item Financials - Query" in SAP S/4HANA. It reads from 1 data source (I_BusSolnOrdItmFinancialCube) and exposes 32 fields with key fields ServiceObjectType, BusinessSolutionOrder, BusinessSolutionOrderItem.

SAP Help Documentation

CategorySolution Business Analytics
Data CategoryConsumption
Corresponding DataSource2CCBSORDITMFINQRY
Purpose
This CDS view provides the data to answer the following business questions: What is my solution order volume for a given time period? What is my solution order volume by sales organization? How many solution orders do I have in a specific lifecycle status, for example, how many are in released status? What is my revenue, cost, and profit margin for a specific product/products? What is my net value of solution orders by item category over a period of time? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations One of the following business catalogs needs to be assigned to a user to be able to use this CDS view: Solution - Solution Order Analytics ( SAP_S4CRM_BC_SOLN_ORD_ANA_PC )

Structure
Parameters The parameters of the CDS view are as follows: P_DisplayCurrency used to specify the target currency for currency conversion. Further important fields Important fields in this view include the following: Field Name Description Measure or Attribute SalesOrganization Sales Organization Attribute BusinessSolutionOrder Solution Order Attribute BusinessSolutionOrderItem Solution Order Item Attribute SoldToParty Sold-To Party Attribute BusSolnOrdOpgMarginRatio Margin in Percent Measure TotBusSolnOrdItmNetAmtPerPerd Net Value of Solution Orders Measure NrOfReldBusSolnOrders No. of Released Solution Orders Measure BusSolnOrdCostAmtInDC Recognized Cost Measure

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSales
Application ComponentCRM-S4-ANA-CDS
CapabilitiesAnalytical Query
PackageSales for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_BusSolnOrdItmFinancialCube I_BusSolnOrdItmFinancialCube from

Parameters (1)

NameTypeDefault
P_DisplayCurrency vdm_v_display_currency

Annotations (15)

NameValueLevelField
EndUserText.label Solution Order Item Financials - Query view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AbapCatalog.sqlViewName CBSORDITMFINQRY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.modelingPattern #ANALYTICAL_QUERY view
Analytics.query true view
Metadata.ignorePropagatedAnnotations true view
OData.publish true view

Fields (32)

KeyFieldSource TableSource FieldDescription
KEY ServiceObjectType ServiceObjectType Transaction Category
KEY BusinessSolutionOrder BusinessSolutionOrder Solution Order
KEY BusinessSolutionOrderItem BusinessSolutionOrderItem Shortened Item Number in Document
BusSolnOrdType BusSolnOrdType Business Transaction Type
BusSolnOrdDescription BusSolnOrdDescription Solution Order Description
BusSolnOrdItmDescription BusSolnOrdItmDescription Solution Order Item Description
DistributionChannel DistributionChannel Distribution Channel
Division Division Internal Division ID
SalesOrganization SalesOrganization Sales Organization
SalesOffice SalesOffice Sales Office
SalesGroup SalesGroup Sales Group
SoldToParty SoldToParty Sold-to Party
Country Country Venue: Ctry/Reg
Region Region Region (State, Province, County)
ServiceDocItemCategory ServiceDocItemCategory Item Category
Product Product Product Number
PostingDate PostingDate Posting Date for a Business Transaction
ProductGroup ProductGroup Product Sold Group
DisplayCurrency DisplayCurrency Display Currency
ServiceDocumentItemObjectType ServiceDocumentItemObjectType CRM Item Object Type
CompanyCodeCurrency CompanyCodeCurrency Company Code Currency
BusSolnOrdOpgMarginRatio Operating Margin Global Currency Percent
NrOfOpenBusSolnOrders NrOfOpenBusSolnOrders No. of Open and In Process Solution Orders
NrOfReldBusSolnOrders NrOfReldBusSolnOrders No. of Released Solution Orders
NrOfCmpltdBusSolnOrders NrOfCmpltdBusSolnOrders No. of Completed Solution Orders
BusSolnOrdStatus BusSolnOrdStatus Life Cycle Status
BusSolnOrdItmStatus BusSolnOrdItmStatus Life Cycle Status
ServiceDocItemCreationDate ServiceDocItemCreationDate Item Created On
ServiceDocumentCreationDate ServiceDocumentCreationDate Order Created On
BusSolnOrdCreationQuarter BusSolnOrdCreationQuarter Calendar Quarter
BusSolnOrdCreationMonth BusSolnOrdCreationMonth Calendar Month
BusSolnOrdCreationYear BusSolnOrdCreationYear Calendar Year

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_BusSolnOrdItmFinancialQ.
-- 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.
-- Parameters: P_DisplayCurrency : vdm_v_display_currency

CREATE VIEW C_BusSolnOrdItmFinancialQ AS
SELECT
  ServiceObjectType,
  BusinessSolutionOrder,
  BusinessSolutionOrderItem,
  BusSolnOrdType,
  BusSolnOrdDescription,
  BusSolnOrdItmDescription,
  DistributionChannel,
  Division,
  SalesOrganization,
  SalesOffice,
  SalesGroup,
  SoldToParty,
  Country,
  Region,
  ServiceDocItemCategory,
  Product,
  PostingDate,
  ProductGroup,
  DisplayCurrency,
  ServiceDocumentItemObjectType,
  CompanyCodeCurrency,
  cast (0 as fis_operatingmargin_ksl) AS BusSolnOrdOpgMarginRatio,
  NrOfOpenBusSolnOrders,
  NrOfReldBusSolnOrders,
  NrOfCmpltdBusSolnOrders,
  BusSolnOrdStatus,
  BusSolnOrdItmStatus,
  ServiceDocItemCreationDate,
  ServiceDocumentCreationDate,
  BusSolnOrdCreationQuarter,
  BusSolnOrdCreationMonth,
  BusSolnOrdCreationYear
FROM I_BusSolnOrdItmFinancialCube
;