<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions and answers in E-Deal developers</title>
<link>https://overflow.efficy.io/?qa=qa/e-deal-developers</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: Customizing the Save Button Background Color in Web Form (form_css_look.css)</title>
<link>https://overflow.efficy.io/?qa=7176/customizing-save-button-background-color-form-formcsslook&amp;show=7177#a7177</link>
<description>&lt;p&gt;Hi Laure&lt;br&gt;
The css files are dynamically generared each time the page is called.&lt;br&gt;
I don't if there is a way to generate them differently form the standard way.&lt;/p&gt;

&lt;p&gt;What is for sure possible, is to redefine your  css style in the landing page containing the form such as the following HTML code in bold&lt;br&gt;
:&lt;/p&gt;

&lt;p&gt;&amp;#60;html&amp;#62;&lt;br&gt;
&amp;#60;head&amp;#62;&lt;br&gt;
&amp;#60;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&amp;#62;&lt;br&gt;
&amp;#60;script type=&quot;text/javascript&quot; src=&quot;&lt;a rel=&quot;nofollow&quot; href=&quot;https://demo-edeal.efficytest.cloud/public_api/front/webforms_js?code=CTFRM&quot;&gt;https://demo-edeal.efficytest.cloud/public_api/front/webforms_js?code=CTFRM&lt;/a&gt;&quot;&amp;#62;&amp;#60;/script&amp;#62;&lt;br&gt;
&amp;#60;link rel=&quot;stylesheet&quot; href=&quot;&lt;a rel=&quot;nofollow&quot; href=&quot;https://demo-edeal.efficytest.cloud/public_api/front/webforms_css_position?code=CTFRM&quot;&gt;https://demo-edeal.efficytest.cloud/public_api/front/webforms_css_position?code=CTFRM&lt;/a&gt;&quot; type=&quot;text/css&quot;/&amp;#62;&lt;br&gt;
&amp;#60;link rel=&quot;stylesheet&quot; href=&quot;&lt;a rel=&quot;nofollow&quot; href=&quot;https://demo-edeal.efficytest.cloud/public_api/front/webforms_css_look?code=CTFRM&quot;&gt;https://demo-edeal.efficytest.cloud/public_api/front/webforms_css_look?code=CTFRM&lt;/a&gt;&quot; type=&quot;text/css&quot;/&amp;#62;&lt;br&gt;
&amp;#60;title&amp;#62;Test demo form&amp;#60;/title&amp;#62;&lt;br&gt;
&lt;strong&gt;&amp;#60;style type=&quot;text/css&quot;&amp;#62;&lt;br&gt;
.edealForm .edealForm-action .edealForm-button.edealForm-save {&lt;br&gt;
 background: #AEAEAE;&lt;br&gt;
 border: 1px solid transparent;&lt;br&gt;
}&lt;br&gt;
&amp;#60;/style&amp;#62;&lt;/strong&gt;&lt;br&gt;
&amp;#60;/head&amp;#62;&lt;/p&gt;

&lt;p&gt;&amp;#60;body&amp;#62;&lt;br&gt;
&amp;#60;div edeal_form=&quot;CTFRM&quot;&amp;#62;&amp;#60;/div&amp;#62;&lt;br&gt;
&amp;#60;script language=&quot;javascript&quot;&amp;#62;&lt;br&gt;
EdealForm.loadEdealForm(&quot;CTFRM&quot;,null,null);&lt;br&gt;
&amp;#60;/script&amp;#62;&lt;/p&gt;

&lt;p&gt;&amp;#60;/body&amp;#62;&amp;#60;/html&amp;#62;&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7176/customizing-save-button-background-color-form-formcsslook&amp;show=7177#a7177</guid>
<pubDate>Fri, 23 May 2025 16:28:44 +0000</pubDate>
</item>
<item>
<title>Answered: How to fill a multivalue field in a list criteria via SyntaxNode class</title>
<link>https://overflow.efficy.io/?qa=7050/how-fill-multivalue-field-list-criteria-via-syntaxnode-class&amp;show=7051#a7051</link>
<description>&lt;p&gt;I found the solution with Chean:&lt;/p&gt;

