<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions and answers in Efficy Designer (Conficy)</title>
<link>https://overflow.efficy.io/?qa=qa/developers/efficy-designer-conficy</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: Efficy 11.2: How do I create a new database?</title>
<link>https://overflow.efficy.io/?qa=4014/efficy-11-2-how-do-i-create-a-new-database&amp;show=6554#a6554</link>
<description>&lt;p&gt;We have created a manual (Project Guide) with steps on how to &lt;strong&gt;Create a blank new database&lt;/strong&gt;, even on an environment without any customer alias.&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/projectguides/create-database#create-blank-database&quot;&gt;https://help.efficy.io/edn/projectguides/create-database#create-blank-database&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4014/efficy-11-2-how-do-i-create-a-new-database&amp;show=6554#a6554</guid>
<pubDate>Tue, 24 May 2022 17:27:07 +0000</pubDate>
</item>
<item>
<title>The tooltip does not appear when the mouse cursor hovers over a checkbox type field</title>
<link>https://overflow.efficy.io/?qa=6293/tooltip-does-appear-when-mouse-cursor-hovers-checkbox-field</link>
<description>&lt;p&gt;The tooltip does not appear when the mouse cursor hovers over a checkbox type field or Lookup, date etc ..&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6293/tooltip-does-appear-when-mouse-cursor-hovers-checkbox-field</guid>
<pubDate>Fri, 17 Sep 2021 15:26:01 +0000</pubDate>
</item>
<item>
<title>Answered: master-detail field in category</title>
<link>https://overflow.efficy.io/?qa=6235/master-detail-field-in-category&amp;show=6245#a6245</link>
<description>&lt;p&gt;Hi Vincent,&lt;/p&gt;

&lt;p&gt;I will speak about this post in our Technical Architect Meeting.&lt;br&gt;
For the moment, we have this work around (only accessible to Efficy developpers) &lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://submariners.efficy.com/crm/view/Docu/368220&quot;&gt;&lt;/a&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://submariners.efficy.com/crm/view/Docu/368220&quot;&gt;https://submariners.efficy.com/crm/view/Docu/368220&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6235/master-detail-field-in-category&amp;show=6245#a6245</guid>
<pubDate>Mon, 02 Aug 2021 10:12:24 +0000</pubDate>
</item>
<item>
<title>Answered: Special parameter for schema name in LOOKUPASSOCIATE?</title>
<link>https://overflow.efficy.io/?qa=6169/special-parameter-for-schema-name-in-lookupassociate&amp;show=6176#a6176</link>
<description>&lt;p&gt;Hi Kristof,&lt;/p&gt;

&lt;p&gt;I tested the new configuration with the table SYS_INLINESSQL&lt;br&gt;
cf EDN here : &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/admin/crft_11_otherdevelopments#queryengineimprovements&quot;&gt;&lt;/a&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/admin/crft_11_otherdevelopments#queryengineimprovements&quot;&gt;https://help.efficy.io/edn/admin/crft_11_otherdevelopments#queryengineimprovements&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is working, here are the steps I did : &lt;/p&gt;

&lt;p&gt;1- define in &lt;code&gt;SYS_INLINESQL&lt;/code&gt; the &lt;code&gt;NAME&lt;/code&gt;,&lt;code&gt;ISCUSTOM&lt;/code&gt; and the correct SQL backend column, in my case I was under SQLSERVER so I created the following SQLSERVER SQL query : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;NAME = COMP_TAGS
ISCUTOM = 1
SQLSERVER = 
select &amp;lt;#TABLE NAME=GET_COMPANIES_TAGS_VAL&amp;gt;(COMPANIES.TAGS) 
from &amp;lt;#TABLE NAME=COMPANIES&amp;gt; COMP 
where COMP.K_COMPANY = &amp;lt;#PARAM&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;2- I created my virtual field &lt;br&gt;
The important setting here is the &lt;code&gt;USAGE&lt;/code&gt; column which must be &quot;S&quot;, the &lt;code&gt;K_LOOKUUPTABLE&lt;/code&gt; and &lt;code&gt;K_LOOKUPFIELD&lt;/code&gt; are pointing to the field key to pass to the &lt;code&gt;SYS_INLINE&lt;/code&gt; &lt;code&gt;#param&lt;/code&gt; and in &lt;code&gt;LOOKUPASSOCIATE&lt;/code&gt; you copy past the name of the &lt;code&gt;SYS_INLINESQL&lt;/code&gt; you created previously&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=3274853181508940103&quot; alt=&quot;SYS_FIELDS field definition of V_TAGS&quot;&gt;&lt;/p&gt;

&lt;p&gt;3- I applied the DB Structure from Efficy Designer&lt;/p&gt;

&lt;p&gt;4- I create an Efficy Query, and I display my virtual field, and it works, my virtual field was displayed&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=87374417042721360&quot; alt=&quot;Query Result&quot;&gt;&lt;/p&gt;

&lt;p&gt;Question to R&amp;amp;D : why is this not yet used in Standard ?&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6169/special-parameter-for-schema-name-in-lookupassociate&amp;show=6176#a6176</guid>
<pubDate>Tue, 15 Jun 2021 12:15:15 +0000</pubDate>
</item>
<item>
<title>Answered: Why the user is linked to himself in ACC_GROUPS table ?</title>
<link>https://overflow.efficy.io/?qa=6096/why-the-user-is-linked-to-himself-in-accgroups-table&amp;show=6097#a6097</link>
<description>&lt;p&gt;Hi Stéphane&lt;/p&gt;

