Ask questions and get answers about Celonis products from experts and peers.
Recently active
Hello there, Im trying to use the notebooks from the examples_ml-suite folder, specifically the 04_root_cause_analysis.ipynb notebook, but Im facing the following error when running the cell: image1636228 38.8 KB image1359568 104 KB
Dear all, I want to do some master data check. For certain fields check if they are used within 3 years (we have 3 year of data in Celonis). E.g. I want to mark all Incoterms from the master table (TINC) which are not used in EKKO.INCO1. First problem was the join of the mastertable. We did it via EKPO <-> T001 <-> TINC With case key SID, BUKRS and MANDT. Dont know if there is a better way. The idea was now to store the distinct values of EKKO.INC01 in a static variable like the following (there is no parent table between TINC & EKKO) static_var = distinct EKKO.INC01 CASE WHEN TINC.INCO1 in <%=static_var%> then USED ELSE NOT USED END Any ideas how to do this? Thanks in advance Stefan
Im currently working on the implementation of the Celonis IBC at a client. The process were analyzing contains parallel process steps. In the old version of Celonis there was an option to indicate Child/Parent columns in the acitivity table (https://celonis.cloud/help/display/CIBC/Parallel+Processes), however I cant find this option in the IBC. Is this option already available somewhere in the IBC? If not when can we expect a release?
I was editing the code in the Transformation task and at the same time, my colleague was also changing the same transformation task. Then, both the codes got reflected, which is not correct. Is there anyway through which we can restrict other person to access that code if someone else is working on it.
Hi, in data jobs I am doing a transformation and need to concat strings in a group by statement. How can I do this? I tried using google, stackoverflow and so on, tested different methods but was not successful (https://stackoverflow.com/questions/21053477/concat-group-by-in-vertica-sql/21054041) Kr, Mara
Hi all, I have the following problem I have two tables Table 1: EBAN -> Content 50 Purchase Order Requisitions (PRs) where 40 already have a created PO Table 2: EKPO -> Content 40 Purchase Order (POs) with key connection to the PRs above. Now I have created an OLAP with two KPIs #PRs#POs When I just show the KPI #PRs the number is 50 (which is correct). When I display both KPIs (#PRs and #POs) the number ist just 40 because the EKPO for that PR is NULL. Is there any chance to show both KPIs in one OLAP but with the correct number #PRs 50 #POs 40 I use the Celonis on Prem version. Many thanks and br Daniel
Hello dear community, I`m sure you kann help me. Ive have an Olap table, in the dimension is the table, which shows certain change activities. As KPI I want to calculat a relation of case count(of change actvities)/case count (dependant of different business cases) In the denominator should be a variable, that shows the case count of different business cases. Thank you, I hope you understood me
Hello, I have an issue with the Parallel processes feature. Here is my activity table and my process configuration in the data-model: CELONIS_ACTIVITY TABLE990362 9.84 KB This is what I expect to see in the process explorer: But this is what I get CELONIS_REAL91534 10.1 KB I do not know why the parallel process configuration is not taken into account Thank you in advance for your help, Best Regards Robin
Dear community, I would like to create an OLAP table to know which activity reworked more than 2 times. Dimension: Repeated Activities KPI: How many cases which contain rework Does anyone know how to create this table? Thank you for your support. Sugano
Dear Celonis-Team, I want to visualize the percentages of Process Connections instead of their absolute values. See the picture below: However, I am too stupid to write the function for this - I would appreciate any help how to get to this result. Have a great day and weekend!
Hello Community! I am new to Celonis, and I have been trying in the last month to develop a job where I need to identify and quantify the Reworked Activities in a Process. I was able to calculate the time spent each time the Activity is executed within a given Case, but I was unable to filter only the Reworked Activities. I only need to show the Number of Hours spent on Rework Activities. What Ive managed to build so far is this: Reworked activities highlighted in yellow image929530 137 KB image1157593 42 KB Dimension TARGET("Activities.Activity) KPI TARGET ( REMAP_TIMESTAMPS ( Activities.Timestamp, MINUTES ) ) - SOURCE ( REMAP_TIMESTAMPS ( Activities.Timestamp, MINUTES ) ) Thank you!
Hi , I want to visualise the most frequent based on the highest to lowest value of the Sales orders. E.g I have Variant 1 -Sales order -->Delivery>Invoice and the total value of sales order passing the variants is 200 ,Nr of Sales orders with this Variant -1 Variant 2 - Sales order -->Delivery Value- 100 and Nr of Sales orders passing through - 2 This should be shown as Variant 1, Variant 2 in Variant explorer . Currently its showing Variant 2>Variant 1 as its based on frequency. How can we achieve this?
Hi Community, I would like to calculate the date difference from the minimum activity start date of the corresponding case to the start date of each activity. My OLAP table looks like this: Dimensions: CASE, SORTING, ACTIVITY, START TIME, END TIME Any ideas how to do this? Thanks, Alex
Hi! Four days ago, about Oct, 22th, I found a undesired behavior on Celonis Snap: everytime I select a filter condition by clicking on visual components, the below error message is shown: Syntax error near [AS] after reading [FILTER DOMAIN. If I select the same filter conditions by clicking on Add new selection buttom It works.
Hi, I have to add new activities to the existing _CEL_P2P_ACTIVITIES table, which was also used for analysis. CELONIS11914934 15.7 KB After i insert the new activities, i make some selects to check the data and appers that is correct. CELONIS21914934 7.71 KB After that somes ok. But when i go to add the new activitie in my analysis from Workspaces, in the new sheet i try to create a new selection, but dons appear the new activities that i insert on the table. CELONIS31914934 30.2 KB If i execute an instruction on SQL i see the activity on table, but on the analysis dons have that. Did I miss any step to do, i need to make a some regeneration table or some like that? Thanks all
Hello Celonis community,I want to determine the number of data records in vertica for all tables of a schema (SAP System).The easiest way should be via the system table tablesso I get all tables of a SAP connection, which also worksselect * from tables where table_schema = XYZbut unfortunately the following does not work:select t.table_name,(select count(1) from t.table_name) as table_row_countfrom tables as t where t.table_schema = 'XYZ-> Execution error: Not allowed to access schema tthe other way via a system table does not work reliably:SELECT table_schema,table_name,SUM(row_count) AS row_countFROM (SELECT table_schema,table_name,NVL(CASEWHEN NOT is_segmented THEN (row_count / node_cnt)::INTELSE row_countEND, 0) row_countFROM (SELECT t.table_schema,t.table_name,ps.projection_name,(SELECT MIN(is_segmented)FROM projections pWHERE p.projection_name = ps.projection_nameAND p.projection_schema = ps.anchor_table_schema) is_segmented,node_cnt,SUM(ps.row_count - NVL(dv.deleted_row_c
Hi there, in the ML workbench, there is an API call to push data to a data pool data_pool.push_table(...) Is there also a way to pull data (eg a specific table) from the data pool? Couldnt find something like data_pool.pull_table(...) Best, Benedikt
Hi team, I am trying to upload a .csv file in to the Celonis Frontend datamodel. but everytime i do that press on reload, im getting a File connection not found error. I searched the community and i cannot seem to find a reason for this. Any suggestion would be helpful. Thank you.
Hi Team, I am trying to create a miltiline graph for two dimensions (local market and Month) for single KPI (Average throughput time). Celonis creates separate combination for each market+Month Is there any way I can create a graph something like below image854371 24.7 KB Note: I do not want to create separate KPI for each market and throughput time as market list is quite big Thanks, Amogh
Need to calculate time spent on Credit hold activity for order to cash process and populate a column of OLAP table but credit hold activity is denoted by 2 names in activity table 1)Set Credit Hold 2)Set Default Credit Hold.What should be the formula for thisI have used formula(CALC_THROUGHPUT(FIRST_OCCURRENCE[Set Default Credit Hold] TO LAST_OCCURRENCE[Release Credit Hold], REMAP_TIMESTAMPS("_CEL_O2C_ACTIVITIES".EVENTTIME, HOURS)))But I need to put below condition as well for same column(CALC_THROUGHPUT(FIRST_OCCURRENCE[Set Credit Hold] TO LAST_OCCURRENCE[Release Credit Hold], REMAP_TIMESTAMPS("_CEL_O2C_ACTIVITIES".EVENTTIME, HOURS)))
Is there an inbuilt process connector available in IBC for Success Factor- a Human Capital Management system
Dear All I am looking for a solution to calculate a KPI based on a condition I tried it with this statement but there is an error CASE WHEN EKBE.VGABE LIKE 2 THEN SUM(EKBE.WRBTR) ELSE 0 END)
Hi, Are there any process connectors, data model and analysis in healthcare domain or pharmacy related ?
Hi, I want to calculate the time spent by all users in all the cases handled by them in the ITSM background. Can you please help in the implementation of the same. An example of the problem is given below:- Case id Eventime Activity User 1 01-01-20 change priority A Solution should be like this:- 1 02-01-20 change severity A Time spent User 1 03-01-20 change owner A 3 days A 1 04-01-20 create action B 2 days B 1 05-01-20 execute action B 2 05-01-20 create ticket B 2 06-01-20 change priority B
Hi, I would like to merge this two filter togheter but I dont found the right formula : FILTER EKKO.BSART IN (ZNB , Z3P, ZTR, ZRS) and FILTER EKKO.EKGRP ***!= (995) with FILTER EKKO.BSART IN ( ZST , Z3P, ZTR, ZRS) and FILTER EKKO.EKGRP = 995 ; Thanks in advance.
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.