&lt;p&gt;In the list xml : &lt;br&gt;
&amp;lt;![CDATA[(sessionActorAgences())]]&amp;gt;&lt;/p&gt;

&lt;p&gt;you can also just use: the CDATA part without the default tags&lt;/p&gt;

&lt;p&gt;Therefore the line is as follows.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  &amp;lt;line&amp;gt;
       &amp;lt;field value=&quot;OffAgences_&quot; multicond=&quot;true&quot;&amp;gt;
           &amp;lt;default&amp;gt;&amp;lt;![CDATA[(sessionActorAgences())]]&amp;gt;&amp;lt;/default&amp;gt;
       &amp;lt;/field&amp;gt;
  &amp;lt;/line&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And the java method should return a string value separated by comma&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;i.e: id1,id2
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7050/how-fill-multivalue-field-list-criteria-via-syntaxnode-class&amp;show=7051#a7051</guid>
<pubDate>Tue, 19 Mar 2024 16:58:15 +0000</pubDate>
</item>
<item>
<title>Efficy Corporate (E-DEAL) API - Is it possible to filter the results of an API get request on a Multivalued field?</title>
<link>https://overflow.efficy.io/?qa=7007/efficy-corporate-possible-filter-results-request-multivalued</link>
<description>&lt;p&gt;Hello, &lt;/p&gt;

&lt;p&gt;if I only want to retrieve contacts who have the 'VIP' marker (PerPevID, multivalued field), is it possible to do this via the API?&lt;br&gt;
I've tried several filters without any success so far :&lt;/p&gt;

&lt;p&gt;{{[PerPevID,contains,0000000000000ab0]}}&lt;br&gt;
{{[PerPevID,contains,'0000000000000ab0']}}&lt;br&gt;
{{[PerPevID,contains,VIP]}}&lt;br&gt;
{{[PerPevID,contains,'VIP']}}&lt;br&gt;
{{[PerPevID,containsMoreThan(0)in,'VIP']}}&lt;br&gt;
{{[PerPevID,containsMoreThan(1)in,'VIP']}}&lt;br&gt;
{{[PerPevID,containsMoreThan(0)in,'0000000000000ab0']}}&lt;br&gt;
{{[PerPevID,containsMoreThan(1)in,'0000000000000ab0']}}&lt;br&gt;
{{[PerPevID,containsMoreThan(0)in,0000000000000ab0]}}&lt;br&gt;
{{[PerPevID,containsMoreThan(1)in,0000000000000ab0]}}&lt;/p&gt;

&lt;p&gt;Where '0000000000000ab0' is the ID of the 'VIP' reference value on the public demo...&lt;/p&gt;

&lt;p&gt;Maybe we just can't filter on multivalued fields via the API, but I haven't seen this limitation written anywhere....&lt;br&gt;
Please help me if you have already tried something similar....&lt;br&gt;
Thks&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7007/efficy-corporate-possible-filter-results-request-multivalued</guid>
<pubDate>Fri, 08 Dec 2023 13:37:42 +0000</pubDate>
</item>
<item>
<title>Answered: How to display refte2 value in a fusionfield into an emailing model</title>
<link>https://overflow.efficy.io/?qa=6987/how-to-display-refte2-value-fusionfield-into-emailing-model&amp;show=6988#a6988</link>
<description>&lt;p&gt;Hi Luc,&lt;/p&gt;

&lt;p&gt;This is a limitation in the soft unfortunately!&lt;br&gt;
You can put in place a workaround. &lt;/p&gt;

&lt;p&gt;For instance you can create an additional field called PerGreating_ and use it specifically in the emails.&lt;/p&gt;