&lt;p&gt;Yes, this self link is required for a correct working of the security clause as it allows the selection of records both based on &quot;user link&quot; and also &quot;group link&quot;.&lt;/p&gt;

&lt;p&gt;Note that the &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/projectguides/import_users_scheduler&quot;&gt;ImportUser&lt;/a&gt; plugin correctly makes the self link in &lt;code&gt;ACC_GROUPS&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;this.insertLink(key, key);
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6096/why-the-user-is-linked-to-himself-in-accgroups-table&amp;show=6097#a6097</guid>
<pubDate>Mon, 17 May 2021 09:28:31 +0000</pubDate>
</item>
<item>
<title>Answered: Qlik licence how to map user in 2021</title>
<link>https://overflow.efficy.io/?qa=6052/qlik-licence-how-to-map-user-in-2021&amp;show=6062#a6062</link>
<description>&lt;p&gt;I have an empty Efficy 2021 database and the field is there.&lt;/p&gt;

&lt;p&gt;Are you sure, you don't have any customization of the designer ?&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6052/qlik-licence-how-to-map-user-in-2021&amp;show=6062#a6062</guid>
<pubDate>Thu, 29 Apr 2021 12:19:33 +0000</pubDate>
</item>
<item>
<title>Answered: What are the configurations for public link share</title>
<link>https://overflow.efficy.io/?qa=5992/what-are-the-configurations-for-public-link-share&amp;show=5994#a5994</link>
<description>&lt;p&gt;Hello Nico,&lt;/p&gt;

&lt;p&gt;I think your URL is not correct, on my local installation I have the following which is working : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  &quot;servicy&quot;: {
    &quot;adminMail&quot;: &quot;~&quot;, 
    &quot;createLogFile&quot;: &quot;~&quot;, 
    &quot;sameServerAsEfficy&quot;: &quot;~&quot;, 
    &quot;fileMaxSize&quot;: &quot;~&quot;, 
    &quot;fileMinSize&quot;: &quot;~&quot;, 
    &quot;fileUrl&quot;: &quot;~&quot;, 
    &quot;fileRepository&quot;: &quot;~&quot;, 
    &quot;fileTempUpload&quot;: &quot;~&quot;, 
    &quot;url&quot;: &quot;http:\/\/efficy120\/file&quot;, 
    &quot;userPasswordUrl&quot;: &quot;http:\/\/efficy120\/pwd&quot;, 
    &quot;customerForExtranet&quot;: &quot;~&quot;
  }, 
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5992/what-are-the-configurations-for-public-link-share&amp;show=5994#a5994</guid>
<pubDate>Tue, 23 Mar 2021 17:40:07 +0000</pubDate>
</item>
<item>
<title>Answered: Designer 11.3: error when applying structure to add new field</title>
<link>https://overflow.efficy.io/?qa=5934/designer-11-3-error-when-applying-structure-to-add-new-field&amp;show=5936#a5936</link>
<description>&lt;p&gt;Hello&lt;/p&gt;

&lt;p&gt;With a 99% certainty, I believe you have a duplicate database object (by name), but in another schema.&lt;/p&gt;

&lt;p&gt;e.g. You added a table named COMPANIES on the &lt;code&gt;dbo&lt;/code&gt; schema. Efficy doesn't like tables and views with identical names in other schema's&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5934/designer-11-3-error-when-applying-structure-to-add-new-field&amp;show=5936#a5936</guid>
<pubDate>Wed, 03 Mar 2021 14:04:35 +0000</pubDate>
</item>
<item>
<title>Answered: How SYS_SETTINGS are migrated ?</title>
<link>https://overflow.efficy.io/?qa=5656/how-syssettings-are-migrated&amp;show=5657#a5657</link>
<description>&lt;p&gt;Well, I don't have access to the source code, but I have an impression it works like this:&lt;/p&gt;

&lt;p&gt;Efficy reads settings in the following order:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Hardcoded default settings&lt;/li&gt;
&lt;li&gt;Extend object with object parsed from file &lt;code&gt;ServerSettings.json&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Extend object with object parsed from &lt;code&gt;SYS_SETTINGS&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;When you save the settings via Designer, Efficy also parses and stringifies the JSON, so you get an error when it’s invalid JSON. The &lt;code&gt;~&lt;/code&gt; is the special char that indicates inheritance of the value from a higher level in the settings hierarchy.&lt;/p&gt;

&lt;p&gt;This means that you visually see the new settings in Designer and as soon as you save, you will also find them back in &lt;code&gt;SYS_SETTINGS&lt;/code&gt;. What Efficy uses for a session is always the fully extended object.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5656/how-syssettings-are-migrated&amp;show=5657#a5657</guid>
<pubDate>Wed, 21 Oct 2020 07:08:51 +0000</pubDate>
</item>
<item>
<title>Answered: Designer or Efficy user Switch or replacement</title>
<link>https://overflow.efficy.io/?qa=5420/designer-or-efficy-user-switch-or-replacement&amp;show=5421#a5421</link>
<description>&lt;p&gt;I would also expect that there is a selection of entities that should be mutated to another users and not all. E.g. Tasks, Opportunities, Projects, Cases&lt;/p&gt;

