Not sure where to post? Ask your product-related questions here and get support from the community.
Recently active
I wanted to use Get Message module of Microsoft 365 email in my Action Flow. But I don't know what does each field mean and what are the accepted values for those fields. For example in the screenshot below.I checked Celonis as well as in make.com documentation, but none of the place I found the proper documentation. Thus, can someone suggest where I should look for documentation on Microsoft 365 module.
I have the following scenario, there is a component table inside a view each column is related to some KPIs, and in other columns, the values are coming from inputs that the user inserts manually inside the Apps. It means that some values don't exist in the data model or can be generated with any table since they are inserted manually. I would like to know if it's possible to create an action flow that reads all the values from that table in the studio and sends the data to a data pool. I was checking the documentation, but it seems that all modules from Celonis are only capable of reading data that exists in a data model or a knowledge model but not from a table component.
Could you tell how to set up the Share Link button?(Attached below) The permissions are also fine for the administrator in the target environment.I would be grateful if you could let me know.
In my output (OLAP) table I want to have each activity name from the activity table and then an overview of the number of cases in which that activity name has occurred. Then I want to get an overview of the number of cases in which that activity name has occurred two times, three times, or multiple times etc. I know that with the following code I can get the number of cases where the activity happened at least 1 time, but I do not know how to calculate the number of cases where the activity happened 1 time and not more often. SUM(CASE WHEN INDEX_ACTIVITY_TYPE ("ACTIVITY_TABLE"."ACTIVITY") = 1 THEN 1 ELSE 0 END) The other thing I still miss is how I can calculate the number of cases in which that activity occurred >=2 times. When I change the formula to >=2, I get the wrong count as then a case with 4 activity occurrences is counted as 3 instead of 1 (it counts the second occurrence, third occurrence and fourth occurrence all as one 'case'). Is there
I am trying to configure a comment component in the new views. I followed all the steps in the documentation but it is still not working. Is there additional documentation or other steps to configure the component that is not in the documentation?
I would like to stack bar graphs on top of each other like this - I see there is an option to "Stacked (on Primary Axis)": But it looks like when I add a secondary axis that option disappears - Does that mean it is not possible in Analysis to combine a stacked bar graph with a line graph on the secondary axis? Or is there a way to combine a stacked bar chart on the primary axis with a line chart on the secondary axis?
"Scroll from right" doesn't seem to work in View
I created a "Chart" component in studio, and it shows the chart from the entire duration of the data on a monthly frequency. I want to show the data month-wise but limit it to 12 months with an option to scroll to the left to see the earlier months data. There is no such option. We have this option in Process Analytics but not when creating the Execution App / View. Is this a product limitation?
In my output (OLAP) table I want to have each activity name from the activity table and then an overview of the number of cases in which that activity name has occurred. Then I want to get an overview of the number of cases in which that activity name has occurred two times, three times, or multiple times etc. I know that with the following code I can get the number of cases where the activity happened at least 1 time, but I do not know how to calculate the number of cases where the activity happened 1 time and not more often. SUM(CASE WHEN INDEX_ACTIVITY_TYPE ("ACTIVITY_TABLE"."ACTIVITY") = 1 THEN 1 ELSE 0 END) The other thing I still miss is how I can calculate the number of cases in which that activity occurred >=2 times. When I change the formula to >=2, I get the wrong count as then a case with 4 activity occurrences is counted as 3 instead of 1 (it counts the second occurrence, third occurrence and fourth occurrence all as one 'case'). Is there a
Hello everyone, I'm trying to connect table ekpo and lips in order to get the sum of the field LGMNG for every PO and its corresponding VBELN from VBAP and VBELN from VBFA. The pql code I am using is the following one:BIND("EKPO", PU_SUM("GSR_VBAP", BIND("GSR_VBFA", "GSR_LIPS"."LGMNG"))) This works well when I only have unique VBELN from VBFA for a VBELN from VBAP. My problem is when I have differents VBELN from VBFA for one same VBELN from VBAP, as it sums all te quantities as one, when I want it sepparated. In my OLAP TABLE I only want to show the first VBELN from VBFA, so I use this code: BIND("EKPO",PU_FIRST("GSR_VBAP","GSR_VBFA"."VBELN")) but i get the quantities from LGMNG for all the other VBELN from VBFA which belong to the same VBELN from VBAP. I hope can help here. Many thanks.
We would like to create a bar chart in views where the dimension input is not directly available from any field in the model and where the measure logic depends on the value of this custom dimension. The idea was therefore to create a table in the model and use this as custom input for the dimension while using a CASE WHEN statement to create the different measures depending on the value of the customized dimension like this: CASE WHEN “Custom Dimension” = ‘X’ THEN KPI("KPI1") CASE WHEN “Custom Dimension” = ‘Y’ THEN KPI("KPI2")..... etc. Since the custom table is not linked to the model we get a PQL error that ‘No common table could be found....’. Is there any workaround for this in order to be able to use custom dimensions in an easy way?
How can I answer, do customers have significantly different behavior if these deviations happen in an order-to-cash process? Any ideas of KPIs that I could build?
I got some error in my console: You have reached your 1GB data upload limit -> in celonis error what can I do What can I do to resolve this ?
Hi all :), is it possible to upload a excel file to the data model and connect it to the other tables only via action flows, or perhaps via the ML workbench. Links and Steps how to do it would be perfect, thanks in advance all :)
Hello celopeers,Between yesterday and today my team has noticed problems in the execution of Skills execution apps from the Marketplace and skills developed by my team, in different productive environments.I opened a support ticket but we have not received a response. Maybe someone else is experiencing the same problems or someone from the Celonis team can give us more information? Best regards.
Does Cleonis 4.6 On-Prem support OS version SLES 15.5?
Why do my Views(New) keep jumping to the first tab when I go in to edit mode?
Has any one migrated or in the process of migration from using SAP ECC to S/4 Hana? if so, is there a change to the architecture by which you will be connecting?
I have created a custom extractor to Extract Success Factors Data using Basic Authentication. When I am generating response, I either get no response or incorrect response for datetime columns. Has anyone faced this before?
Permissions required to read excel fill from SharePoint to celonis ML workbench?
In the apps, we are building insights around missed deliveries. There is a field where user can add comments of what happened and some investigation, however, there is a character limitation which is not highlighted upfront. What is the exact limitation? Can it be changed?
Hello everyone, I'm trying to calculate wit PQL different metrics like the Number of cases which flow through a certain process with specified activities . I'm using activity_lead and pu_first for that. For example (this is the PIZZA CASE): SUM( CASE WHEN PU_FIRST("CASE_TABLE", "EVENT_TABLE"."ACTIVITY_EN") = 'Order by phone' AND ACTIVITY_LEAD("EVENT_TABLE"."ACTIVITY_EN", 1) = 'Start preparing pizza' AND ACTIVITY_LEAD("EVENT_TABLE"."ACTIVITY_EN", 2) = 'Start baking pizza' AND ACTIVITY_LEAD("EVENT_TABLE"."ACTIVITY_EN", 3) = 'Baking pizza ready' AND ACTIVITY_LEAD("EVENT_TABLE"."ACTIVITY_EN", 4) = 'Plan route' AND ACTIVITY_LEAD("EVENT_TABLE"."ACTIVITY_EN", 5) = 'Departure pizza' AND ACTIVITY_LEAD("EVENT_TABLE"."ACTIVITY_EN", 6) = 'Pizza arrives at customer'
Hello everyone.I'm having some trouble trying to understand how this kpi works. KPI(PURCHASING_LEAD_TIME_MARC_PU_AVG_PARAMETERIZED,${SSL_TIMEFRAME_VARIABLE},0) PURCHASING_LEAD_TIME_MARC_PU_AVG_PARAMETERIZED--> this is another kpi in KM which I have figured how it works. My problem is that I do not know how the other part (,${SSL_TIMEFRAME_VARIABLE},0) is exactly affecting the result of the main KPI. Hope someone can give me a hand here. Thank you all!
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.