&lt;p&gt;This new field would be associated to the same list of values than the standard field PerCivID in the DataDictionnary, but its control column will be RefTe2 instaed of RefTe1.&lt;br&gt;
With the rule engine, you can easily copy the PerCivID value in the PerGreating_ value each time the person is updated in the application.&lt;/p&gt;

&lt;p&gt;Hope it helps&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6987/how-to-display-refte2-value-fusionfield-into-emailing-model&amp;show=6988#a6988</guid>
<pubDate>Thu, 12 Oct 2023 10:58:04 +0000</pubDate>
</item>
<item>
<title>Answered: Alerte sur rejet d'import</title>
<link>https://overflow.efficy.io/?qa=6811/alerte-sur-rejet-dimport&amp;show=6812#a6812</link>
<description>&lt;p&gt;Bonjour Manu&lt;br&gt;
Oui il est possible d'ajouter une regle avec job de notification apres la creation en base des objets suivants :&lt;br&gt;
TrashReportTrpInfos global import rejet&lt;br&gt;
TrashReportLineTrlInfos ligne rejetée&lt;br&gt;
FlTaskLog  Tsl   Log tâche planifiée&lt;/p&gt;

&lt;p&gt;Suivant le moment où tu souhaites notifier il faut choisir le bon objet.&lt;br&gt;
Je l'ai fait sur un projet mais je l'ai ensuite desactivé car j'ai cru observer que ca reduisait les perf de l'import...&lt;br&gt;
Cedric&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6811/alerte-sur-rejet-dimport&amp;show=6812#a6812</guid>
<pubDate>Tue, 14 Feb 2023 14:24:44 +0000</pubDate>
</item>
<item>
<title>Answered: Date de début Interaction</title>
<link>https://overflow.efficy.io/?qa=6719/date-de-debut-interaction&amp;show=6720#a6720</link>
<description>&lt;p&gt;Bonjour&lt;br&gt;
Le probleme majeur est qu'elle n'est pas toujours renseignée, en revanche la date de début est un champs obligatoire.&lt;br&gt;
Lorsque l'interaction doit etre position dans l'agenda, c'est le cas, les deux dates sont présentes mais pour les taches par exemple ce n'est pas le cas nous n'avons qu'une seule date.&lt;/p&gt;

&lt;p&gt;C'est toujoours possible de réaliser ce genre de choses mais avec du developpement spécifique (c'est une fonction dynamique qui réalise le calcul du retard dans les listes des interactions -&amp;gt; implementée dans du code java )&lt;br&gt;
Donc dans cette fonction dynamique on irait comparer la date de fin avec le momeent présent si elle existe et sinon on comparerait la date de début avec le moment présent.&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6719/date-de-debut-interaction&amp;show=6720#a6720</guid>
<pubDate>Wed, 12 Oct 2022 14:36:30 +0000</pubDate>
</item>
<item>
<title>Answered: Formula to check if actor in session has one of this role</title>
<link>https://overflow.efficy.io/?qa=6715/formula-to-check-if-actor-in-session-has-one-of-this-role&amp;show=6716#a6716</link>
<description>&lt;p&gt;Hi Quentin&lt;br&gt;
Considering the fact that the actor in session Roles is multivaluated, you shoud not use the operator EQUALS but CONTAINS&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6715/formula-to-check-if-actor-in-session-has-one-of-this-role&amp;show=6716#a6716</guid>
<pubDate>Tue, 11 Oct 2022 09:10:50 +0000</pubDate>
</item>
<item>
<title>Answered: Comment paramétrer le numéro de l'expéditeur des sms?</title>
<link>https://overflow.efficy.io/?qa=6703/comment-parametrer-le-numero-de-lexpediteur-des-sms&amp;show=6704#a6704</link>
<description>&lt;p&gt;Bonjour Imene&lt;br&gt;
Dans la documentation en ligne à cet endroit en fin de page&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/E-deal_crm/usen_configurer_lenvoi_dun_sms-ing.html&quot;&gt;https://help.efficy.io/E-deal_crm/usen_configurer_lenvoi_dun_sms-ing.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Il est indiqué l'astuce suivante :&lt;br&gt;
ASTUCE : E-DEAL vous offre la possiblité de remplacer le numéro court jusqu’alors affiché comme émetteur du SMS par l’identifiant de votre choix, le nom de votre entreprise par exemple.&lt;br&gt;
Rapprochez-vous de votre administrateur pour qu’il sollicite notre service commercial afin d’activer cette option de personnalisation.&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6703/comment-parametrer-le-numero-de-lexpediteur-des-sms&amp;show=6704#a6704</guid>
<pubDate>Wed, 05 Oct 2022 15:45:35 +0000</pubDate>
</item>
<item>
<title>How do you display a custom Business Origin field the same way it is displayed in the standard.</title>
<link>https://overflow.efficy.io/?qa=6586/display-custom-business-origin-field-same-displayed-standard</link>
<description>&lt;p&gt;Standard Origin field&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=2892298815828525617&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;Custom Origin field&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=8627755380505721411&quot; alt=&quot;enter image description here&quot;&gt;&lt;br&gt;
Hello, I have created a custom field for the Offer object, which has the same caracteristics as the standard EntBusOriginID field. Notably, they both are fob fields pointing at the Business Origin object. &lt;br&gt;
As you can see in the first picture below, the standard field shows origins in a pretty list of elements.&lt;br&gt;
However, as you can see in the second image, my custom field is displayed like any other fob field. How do i get it to be displayed just like the standard one ?&lt;/p&gt;