&lt;p&gt;There has to be technically a difference between records that are considered archive and active records. That is ideally based on the OPENED/DONE flag.&lt;/p&gt;

&lt;p&gt;We have developed the concept of user mutations for our largest enterprise customer. The inactive user remains linked, but as inactive. The new user is linked instead. Security is also changed when required. It was made with T-SQL, so I can't easily share a ServerJS module.&lt;/p&gt;

&lt;p&gt;So, my help here is purely functional.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5420/designer-or-efficy-user-switch-or-replacement&amp;show=5421#a5421</guid>
<pubDate>Tue, 05 May 2020 06:22:42 +0000</pubDate>
</item>
<item>
<title>Answered: Could we create companies reference using Efficy designer?</title>
<link>https://overflow.efficy.io/?qa=4849/could-we-create-companies-reference-using-efficy-designer&amp;show=4854#a4854</link>
<description>&lt;p&gt;Of course you can create a reference for a company. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Just duplicate the SYS_FIELDS entry of REFERENCE from another entity and change &lt;code&gt;K_TABLE=10000&lt;/code&gt; and &lt;code&gt;ISCUSTOM=1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Apply the structure&lt;/li&gt;
&lt;li&gt;Change the Company Edit form, add the REFERENCE field&lt;/li&gt;
&lt;/ol&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4849/could-we-create-companies-reference-using-efficy-designer&amp;show=4854#a4854</guid>
<pubDate>Thu, 03 Oct 2019 15:22:33 +0000</pubDate>
</item>
<item>
<title>&quot;Copy Database&quot; (structure only) does not copy the customs form (and the workflow by the way)</title>
<link>https://overflow.efficy.io/?qa=4762/copy-database-structure-only-does-copy-customs-form-workflow</link>
<description>&lt;p&gt;Hello, &lt;/p&gt;

&lt;p&gt;Is this normal that when I want to copy a database (11.3), I don't get the sys_forms customs (with the option &quot;structure only&quot;) ?&lt;/p&gt;

&lt;p&gt;In my opinion, I should have them. I get the customs fields from sys_fields, why not the custom forms ? &lt;/p&gt;

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

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4762/copy-database-structure-only-does-copy-customs-form-workflow</guid>
<pubDate>Tue, 10 Sep 2019 14:57:16 +0000</pubDate>
</item>
<item>
<title>Answered: Efficy 11.3 Database Setting, why is there ~ and not the database default value?</title>
<link>https://overflow.efficy.io/?qa=4628/efficy-database-setting-why-there-and-database-default-value&amp;show=4630#a4630</link>
<description>&lt;p&gt;When the tilde &lt;code&gt;~&lt;/code&gt; char is used, Efficy will inherit the value of that option from the &lt;code&gt;ServerSettings.json&lt;/code&gt; file stored on disk.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4628/efficy-database-setting-why-there-and-database-default-value&amp;show=4630#a4630</guid>
<pubDate>Wed, 31 Jul 2019 10:45:40 +0000</pubDate>
</item>
<item>
<title>Answered: Chronos with Staging Tool</title>
<link>https://overflow.efficy.io/?qa=4603/chronos-with-staging-tool&amp;show=4610#a4610</link>
<description>&lt;p&gt;Hi Kevin,&lt;/p&gt;

&lt;p&gt;You should add the following section to &lt;code&gt;DBStaging.dat&lt;/code&gt;when producing Dump files.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[SYS_TIMELINE]
OutputFile=SYS_TIMELINE.sql
Inserts=1
Updates=1
Deletions=1
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;For Efficy 11.3, it's also interesting to add these (new) tables for the Dashboards, Widgets and Indicators:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[QUERIES]
OutputFile=QUERIES.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_QUERY
[QUER_USER]
OutputFile=QUERIES.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_QUERY,K_USER
[INDICATORS]
OutputFile=QUERIES.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_INDICATOR
[INDC_USER]
OutputFile=QUERIES.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_INDICATOR,K_USER
[WIDGETS]
OutputFile=WIDGETS.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_WIDGET
[WIDG_USER]
OutputFile=WIDGETS.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_WIDGET,K_USER
[DASHBOARDS]
OutputFile=DASHBOARDS.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_DASHBOARD
[DASH_USER]
OutputFile=DASHBOARDS.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_DASHBOARD,K_USER
[DASH_WIDG]
OutputFile=DASHBOARDS.sql
Inserts=1
Updates=1
Deletions=1
KeyFields=K_DASHBOARD,K_WIDGET
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4603/chronos-with-staging-tool&amp;show=4610#a4610</guid>
<pubDate>Mon, 29 Jul 2019 08:11:05 +0000</pubDate>
</item>
<item>
<title>Answered: CAMCARD &amp; K_FLEXMAIL field not found after Migration to 11.2</title>
<link>https://overflow.efficy.io/?qa=4586/camcard-kflexmail-field-not-found-after-migration-to-11-2&amp;show=4598#a4598</link>
<description>&lt;p&gt;i think i have found why the two fields where not created.&lt;/p&gt;

&lt;p&gt;this is an error in the database, linked to a &quot;bad custom&quot;.&lt;/p&gt;

&lt;p&gt;fields have been created in the ACC_ACCOUNT table with i +1 ID  in place of a +10000 id or something like that.&lt;/p&gt;

