<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged kpi</title>
<link>https://overflow.efficy.io/?qa=tag/kpi</link>
<description>Powered by Question2Answer</description>
<item>
<title>Corporate 2021 : Migration des graphiques</title>
<link>https://overflow.efficy.io/?qa=6210/corporate-2021-migration-des-graphiques</link>
<description>&lt;p&gt;Une des nouveautés de la v2021 est qu’un graphique peut afficher plusieurs indicateurs en même temps.&lt;/p&gt;

&lt;p&gt;Afin que cela soit possible, un nouveau champ multivalué a été créé appelé SdiIndicators. &lt;br&gt;
Et la liste de recherche SNADISPLAY modifiée à cet effet contient un insource com.edeal.frontline.helper.custom.CustomListSnapshotDisplay dont le traitement fait appel à la table MvaSdiIndicators. &lt;br&gt;
Dorénavant,afin d’afficher les anciens graphiques dans la recherche, une migration est nécessaire de SdiSnaID vers SdiIndicators.&lt;br&gt;
Rien de plus simple : &lt;br&gt;
1.Récupérer le SdiID d’un graphique à migrer&lt;br&gt;
2.saisir dans la barre du navigateur : &lt;a&gt;//read_snapshotdisplay.fl?id=********&quot;&amp;gt;https:////read_snapshotdisplay.fl?id=********&lt;/a&gt;&lt;br&gt;
3.Migration auto&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=12157724768338941439&quot;&gt;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=12157724768338941439&lt;/a&gt;&lt;/p&gt;
</description>
<category>E-Deal support</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6210/corporate-2021-migration-des-graphiques</guid>
<pubDate>Fri, 02 Jul 2021 14:08:32 +0000</pubDate>
</item>
<item>
<title>EDEAL Version 2017 : Excel report limitation ?</title>
<link>https://overflow.efficy.io/?qa=6189/edeal-version-2017-excel-report-limitation</link>
<description>&lt;p&gt;Hi, One of our clients is trying to use personalised list as source of excel report. They put in default criterias (eastern countries in 2 criterias and they have all european countries in the base). This is causing a bug and if we simplify the list (only one or 2 &quot;pre&quot; filtered criteria), it works.&lt;/p&gt;

&lt;p&gt;Is there a recommendation for the use of list in the excel reports to give them ?&lt;/p&gt;

&lt;p&gt;Thanks&lt;br&gt;
Emilie&lt;/p&gt;
</description>
<category>E-Deal support</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6189/edeal-version-2017-excel-report-limitation</guid>
<pubDate>Mon, 21 Jun 2021 12:59:15 +0000</pubDate>
</item>
<item>
<title>Error with a task that calculates the indicators for the KPI's in edeal</title>
<link>https://overflow.efficy.io/?qa=5823/error-with-task-that-calculates-the-indicators-for-kpis-edeal</link>
<description>&lt;p&gt;Hi Team,&lt;/p&gt;

&lt;p&gt;I have a task that fails while calculating the KPI indicators for project &lt;code&gt;IRCEM&lt;/code&gt;. &lt;/p&gt;

&lt;p&gt;Version of edeal deployed: &lt;code&gt;Mid  2081 Version 81&lt;/code&gt;&lt;br&gt;
Database being used is a &lt;code&gt;'MS SQL Server'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In the logs of the task, i could find the following text: &lt;code&gt;Error recording dataset&lt;/code&gt; :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;20/01/2021 22:00Error during indicator processing linked to 'adm-9' chart code: Error recording dataset
20/01/2021 22:00Error during indicator processing linked to 'adm-8' chart code: Error recording dataset
20/01/2021 22:00Error during indicator processing linked to 'adm-22' chart code: Error recording dataset
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Searching for the error text in the project space gave me nothing. I'm hoping to understand why this issue occured with the task and how could I fix it.&lt;/p&gt;

&lt;p&gt;Any help would be appreciated.&lt;/p&gt;

&lt;p&gt;Please let me know if you would require any additional information. &lt;/p&gt;
</description>
<category>E-Deal support</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5823/error-with-task-that-calculates-the-indicators-for-kpis-edeal</guid>
<pubDate>Thu, 21 Jan 2021 15:37:44 +0000</pubDate>
</item>
<item>
<title>Access the table &quot;sys_changed&quot; with queries module (and KPI)</title>
<link>https://overflow.efficy.io/?qa=4922/access-the-table-syschanged-with-queries-module-and-kpi</link>
<description>&lt;p&gt;Hello the team, &lt;/p&gt;

&lt;p&gt;One of my customer would like to create KPI (with the widget module), based on the sys_changed table. They would like to know when and who change the value of the field &quot;status&quot;.&lt;/p&gt;

&lt;p&gt;Is that possible to get this in a widget (without developing the widget himself, but the access to the sys_changed table).&lt;/p&gt;

&lt;p&gt;I wrote this query a long time ago, in pure SQL to do that (can probably be improved) : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;select 
(select name from opportunities where k_opportunity = sc.K_1) as name,
(select status from lk_oppo_status where k_oppo_status = sc.comment ) as 'Before change',
sc.d_change, 
(select status from lk_oppo_status where k_oppo_status = 
       ( select COMMENT from 
             (
                    select top 2 comment, K_3, K_TABLE, K_1, D_CHANGE, Row_Number() over (order by d_change) as rownum 
                    from SYS_CHANGED 
                    where d_change &amp;gt; sc.d_change and K_TABLE = sc.k_table and k_3 = sc.k_3  and K_1 = sc.k_1
             ) as sc2
       where sc2.K_3 = sc.K_3 and sc2.K_TABLE = sc.K_TABLE and sc2.K_1 = sc.K_1 and rownum = 1
)
) as 'After change',
( select D_CHANGE from 
       (
             select top 2 comment, K_3, K_TABLE, K_1, D_CHANGE, Row_Number() over (order by d_change) as rownum 
             from SYS_CHANGED 
             where d_change &amp;gt; sc.d_change and K_TABLE = sc.k_table and k_3 = sc.k_3  and K_1 = sc.k_1
       ) as sc2
where sc2.K_3 = sc.k_3 and sc2.K_TABLE = sc.K_TABLE and sc2.K_1 = sc.K_1 and rownum = 1
) as 'after change date'
from sys_changed as sc
where sc.K_TABLE = 22000 and sc.k_3 = 12  and year(d_change) &amp;gt; 2015 and (select nature from r_opportunities where k_opportunity = sc.K_1)  = 6
order by d_change desc
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Regards, &lt;/p&gt;

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4922/access-the-table-syschanged-with-queries-module-and-kpi</guid>
<pubDate>Tue, 15 Oct 2019 16:30:15 +0000</pubDate>
</item>
</channel>
</rss>