&lt;p&gt;Thank you in advance&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6586/display-custom-business-origin-field-same-displayed-standard</guid>
<pubDate>Thu, 09 Jun 2022 13:47:04 +0000</pubDate>
</item>
<item>
<title>Answered: Demande from Mail - Shared mailbox</title>
<link>https://overflow.efficy.io/?qa=6557/demande-from-mail-shared-mailbox&amp;show=6562#a6562</link>
<description>&lt;p&gt;Hello&lt;br&gt;
The demandFromMail feature allows to automatcally create demands in the CRM DB from emails read in a specific mailbox.&lt;br&gt;
This mailBox should not be used by real users in my opinion, it should remain a &quot;technical&quot; mailbox.&lt;br&gt;
Otherwise some of the mails received couldbe removed or deleted by users, and they wil not be integrated in the CFRM DB as a consequence.&lt;br&gt;
If this mailbox is oparated by real users directly to treat sollications, how could we know which ones should be integrated in the CRM and wich ones shuld be dealt directly from the shared mailbox.&lt;/p&gt;

&lt;p&gt;Even if technicaly there is no limitation, hower functionnaly, we don't recommend this approach&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6557/demande-from-mail-shared-mailbox&amp;show=6562#a6562</guid>
<pubDate>Tue, 31 May 2022 10:38:07 +0000</pubDate>
</item>
<item>
<title>Answered: How to replace the comma in floating point fields or double type fields to .</title>
<link>https://overflow.efficy.io/?qa=6525/how-replace-comma-floating-point-fields-double-type-fields&amp;show=6526#a6526</link>
<description>&lt;p&gt;Change the ActNumericLocale field value to en_GB in actor form&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6525/how-replace-comma-floating-point-fields-double-type-fields&amp;show=6526#a6526</guid>
<pubDate>Mon, 02 May 2022 15:35:05 +0000</pubDate>
</item>
<item>
<title>Answered: Can I stop a save with a businessRule?</title>
<link>https://overflow.efficy.io/?qa=6503/can-i-stop-a-save-with-a-businessrule&amp;show=6504#a6504</link>
<description>&lt;p&gt;Hi &lt;br&gt;
In the Business rule engine (Automation module), it is possible to specify what to do when a job fails&lt;br&gt;
- continue &lt;br&gt;
- stop this rule&lt;br&gt;
- stop all the other rules of this save event&lt;/p&gt;