&lt;p&gt;So the id of these 2 custom fields are the same than the id of the 2 new standard fields described in DB Content.xml&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4586/camcard-kflexmail-field-not-found-after-migration-to-11-2&amp;show=4598#a4598</guid>
<pubDate>Thu, 25 Jul 2019 12:37:58 +0000</pubDate>
</item>
<item>
<title>Answered: Why Migration with conficy  is different than Migration with UpgradeDB.exe</title>
<link>https://overflow.efficy.io/?qa=4593/migration-with-conficy-different-than-migration-upgradedb&amp;show=4597#a4597</link>
<description>&lt;p&gt;What process have you followed to migrate ?&lt;/p&gt;

&lt;p&gt;Here is mine (but I never had to migrate from 2014 to 11.2, only from Efficy 10.0 and above to 11.2 and above) :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Backup the database with SQL Server Management Studio as Full Backup&lt;/li&gt;
&lt;li&gt;Restore the database with SSMS&lt;/li&gt;
&lt;li&gt;Check if there is some orphaned users and correct it (maybe this is your problem ) : &lt;a rel=&quot;nofollow&quot; href=&quot;https://www.fileformat.info/tip/microsoft/sql_orphan_user.htm&quot;&gt;https://www.fileformat.info/tip/microsoft/sql_orphan_user.htm&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Create the DB Alias&lt;/li&gt;
&lt;li&gt;Create the Customer&lt;/li&gt;
&lt;li&gt;Copy / Paste the custom&lt;/li&gt;
&lt;li&gt;Migrate the Database using DBUpgrade.exe&lt;/li&gt;
&lt;li&gt;Migrate the custom using MigrateSecurityContext.exe&lt;/li&gt;
&lt;li&gt;Update Database from Conficy to fix EXTCODE error&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then fix one by one errors that you may encountered.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Sébastien&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4593/migration-with-conficy-different-than-migration-upgradedb&amp;show=4597#a4597</guid>
<pubDate>Thu, 25 Jul 2019 12:33:58 +0000</pubDate>
</item>
<item>
<title>differences and error between migration with conficy and migration with upgradedb.exe</title>
<link>https://overflow.efficy.io/?qa=4594/differences-between-migration-conficy-migration-upgradedb</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;I have some error when migrate a db to Efficy 11.2.&lt;/p&gt;

