Symptom
- A need to create a SIGNAL query to find the ratio of a dimension example (payment method) to the total cases in SAP Signavio Process Intelligence.
- The aim is to represent this ratio in a Table widget.
Environment
Investigations for SAP Signavio Process Intelligence
Reproducing the Issue
- Open SAP Signavio Process Intelligence.
- Navigate to the Processes section.
- Attempt to write a SIGNAL query to find the ratio of each payment method to the total cases.
Resolution
- Navigate to the Processes section in SAP Signavio Process Intelligence.
- Use the SIGNAL WINDOW functions to create a query.
- The SIGNAL code should be structured as follows:
SELECT DISTINCT "payment Method",
COUNT("CASE_ID") OVER(PARTITION BY "payment Method") AS "Cases per method",
COUNT("CASE_ID") OVER(PARTITION BY "payment Method") * 100 / COUNT("CASE_ID") OVER() AS "Percentage (%)"
FROM THIS_PROCESS
ORDER BY 1
- Test the SIGNAL code with your data.
- If successful, the ratio of each payment method to the total cases will be represented in a Table widget.
See Also
Keywords
SAP Signavio Process Intelligence, SIGNAL query, ratio, payment method, table widget, case level attribute, processes, investigations. , KBA , BPI-SIG-PI-INV , Investigations for SAP Signavio Process Intelligence , BPI-SIG-PI-SIG , SiGNAL for SAP Signavio Process Intelligence , Problem
Product
SAP Signavio Process Intelligence all versions