&lt;p&gt;see illustration below :&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=8937538852040534661&quot; alt=&quot;Business rule Error management&quot;&gt;&lt;br&gt;
If you speak of a business rule implemented in the java code (ObjectBeanExtention.java),&lt;br&gt;
If you throw an exception in the presave() method that is not catched in the save() method, then your bean updates will not be stored in the database, and the user will be présented an error message on his/her screen.&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6503/can-i-stop-a-save-with-a-businessrule&amp;show=6504#a6504</guid>
<pubDate>Wed, 06 Apr 2022 16:53:49 +0000</pubDate>
</item>
<item>
<title>Efficy Corporate - Gmail Synchronization</title>
<link>https://overflow.efficy.io/?qa=6481/efficy-corporate-gmail-synchronization</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;I have been asked the following question on Gmail synchronization:&lt;/p&gt;

&lt;p&gt;Would it be possible to filter the meetings on Gmail to synchronize only client meetings with E-DEAL?&lt;br&gt;
Apart of using the visibility tag as private, how can be marked a client meeting in the Synchronization Engine?&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6481/efficy-corporate-gmail-synchronization</guid>
<pubDate>Thu, 03 Mar 2022 16:20:18 +0000</pubDate>
</item>
<item>
<title>Efficy Corporate - Modèles de documents - Police</title>
<link>https://overflow.efficy.io/?qa=6422/efficy-corporate-modeles-de-documents-police</link>
<description>&lt;p&gt;Bonjour, &lt;/p&gt;

&lt;p&gt;Nous rencontrons un problème avec les modèles de documents. &lt;/p&gt;

&lt;p&gt;Aurélien a un soucis de police, qui change lorsqu'on transforme le modèle document Word en PDF.&lt;/p&gt;

&lt;p&gt;il s'agit d'ajouter une police au module de génération de PDF (Apache FOP). Si quelqu'un l'a déjà fait, merci pour toute aide ou info !&lt;/p&gt;

&lt;p&gt;Version du client : E-Deal&lt;em&gt;CRM&lt;/em&gt;Mid-2018-107&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6422/efficy-corporate-modeles-de-documents-police</guid>
<pubDate>Wed, 05 Jan 2022 10:52:50 +0000</pubDate>
</item>
<item>
<title>Answered: New Interaction Status</title>
<link>https://overflow.efficy.io/?qa=6418/new-interaction-status&amp;show=6419#a6419</link>
<description>&lt;p&gt;Hi Audrey&lt;br&gt;
We don't advize at all to customize the list of interation status. Otherwise you will face many issues including those related to the Agenda synchronization (Outlook, google agenda, etc).&lt;/p&gt;

&lt;p&gt;We highly recommend to use the Result field list instead to indicate the fact that a interaction is &quot;abandonned&quot;.&lt;/p&gt;

&lt;p&gt;So, to indicate that an interaction had been adandonned, simply &lt;br&gt;
- fill in the status with &quot;DONE&quot; value&lt;br&gt;
- and set the result value to &quot;ABANDONED&quot;&lt;/p&gt;

&lt;p&gt;It could be done with no customization at from the realization screen of any interaction. &lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6418/new-interaction-status&amp;show=6419#a6419</guid>
<pubDate>Tue, 04 Jan 2022 14:32:44 +0000</pubDate>
</item>
<item>
<title>Answered: Filter Integer field exactly, without min/max values.</title>
<link>https://overflow.efficy.io/?qa=6326/filter-integer-field-exactly-without-min-max-values&amp;show=6410#a6410</link>
<description>&lt;p&gt;Hi Pierre&lt;br&gt;
There is no possibility to filter an integer field in a list the way you would like.&lt;br&gt;
There is one possibility, even if it's not elegant, that consists to create a duplicate field with type &quot;Text&quot; instead of &quot;integer&quot; and use this duplicate field as a criteria in your list. &lt;br&gt;
You should not forget to use the engine rule as well in order to automatically fill the duplicate text field with the original integer field value.&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6326/filter-integer-field-exactly-without-min-max-values&amp;show=6410#a6410</guid>
<pubDate>Tue, 21 Dec 2021 15:01:04 +0000</pubDate>
</item>
<item>
<title>Answered: Error while publishing an questionnaire</title>
<link>https://overflow.efficy.io/?qa=6297/error-while-publishing-an-questionnaire&amp;show=6364#a6364</link>
<description>&lt;p&gt;Bonjour Binoy,&lt;/p&gt;