&lt;p&gt;If i launch the migration with conficy, i have no error, db is migrated and process run till the end, but it seems that the migration is not fully complete because there is some fields not existing  (see &lt;a rel=&quot;nofollow&quot; href=&quot;https://overflow.efficy.com/?qa=4586/camcard-kflexmail-field-not-found-after-migration-to-11-2&quot;&gt;here&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;If i launch the migration with UpgradeDB.exe,  i have some bloking error.&lt;br&gt;
The error is that when the upgrade tools try to create the views, function used in the views are not prefixed by the sql user, and so the migration process stop.&lt;br&gt;
with the migration process from conficy there is not this error.&lt;/p&gt;

&lt;p&gt;see below:&lt;/p&gt;

&lt;p&gt;With upgradeDB.exe:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;create view R_COMPANIES as select COMPANIES.*,
                  (select F_LIBELLE from LK_COMP_RLT_FOREM L1 where L1.K_COMP_RLT_FOREM=COMPANIES.KIND) as R_KIND,
                  (select F_ABREVIATION from LK_N_FORMEJURIDIQUE L2 where L2.K_N_FORMEJURIDIQUE=COMPANIES.LEGALKIND) as R_LEGALKIND,
                  (select F_LIBELLE from LK_N_NACE2008 L3 where L3.K_N_NACE2008=COMPANIES.SECTORCODE) as R_SECTORCODE,
                  (select COUNTRY_FR from LK_COUNTRY L4 where L4.K_COUNTRY=COMPANIES.COUNTRY) as R_COUNTRY,
                  (select F_LIBELLE from LK_N_TYPE_NUM_ENT L5 where L5.K_N_TYPE_NUM_ENT=COMPANIES.F_TYPE_IDENTIFIANT) as R_F_TYPE_IDENTIFIANT,
                  (select F_LIBELLE from LK_N_TAILLE_ENT L6 where L6.K_N_TAILLE_ENT=COMPANIES.F_TAILLE) as R_F_TAILLE,
                  (select F_LIBELLE from LK_N_SITUATIONJURIDIQUE L7 where L7.K_N_SITUATIONJURIDIQUE=COMPANIES.F_SITUATION_JURID) as R_F_SITUATION_JURID,
                  GET_COMPANIES_F_SECTORCODE_VAL(F_SECTORCODELIST) as R_F_SECTORCODELIST,
                  GET_COMPANIES_F_COMM_PARIT_VAL(F_COMM_PARITAIRE) as R_F_COMM_PARITAIRE,
                  (select F_VALUE from LK_COMP_INDFIN L8 where L8.K_COMP_INDFIN=COMPANIES.F_IND_FINANCIERE) as R_F_IND_FINANCIERE,
                  (select F_SEGMENT from LK_COMP_SEGMENT L9 where L9.K_COMP_SEGMENT=COMPANIES.F_SEGMENT) as R_F_SEGMENT,
                  (select F_S_SOC_UE from LK_COMP_S_SOC_UE L10 where L10.K_COMP_S_SOC_UE=COMPANIES.F_S_SOC_UE) as R_F_S_SOC_UE,
                  (select F_VALUE from LK_SEGMENT_SPECIFIQUE L11 where L11.K_SEGMENT_SPECIFIQUE=COMPANIES.F_SEGMENT_SPECIFIQUE) as R_F_SEGMENT_SPECIFIQUE,
                  GET_COMPANIES_F_SEGMENT_MO_VAL(F_SEGMENT_MODE) as R_F_SEGMENT_MODE,
                  (select FULLNAME from ACC_ACCOUNTS L12 where L12.K_USER=COMPANIES.F_RESONSABLE_RELATION) as R_F_RESONSABLE_RELATION from COMPANIES
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;With conficy:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;create view R_COMPANIES as select COMPANIES.*,
                  (select F_LIBELLE from LK_COMP_RLT_FOREM L1 where L1.K_COMP_RLT_FOREM=COMPANIES.KIND) as R_KIND,
                  (select F_ABREVIATION from LK_N_FORMEJURIDIQUE L2 where L2.K_N_FORMEJURIDIQUE=COMPANIES.LEGALKIND) as R_LEGALKIND,
                  (select F_LIBELLE from LK_N_NACE2008 L3 where L3.K_N_NACE2008=COMPANIES.SECTORCODE) as R_SECTORCODE,
                  (select COUNTRY_FR from LK_COUNTRY L4 where L4.K_COUNTRY=COMPANIES.COUNTRY) as R_COUNTRY,
                  (select F_LIBELLE from LK_N_TYPE_NUM_ENT L5 where L5.K_N_TYPE_NUM_ENT=COMPANIES.F_TYPE_IDENTIFIANT) as R_F_TYPE_IDENTIFIANT,
                  (select F_LIBELLE from LK_N_TAILLE_ENT L6 where L6.K_N_TAILLE_ENT=COMPANIES.F_TAILLE) as R_F_TAILLE,
                  (select F_LIBELLE from LK_N_SITUATIONJURIDIQUE L7 where L7.K_N_SITUATIONJURIDIQUE=COMPANIES.F_SITUATION_JURID) as R_F_SITUATION_JURID,
                  A_EFFICY.GET_COMPANIES_F_SECTORCODE_VAL(F_SECTORCODELIST) as R_F_SECTORCODELIST,
                  A_EFFICY.GET_COMPANIES_F_COMM_PARIT_VAL(F_COMM_PARITAIRE) as R_F_COMM_PARITAIRE,
                  (select F_VALUE from LK_COMP_INDFIN L8 where L8.K_COMP_INDFIN=COMPANIES.F_IND_FINANCIERE) as R_F_IND_FINANCIERE,
                  (select F_SEGMENT from LK_COMP_SEGMENT L9 where L9.K_COMP_SEGMENT=COMPANIES.F_SEGMENT) as R_F_SEGMENT,
                  (select F_S_SOC_UE from LK_COMP_S_SOC_UE L10 where L10.K_COMP_S_SOC_UE=COMPANIES.F_S_SOC_UE) as R_F_S_SOC_UE,
                  (select F_VALUE from LK_SEGMENT_SPECIFIQUE L11 where L11.K_SEGMENT_SPECIFIQUE=COMPANIES.F_SEGMENT_SPECIFIQUE) as R_F_SEGMENT_SPECIFIQUE,
                  A_EFFICY.GET_COMPANIES_F_SEGMENT_MO_VAL(F_SEGMENT_MODE) as R_F_SEGMENT_MODE,
                  (select FULLNAME from ACC_ACCOUNTS L12 where L12.K_USER=COMPANIES.F_RESONSABLE_RELATION) as R_F_RESONSABLE_RELATION from COMPANIES
13:43:10.263&amp;gt;     update SYS_DATABASE set DBVERSION = '11.2.47'
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4594/differences-between-migration-conficy-migration-upgradedb</guid>
<pubDate>Thu, 25 Jul 2019 11:49:10 +0000</pubDate>
</item>
<item>
<title>Answered: Why are the references in the Designer limited to the rights on them?</title>
<link>https://overflow.efficy.io/?qa=4502/why-are-the-references-the-designer-limited-the-rights-them&amp;show=4518#a4518</link>
<description>&lt;p&gt;That never was intended, funny it's taken 15 years to get noticed.&lt;/p&gt;

&lt;p&gt;We should remove the security from this query, I'll wait for the support Case to arrive at the R&amp;amp;D.&lt;/p&gt;

&lt;p&gt;Thanks for signaling this issue!&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4502/why-are-the-references-the-designer-limited-the-rights-them&amp;show=4518#a4518</guid>
<pubDate>Fri, 05 Jul 2019 08:32:02 +0000</pubDate>
</item>
<item>
<title>Answered: How to whitelist all ipv4 and ipv6 ranges for an API key?</title>
<link>https://overflow.efficy.io/?qa=4202/how-to-whitelist-all-ipv4-and-ipv6-ranges-for-an-api-key&amp;show=4209#a4209</link>
<description>&lt;p&gt;&lt;code&gt;*&lt;/code&gt; should do the trick.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4202/how-to-whitelist-all-ipv4-and-ipv6-ranges-for-an-api-key&amp;show=4209#a4209</guid>
<pubDate>Thu, 09 May 2019 12:48:40 +0000</pubDate>
</item>
<item>
<title>Answered: Workflow - Array</title>
<link>https://overflow.efficy.io/?qa=3922/workflow-array&amp;show=3923#a3923</link>
<description>&lt;p&gt;Work with a native JS array first and only convert it to a variant Array when you need to use it on an Efficy API method.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;var users = [Efficy.currentUserId]; 
users.push(31);

Efficy.setUsers(contextHandle, varArrayOf(users), false, false);
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3922/workflow-array&amp;show=3923#a3923</guid>
<pubDate>Thu, 07 Feb 2019 12:18:02 +0000</pubDate>
</item>
<item>
<title>Answered: Linking user to contact in designer</title>
<link>https://overflow.efficy.io/?qa=3722/linking-user-to-contact-in-designer&amp;show=3724#a3724</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;This was a known issue and has been fixed in buid 14832 of Efficy 11.1.&lt;/p&gt;

&lt;p&gt;Kind regards,&lt;/p&gt;

&lt;p&gt;Alexis.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3722/linking-user-to-contact-in-designer&amp;show=3724#a3724</guid>
<pubDate>Mon, 10 Dec 2018 08:21:51 +0000</pubDate>
</item>
<item>
<title>Answered: Rights on categories + chronos</title>
<link>https://overflow.efficy.io/?qa=3565/rights-on-categories-chronos&amp;show=3566#a3566</link>
<description>&lt;p&gt;Hey Loic.&lt;/p&gt;

&lt;p&gt;I only see the information of a category in the chronos if the field is selected in the Chronos form.&lt;/p&gt;

&lt;p&gt;The COMP$ADDRESS.CITY field for instance, I added it as a test&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=14778456662903937773&quot; alt=&quot;Chronos Configuration - Company&quot;&gt;&lt;/p&gt;

&lt;p&gt;Only then I see the field information in the chronos.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=5549136666444489877&quot; alt=&quot;Chronos field change log&quot;&gt;&lt;/p&gt;

&lt;p&gt;If I remove the field again from the form, it is no longer visible.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=15122190155732048884&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;Double check if the field you don't want to share with all users is part of the form? If so, remove it.&lt;/p&gt;

&lt;p&gt;There is also security on the change history. If I don't have rights, I don't see the category change&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=4127571959062886264&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;When I have the rights, I do see the change. So, that works pretty well out of the box.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=7348536634542045210&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;Tested with Efficy 11.1&lt;/p&gt;

&lt;p&gt;Regards,&lt;br&gt;
Kristof&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3565/rights-on-categories-chronos&amp;show=3566#a3566</guid>
<pubDate>Tue, 25 Sep 2018 09:43:51 +0000</pubDate>
</item>
<item>
<title>SSO or LDAP integration available in the cloud</title>
<link>https://overflow.efficy.io/?qa=2858/sso-or-ldap-integration-available-in-the-cloud</link>
<description>&lt;p&gt;When Efficy is used in our cloud, can the SSO or LDAP authentication be used, or is this only available for Efficy On-Premise.&lt;/p&gt;

&lt;p&gt;A customer in Holland wants users to authenticate via his Active Directory.&lt;/p&gt;

&lt;p&gt;If it is available, how can it be configured ?&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2858/sso-or-ldap-integration-available-in-the-cloud</guid>
<pubDate>Wed, 27 Dec 2017 12:34:05 +0000</pubDate>
</item>
<item>
<title>Answered: Would anyone have the postcode file for UK?</title>
<link>https://overflow.efficy.io/?qa=2662/would-anyone-have-the-postcode-file-for-uk&amp;show=2687#a2687</link>
<description>&lt;p&gt;info comming from mail to project team:&lt;/p&gt;

&lt;p&gt;Complete version: &lt;a rel=&quot;nofollow&quot; href=&quot;https://www.doogal.co.uk/PostcodeDistrictsCSV.ashx&quot;&gt;https://www.doogal.co.uk/PostcodeDistrictsCSV.ashx&lt;/a&gt;&lt;br&gt;
Simplified version: &lt;a rel=&quot;nofollow&quot; href=&quot;https://www.doogal.co.uk/files/PostcodeDistrictsSplit.csv&quot;&gt;https://www.doogal.co.uk/files/PostcodeDistrictsSplit.csv&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;or JSON&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/Gibbs/uk-postcodes/blob/master/data/postcodes.json&quot;&gt;https://github.com/Gibbs/uk-postcodes/blob/master/data/postcodes.json&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2662/would-anyone-have-the-postcode-file-for-uk&amp;show=2687#a2687</guid>
<pubDate>Tue, 12 Sep 2017 12:43:43 +0000</pubDate>
</item>
<item>
<title>Answered: Search into a MEMO field</title>
<link>https://overflow.efficy.io/?qa=2637/search-into-a-memo-field&amp;show=2642#a2642</link>
<description>&lt;ol&gt;
&lt;li&gt;Create a new category &lt;code&gt;XXXX$SEARCH&lt;/code&gt; with field &lt;code&gt;F_MEMO_PREVIEW&lt;/code&gt; with the maximum allowed field length of a &quot;text&quot; datatype. &lt;/li&gt;
&lt;li&gt;Make this field as search field.&lt;/li&gt;
&lt;li&gt;Write a workflow that copies content of &lt;code&gt;MEMO&lt;/code&gt; on commit to &lt;code&gt;F_MEMO_PREVIEW&lt;/code&gt; and activate the category. Do this only when the memo is not empty.&lt;/li&gt;
&lt;li&gt;Initialize the category and the &lt;code&gt;F_MEMO_PREVIEW&lt;/code&gt; column after creation with an SQL insert statement.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You will lose the possibility to search on the full memo, but you will search at least in the first few x000 chars, that should be sufficient in most situations.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2637/search-into-a-memo-field&amp;show=2642#a2642</guid>
<pubDate>Wed, 02 Aug 2017 09:57:02 +0000</pubDate>
</item>
<item>
<title>Answered: Standard fields has disapeared from a version to an other</title>
<link>https://overflow.efficy.io/?qa=2325/standard-fields-has-disapeared-from-a-version-to-an-other&amp;show=2330#a2330</link>
<description>&lt;p&gt;Use 'forms' in Conficy to make it visible again.&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2325/standard-fields-has-disapeared-from-a-version-to-an-other&amp;show=2330#a2330</guid>
<pubDate>Thu, 02 Mar 2017 10:30:00 +0000</pubDate>
</item>
<item>
<title>Answered: Conficy Hidden Feature : REGION</title>
<link>https://overflow.efficy.io/?qa=1423/conficy-hidden-feature-region&amp;show=1429#a1429</link>
<description>&lt;p&gt;Thank you to Frédéric Large,&lt;/p&gt;

&lt;p&gt;Here is the Information I got from him : &lt;/p&gt;

&lt;p&gt;The table &lt;code&gt;LK_USER_REGION&lt;/code&gt; is an historic table that were used to manage the Sales Region for 1 company (Sales sectors : NORTH, SOUTH, etc...) where a Sales guy (Efficy User) is attached to this Region, that is why we have a standard field REGION in the &lt;code&gt;ACC_ACCOUNTS&lt;/code&gt; table.&lt;/p&gt;

&lt;p&gt;All of this is used to facilate to do Sales Reporting.&lt;/p&gt;

&lt;p&gt;This mechanism is used on some Efficy France Customer where &quot;France&quot; (the country) is divided is 4 big regions, all of them divided in 12 sectors which are attached to 1 sales guy.&lt;/p&gt;

&lt;p&gt;In order to use this functionnality, we only need to modifiy the User page in Condify in order to make it &quot;typeable&quot;.&lt;/p&gt;

&lt;p&gt;So this is a Conficy Custom, the page is called &quot;UserEditForm.htm&quot;&lt;/p&gt;

&lt;p&gt;And you just have to add the code to edit the field in the right place in the file:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;%GetHeader(&quot;REGION&quot;)%&amp;gt;

&amp;lt;%GetEdit(&quot;REGION&quot;, type=lookup)%&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1423/conficy-hidden-feature-region&amp;show=1429#a1429</guid>
<pubDate>Fri, 18 Mar 2016 15:08:19 +0000</pubDate>
</item>
<item>
<title>Answered: Is there a limitation on the number of custom field that can be created in a Category.</title>
<link>https://overflow.efficy.io/?qa=1310/there-limitation-number-custom-field-that-created-category&amp;show=1355#a1355</link>
<description>&lt;p&gt;Even if you are theorically not limited in the number of fields, keep in mind that SQL has its own limitation about the number of characters that a view can display for one record&lt;/p&gt;

&lt;p&gt;As long as the system is base on views like&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;SELECT
   YOURENTITY.*,
   YOURENTITYCATEGORY.*
FROM 
   YOURENTITY
   inner join YOURENTITYCATEGORY on ...
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You could be confronted to this SQL limitation. (that happened to me with SQL Server 2008, so I had to adjust and limit the fields I did select in my views and to watch carrefully the * statements to fix the case)&lt;/p&gt;

&lt;p&gt;Note that the size of each fields is probably more important that the number of fields.&lt;br&gt;
Alexis is right about the fact that defining if a freaking huge category is really what you really need is the first thing to do.&lt;/p&gt;

&lt;p&gt;Best regards....&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1310/there-limitation-number-custom-field-that-created-category&amp;show=1355#a1355</guid>
<pubDate>Wed, 17 Feb 2016 14:41:20 +0000</pubDate>
</item>
<item>
<title>Answered: Efficy2014 : Associated Fields in Category via Designer doesn't work.  Is there a solution ?</title>
<link>https://overflow.efficy.io/?qa=1004/efficy2014-associated-fields-category-designer-solution&amp;show=1117#a1117</link>
<description>&lt;p&gt;Hi Jappe,&lt;/p&gt;

&lt;p&gt;Could you be more precise ?&lt;br&gt;
which ctegory ? Which fields, ..&lt;/p&gt;

&lt;p&gt;Thanks!&lt;br&gt;
Yannick&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1004/efficy2014-associated-fields-category-designer-solution&amp;show=1117#a1117</guid>
<pubDate>Wed, 06 Jan 2016 10:17:53 +0000</pubDate>
</item>
<item>
<title>Designer - Apply structure fails on &quot;NOT NULL NULL&quot;</title>
<link>https://overflow.efficy.io/?qa=779/designer-apply-structure-fails-on-not-null-null</link>
<description>&lt;p&gt;Here is the error message I get :&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;alter table LK&lt;em&gt;COMP&lt;/em&gt;LEGALKIND modify &quot;LEGALKIND&quot; NVARCHAR2(12) NOT NULL NULL&lt;br&gt;
An error occurred in line 5 while executing a SQL statement&lt;br&gt;
alter table LK&lt;em&gt;COMP&lt;/em&gt;LEGALKIND modify &quot;LEGALKIND&quot; NVARCHAR2(12) NOT NULL NULL&lt;br&gt;
ORA-02258: duplicate or conflicting NULL and/or NOT NULL specifications&lt;/p&gt;

&lt;p&gt;alter table LK&lt;em&gt;COMP&lt;/em&gt;LEGALKIND modify &quot;LEGALKIND&quot; NVARCHAR2(12) NOT NULL NULL&lt;br&gt;
Database Upgrade was not successful. Error in following script: &lt;br&gt;
The database structure change failed. Check the log file on the server for further details&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;This is not the first time I observe that problem, but I can't find the solution anymore... Any idea(s) ?&lt;/p&gt;

&lt;p&gt;Thanks in advance,&lt;br&gt;
Cédric Edouard&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE : SOLVED (thanks to Alexis Duclos)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To solve the issue, I just needed to execute the query in a SQL client, fixing the &quot;double NULL&quot; error:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;alter table LK_COMP_LEGALKIND modify &quot;LEGALKIND&quot; NVARCHAR2(12) NOT NULL 
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Then, I was able again to process a successful &quot;Apply Structure&quot;&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=779/designer-apply-structure-fails-on-not-null-null</guid>
<pubDate>Mon, 21 Sep 2015 08:25:15 +0000</pubDate>
</item>
<item>
<title>Answered: max login attempts for efficy 2012</title>
<link>https://overflow.efficy.io/?qa=623/max-login-attempts-for-efficy-2012&amp;show=626#a626</link>
<description>&lt;p&gt;Mark.&lt;/p&gt;

&lt;p&gt;Are you sure it is not part of the latest 2012 build? Imo, it is.&lt;br&gt;
Have you check the admin console page &lt;a rel=&quot;nofollow&quot; href=&quot;http://myserver/efficy.dll/admin?action=editsettings&quot;&gt;&lt;/a&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://myserver/efficy.dll/admin?action=editsettings&quot;&gt;http://myserver/efficy.dll/admin?action=editsettings&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=623/max-login-attempts-for-efficy-2012&amp;show=626#a626</guid>
<pubDate>Tue, 11 Aug 2015 17:26:25 +0000</pubDate>
</item>
<item>
<title>Answered: Changelog for Conficy</title>
<link>https://overflow.efficy.io/?qa=622/changelog-for-conficy&amp;show=625#a625</link>
<description>&lt;p&gt;Mark.&lt;/p&gt;

&lt;p&gt;You can also enable the usage of SYS_CHANGED for other tables. You can in fact do it for all table views. Based on your specifications, you might be interested to activate it for the following conficy tables below.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Update SYS_TABLEVIEWS set LOGCHANGES='1', ISCUSTOM='1' where NAME in ('Users','Groups','Rights','Security','Shares')
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Refresh database connections and login again in the Designer. Changes a user property, or the user memberships and you will see the log lines appear in SYS_CHANGED. After that, it is just a matter of making a report on it.&lt;/p&gt;

&lt;p&gt;Efficy is cool right?&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=622/changelog-for-conficy&amp;show=625#a625</guid>
<pubDate>Tue, 11 Aug 2015 17:23:46 +0000</pubDate>
</item>
<item>
<title>Answered: How can I translate a panel title ? (2014)</title>
<link>https://overflow.efficy.io/?qa=508/how-can-i-translate-a-panel-title-2014&amp;show=612#a612</link>
<description>&lt;p&gt;You could define a new label for the &quot;Fake category&quot;.&lt;/p&gt;

&lt;p&gt;In MacroConsultCustom.txt you will get something like this:&lt;br&gt;
DetailCommandsContent.&lt;strong&gt;ENTITY&lt;/strong&gt;.Catg {[&lt;br&gt;
    &lt;/p&gt;&lt;dl class=&quot;tabs small&quot; id=&quot;category-buttons&quot; data-tab=&quot;&quot;&gt;&amp;lt;%GetCategoryHeaders(standardlabel=&quot;**New Label**&quot;)%&amp;gt;&lt;/dl&gt;&lt;br&gt;
]}

&lt;p&gt;In MacroEditCustom.txt you will get something like this:&lt;br&gt;
TabHeaderCategories&lt;strong&gt;.ENTITY&lt;/strong&gt; {[&lt;br&gt;
    &amp;lt;%GetCategoryHeaders(standardlabel=&quot;**New Label**&quot;)%&amp;gt;&lt;br&gt;
]}&lt;/p&gt;

&lt;p&gt;In CustomLabels.txt you can then define the translation for this &lt;strong&gt;New Label&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Hopefully this is also usefull for you.&lt;/p&gt;

&lt;p&gt;PS. Replace &lt;strong&gt;ENTITY&lt;/strong&gt; with the entity on which you want to change the &quot;Fake category&quot;&lt;br&gt;
PS2. Replace &lt;strong&gt;New Label&lt;/strong&gt; with the label you want to give the &quot;Fake category&quot;&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Jeroen&lt;/p&gt;
</description>
<category>Efficy Designer (Conficy)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=508/how-can-i-translate-a-panel-title-2014&amp;show=612#a612</guid>
<pubDate>Wed, 05 Aug 2015 08:54:31 +0000</pubDate>
</item>
</channel>
</rss>