&lt;p&gt;Est-ce que tu as crée le ticket ? si oui peux tu nous fournir le code du ticket&lt;br&gt;
J'ai le même problème que se reproduit avec le build 043, le client a remonté le ticket&lt;/p&gt;

&lt;p&gt;Merci&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6297/error-while-publishing-an-questionnaire&amp;show=6364#a6364</guid>
<pubDate>Wed, 24 Nov 2021 09:24:44 +0000</pubDate>
</item>
<item>
<title>Answered: [Edition Corportate] Log appenders</title>
<link>https://overflow.efficy.io/?qa=6361/edition-corportate-log-appenders&amp;show=6362#a6362</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;You can create as many appenders as you like on the E-DEAL log4j file. Each appender can write the logs to its own file. For example : ( log4j.appender.FILE.File=/opt/edeal/logs/XXXX.log)&lt;/p&gt;

&lt;p&gt;When declaring the classes or packages to be logged, the path to the class/package to be logged can be added to the appender according to the desired log level. These log levels are specified in each class of the application.&lt;br&gt;
-  If the path corresponds to a class, then the logs will only be applied to the class defined based on the log level specified at the end.&lt;br&gt;
-  If the path corresponds to a package, then all the classes in the package will be logged based on the log level that has been specified.&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6361/edition-corportate-log-appenders&amp;show=6362#a6362</guid>
<pubDate>Mon, 22 Nov 2021 17:11:29 +0000</pubDate>
</item>
<item>
<title>Answered: Task Priority for Bulk Emailing Task and Emailing speed</title>
<link>https://overflow.efficy.io/?qa=6145/task-priority-for-bulk-emailing-task-and-emailing-speed&amp;show=6146#a6146</link>
<description>&lt;p&gt;Hi Binoy&lt;br&gt;
On which version  is your customer ?&lt;br&gt;
On the 2021 version it is possible to multithread this task for instance.&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/E-deal_crm/funf_taches_planifiees_pour_lenvoi_de-mailing.html&quot;&gt;https://help.efficy.io/E-deal_crm/funf_taches_planifiees_pour_lenvoi_de-mailing.html&lt;/a&gt;&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6145/task-priority-for-bulk-emailing-task-and-emailing-speed&amp;show=6146#a6146</guid>
<pubDate>Wed, 02 Jun 2021 08:14:46 +0000</pubDate>
</item>
<item>
<title>Answered: Change software color</title>
<link>https://overflow.efficy.io/?qa=5908/change-software-color&amp;show=6060#a6060</link>
<description>&lt;p&gt;Il est probable que les couleurs soient définies sous /skins/default/css/color_declinaison.css. En revanche, pour les images tu les trouveras sous /skins/default/images/core/layout&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5908/change-software-color&amp;show=6060#a6060</guid>
<pubDate>Tue, 27 Apr 2021 12:36:31 +0000</pubDate>
</item>
<item>
<title>Corporate edition dev &amp; expert, any project with SharePoint integration?</title>
<link>https://overflow.efficy.io/?qa=5961/corporate-edition-expert-project-sharepoint-integration</link>
<description>&lt;p&gt;Have anyone already worked on the Sharepoint integration with Corporate Edition ( former E-DEAL)?&lt;br&gt;
If yes, for which customers? Any feedback?&lt;br&gt;
Thanx&lt;br&gt;
Vanessa&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5961/corporate-edition-expert-project-sharepoint-integration</guid>
<pubDate>Tue, 09 Mar 2021 16:13:58 +0000</pubDate>
</item>
<item>
<title>Exception sur BasicBean - Besoin d'aide</title>
<link>https://overflow.efficy.io/?qa=5873/exception-sur-basicbean-besoin-daide</link>
<description>&lt;p&gt;A la demande du client, nous avons utilisé le référentiel Iuf pour pouvoir éditer des champs de la personne au niveau d'une intéraction.&lt;/p&gt;

&lt;p&gt;ça marche avec le rôle admin, ça plante sans le rôle admin.&lt;/p&gt;

&lt;p&gt;J'obtiens une exception, très peu parlante, au niveau de BasicBean : &lt;/p&gt;

&lt;p&gt;[/resideEtudes] 2021-02-05 10:35:23,992 2057003 [http-nio-8080-exec-1] ERROR com.edeal.frontline.controller.ControllerServlet  - [ControllerServlet.processException()]null&lt;br&gt;
FrontlineException{exceptionId=aIIC9yRgv0ZY}&lt;br&gt;
at com.edeal.frontline.BasicBean.saveCore(BasicBean.java:4673)&lt;br&gt;
at com.edeal.frontline.BasicBean.save(BasicBean.java:4421)&lt;br&gt;
at com.edeal.frontline.controller.actions.SaveAction.execute(SaveAction.java:197)&lt;/p&gt;

&lt;p&gt;N'ayant pas accès à la source de BasicBean, je suis bloqué.&lt;/p&gt;

&lt;p&gt;Est-ce que quelqu'un a déjà rencontré un problème similaire ?&lt;br&gt;
Est-ce qu'on pourrait autoriser les développeurs projets à avoir accès aux librairies E-Deal AVEC LES SOURCES, comme ça se fait dans de très bonnes entreprises, afin de pouvoir visualiser ces sources en debug ?&lt;br&gt;
Est-ce que quelqu'un sait ce que signifie exceptionId=aIIC9yRgv0ZY, et si ça peut m'amener à une information exploitable ?&lt;/p&gt;

&lt;p&gt;Merci par avance de toute information pouvant m'aider sur ce point.&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5873/exception-sur-basicbean-besoin-daide</guid>
<pubDate>Fri, 05 Feb 2021 10:58:29 +0000</pubDate>
</item>
<item>
<title>Answered: ajouter un evénement on change sur un champ multi valué</title>
<link>https://overflow.efficy.io/?qa=5824/ajouter-un-evenement-on-change-sur-un-champ-multi-value&amp;show=5825#a5825</link>
<description>&lt;p&gt;j'ai trouvé comment le faire : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$(&quot;#OppLRCommunes_&quot;).on(&quot;change&quot;, function(){

});
});
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;tout simplement. le piège étant que l'élément html ayant l'id OppLRCommunes_ est une select cachée (display none).&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5824/ajouter-un-evenement-on-change-sur-un-champ-multi-value&amp;show=5825#a5825</guid>
<pubDate>Mon, 25 Jan 2021 12:48:21 +0000</pubDate>
</item>
<item>
<title>Answered: WebService API  No deserializer for {http://www.w3.org/2001/XMLSchema}anyType</title>
<link>https://overflow.efficy.io/?qa=5540/webservice-api-deserializer-for-http-2001-xmlschema-anytype&amp;show=5546#a5546</link>
<description>&lt;p&gt;Solved.&lt;br&gt;
the EDEAL documentation is not up to date.&lt;/p&gt;

&lt;p&gt;You need to use &lt;code&gt;ws/edeal_base_services?wsdl&lt;/code&gt; and not &lt;code&gt;ws/Simple?wsdl&lt;/code&gt;&lt;/p&gt;
</description>
<category>E-Deal developers</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5540/webservice-api-deserializer-for-http-2001-xmlschema-anytype&amp;show=5546#a5546</guid>
<pubDate>Wed, 19 Aug 2020 06:27:25 +0000</pubDate>
</item>
</channel>
</rss>