<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged efficy11-1</title>
<link>https://overflow.efficy.io/?qa=tag/efficy11-1</link>
<description>Powered by Question2Answer</description>
<item>
<title>LIBS-1702 - Cannot find definition for Reporting Database &quot;Efficy&quot;</title>
<link>https://overflow.efficy.io/?qa=6905/libs-1702-cannot-find-definition-reporting-database-efficy</link>
<description>&lt;p&gt;The LIBS-1702 - Cannot find definition for Reporting Database &quot;Efficy&quot; appears while the definition does exist in the configuration.&lt;/p&gt;

&lt;p&gt;What could be causing this ?&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=5909585295841104308&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;
</description>
<category>Reporting Solutions</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6905/libs-1702-cannot-find-definition-reporting-database-efficy</guid>
<pubDate>Wed, 10 May 2023 11:38:53 +0000</pubDate>
</item>
<item>
<title>Multiple entities editing in a single window in 11.1</title>
<link>https://overflow.efficy.io/?qa=6302/multiple-entities-editing-in-a-single-window-in-11-1</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;First a little bit of context : I have 2 entities : Properties and Units. They represent, respectively, a building and the different apartments in this building.&lt;/p&gt;

&lt;p&gt;What the client wants is a single edit page where they could edit some fields of the property as well as some fields of the linked units, add and remove units.&lt;/p&gt;

&lt;p&gt;I know that this would be much easier in the newest version of Efficy but I am constrained to stick to 11.1&lt;/p&gt;

&lt;p&gt;Here is my approche : I have copied the fonctionnement of the standard edit window to customize it.&lt;/p&gt;

&lt;p&gt;The calling from an existing property consult page :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/* js/commands/consultToolsCmd.js */
window.OpenEdit(&quot;edit/UnitsManagement&quot;, Model('entity'), Model('key'), &quot;refreshOpener&quot;, '');
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And here is the page :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;!-- pages/edit/UnitsManagement.html --&amp;gt;
&amp;lt;!doctype html&amp;gt;
&amp;lt;%SetBookmark()%&amp;gt;
&amp;lt;%LoadMacros(&quot;MacroLibrary;MacroEdit;MacroEditS&quot;)%&amp;gt;
&amp;lt;%Macros('EditQueries;EditQueriesCustom')%&amp;gt;
&amp;lt;html class=&quot;edit no-js entity-&amp;lt;%GetEntity()%&amp;gt;&quot; lang=&quot;&amp;lt;%GetLanguage(lowercase=T)%&amp;gt;&quot; dir=&quot;&amp;lt;%OnLanguage(ar='rtl', else='ltr')%&amp;gt;&quot;&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;&amp;lt;%Macro('PageTitle')%&amp;gt;&amp;lt;/title&amp;gt;   
    &amp;lt;%Macros('EditHeader;EditHeaderCustom')%&amp;gt;
    &amp;lt;script&amp;gt;
      function Loaded() {
        requirejs(
        ['jquery','model'],
        function ($,Model) {
          if( /Pro[jp]/g.test(window.location.href) &amp;amp;&amp;amp; !/Pro[jp]/g.test(Model.all().locationHref)) {
            Model.set('locationHref', window.location.href.match(/\/(edi.*)/g)[0].substr(1));
            if (!window.location.hash) {
              window.location = window.location + '#loaded';
              window.location.reload();
            }
          }
        });
      }
    &amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body onload=&quot;Loaded()&quot;&amp;gt;
    &amp;lt;div class=&quot;off-canvas-wrap&quot; data-offcanvas&amp;gt;
      &amp;lt;div class=&quot;inner-wrap&quot;&amp;gt;
        &amp;lt;%UseEditForm(id=&quot;edit-form&quot;)%&amp;gt;&amp;lt;%Macro('DummyInput')%&amp;gt;
        &amp;lt;%Macros('EditTopBar;EditOffCanvasMenu;EditDropdownHost')%&amp;gt;
        &amp;lt;article id=&quot;edit-main&quot;&amp;gt;
          &amp;lt;%Macros('EditCommands;EditCommandsPrint;EditEntityName;EditWarning')%&amp;gt;
          &amp;lt;div class=&quot;row&quot; data-channel=&quot;edit/details&quot;&amp;gt;
            &amp;lt;div class=&quot;small-12 columns&quot;&amp;gt;
              &amp;lt;dl class=&quot;tabs tabbed edit-tabs entity-tabs&quot; data-tab id=&quot;edit-tabs&quot;&amp;gt;
                &amp;lt;dd&amp;gt;&amp;lt;a href=&quot;#tab-fields&quot; class=&quot;i-fields&quot; draggable=&quot;false&quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dd&amp;gt;
              &amp;lt;/dl&amp;gt;
              &amp;lt;div class=&quot;tabs-content has-icons entity-tabs-content&quot; id=&quot;category-contents&quot;&amp;gt;
                &amp;lt;div class=&quot;content tabs-content-item&quot; id=&quot;tab-fields&quot;&amp;gt;
                  &amp;lt;%Macro('PMUEditSection')%&amp;gt;
                  &amp;lt;section class=&quot;form&quot;&amp;gt;
                    &amp;lt;label for=&quot;F_STREET_FR&quot; class=&quot;required&quot;&amp;gt;Street&amp;lt;/label&amp;gt;
                    &amp;lt;%GetEdit(&quot;F_STREET_FR&quot;)%&amp;gt;
                    &amp;lt;label for=&quot;F_CITY_FR&quot;&amp;gt;City&amp;lt;/label&amp;gt;
                    &amp;lt;%GetEdit(&quot;F_CITY_FR&quot;)%&amp;gt;
                    &amp;lt;label for=&quot;F_COUNTRY&quot;&amp;gt;Country&amp;lt;/label&amp;gt;
                    &amp;lt;%GetEdit(&quot;F_COUNTRY&quot;, type=&quot;LOOKUP&quot;, data-placeholder=&quot;&amp;lt;%GetLabel('Select Value')%&amp;gt;...&quot;)%&amp;gt;
                  &amp;lt;/section&amp;gt;
                  &amp;lt;section class=&quot;form&quot;&amp;gt;
                    &amp;lt;label for=&quot;F_STREET_NUM&quot;&amp;gt;N°&amp;lt;/label&amp;gt;
                    &amp;lt;%GetEdit(&quot;F_STREET_NUM&quot;)%&amp;gt;
                    &amp;lt;label for=&quot;F_POSTCODE&quot; class=&quot;required&quot;&amp;gt;Postocode&amp;lt;/label&amp;gt;
                    &amp;lt;%GetEdit(&quot;F_POSTCODE&quot;)%&amp;gt;
                  &amp;lt;/section&amp;gt;
                  &amp;lt;hr/&amp;gt;
                  &amp;lt;section&amp;gt;
                    &amp;lt;!-- START OF PROBLEM --&amp;gt;
                    &amp;lt;%Delay(1)%&amp;gt;GetRelationGrid(columndefs=&quot;GridEditColumns.txt&quot;, entity=&quot;UNIT&quot;, key=&amp;lt;%GetArgument(&quot;KEY&quot;,context=ATTR)%&amp;gt;, SORT='F_FLOOR', noheader=false, columns=&quot;NAME,F_FLOOR,F_FLOOR_AREA&quot;)%&amp;gt;
                    &amp;lt;!-- END OF PROBLEM ? --&amp;gt;
                  &amp;lt;/section&amp;gt;
                &amp;lt;/div&amp;gt;
              &amp;lt;/div&amp;gt;
            &amp;lt;/div&amp;gt;
          &amp;lt;/div&amp;gt;
          &amp;lt;input type=&quot;hidden&quot; id=&quot;hidden-detail&quot; name=&quot;hidden-detail&quot; value=&quot;&amp;lt;%GetHiddenArgument('hidden-detail')%&amp;gt;&quot;&amp;gt;
          &amp;lt;input type=&quot;hidden&quot; id=&quot;hidden-panel&quot; name=&quot;hidden-panel&quot; value=&quot;&amp;lt;%GetHiddenArgument('hidden-panel')%&amp;gt;&quot;&amp;gt;
          &amp;lt;%Macros('EditCommandsBottom')%&amp;gt;
        &amp;lt;/article&amp;gt;
        &amp;lt;%Macro('EditFormClose')%&amp;gt;
        &amp;lt;a class=&quot;exit-off-canvas&quot;&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;%Macros('EditScripts;JsScriptsTRW;EditScriptsCustom;EditModel')%&amp;gt;
    &amp;lt;div id=&quot;modal-host&quot; class=&quot;reveal-modal&quot; data-reveal data-options=&quot;close_on_background_click:true&quot;&amp;gt;&amp;lt;/div&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And the custom field to edit the unit's name :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/* macros/GridEditColumnsCustom.txt */
td.NAME.Unit {[&amp;lt;td&amp;gt;&amp;lt;%GetEdit(&quot;NAME&quot;, detail=Unit, detailkey=&amp;lt;#F=K_UNIT;context=ATTR&amp;gt;)%&amp;gt;&amp;lt;/td&amp;gt;]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Everything goes well as long as I'm editing the Property's field but if I try to change a Unit's field (the name for example), I receive this error :&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Unable to commit changes to the database&lt;br&gt;
  ID: CORE-1394&lt;br&gt;
  Message: Error during CommitChanges on &quot;Prop_Unit&quot;:&lt;br&gt;
  Invalid column name 'CHANGEDBY'&lt;br&gt;
  Invalid column name 'CHANGEDBY'&lt;br&gt;
  Comment: One of the following could be at the origin of the error:&lt;br&gt;
  - Some of the input values are not accepted by the database&lt;br&gt;
  - The entity you are modifying is no longer available&lt;br&gt;
  - The database is full&lt;br&gt;
  - An unexpected error occurred in the application&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For what I understand the changes are trying to be made on the join table instead of the entity on the other end.&lt;/p&gt;

&lt;p&gt;Can someone help me unlock this situtation for I don't see what direction I should go.&lt;/p&gt;

&lt;p&gt;Thank you very much,&lt;br&gt;
Alexandre&lt;/p&gt;
</description>
<category>Efficy design guidelines</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6302/multiple-entities-editing-in-a-single-window-in-11-1</guid>
<pubDate>Fri, 01 Oct 2021 13:02:49 +0000</pubDate>
</item>
<item>
<title>/addmail different behavior of argument MAILTO in 12.0 vs 11.1</title>
<link>https://overflow.efficy.io/?qa=5980/addmail-different-behavior-of-argument-mailto-in-12-0-vs-11-1</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I have used the web request &lt;strong&gt;&lt;em&gt;/addmail&lt;/em&gt;&lt;/strong&gt;  (&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/requests#addmail&quot;&gt;doc ref&lt;/a&gt;) with the argument &lt;strong&gt;&lt;em&gt;mailto&lt;/em&gt;&lt;/strong&gt; in project Efifcy 11.1. The &lt;strong&gt;&lt;em&gt;mailto&lt;/em&gt;&lt;/strong&gt; argument was filled with the email (string, not a number key) and when executing it I've got outlook opened with the given email in mailto argument.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;addmail?page=dialog/SysMailEditExternal&amp;amp;external=true&amp;amp;mailclient=outlook&amp;amp;files=62197_0&amp;amp;bookmark=-1&amp;amp;fromentityname=Docu&amp;amp;fromentitykey=19010&amp;amp;fromentity=12&amp;amp;template=91&amp;amp;mailto=*Emails are not allowed*
&lt;/code&gt;&lt;/pre&gt;

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

&lt;p&gt;Now, I am upgrading the client to Efficy 12.0 and I noticed that the mailto argument is no longer working as expected. Outlook shows &lt;strong&gt;&lt;em&gt;(Inactive)&lt;/em&gt;&lt;/strong&gt; instead of email (mailto value). But if I replace the mailto value with key number of Efficy user this one is filled up.  &lt;/p&gt;

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

&lt;p&gt;Any idea why &lt;strong&gt;&lt;em&gt;/addmail&lt;/em&gt;&lt;/strong&gt; behave differently in version 12.0 ? &lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5980/addmail-different-behavior-of-argument-mailto-in-12-0-vs-11-1</guid>
<pubDate>Wed, 17 Mar 2021 08:19:56 +0000</pubDate>
</item>
<item>
<title>Annoucement: security patches for designer 11.0 and 11.1</title>
<link>https://overflow.efficy.io/?qa=5956/annoucement-security-patches-for-designer-11-0-and-11-1</link>
<description>&lt;p&gt;Recently a security issue was identified that impacts Efficy designer.&lt;/p&gt;

&lt;p&gt;The following patched conficy.dll have been made available on the FTP server:&lt;/p&gt;

&lt;p&gt;Patch conficy.dll 11.0.24540.zip&lt;br&gt;
Patch conficy.dll 11.1.24537.zip&lt;/p&gt;

&lt;p&gt;We strongly recommend installing these patches on all production servers as soon as possible.&lt;br&gt;
We apologize for the inconvenience.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Yann&lt;/p&gt;
</description>
<category>Announcements</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5956/annoucement-security-patches-for-designer-11-0-and-11-1</guid>
<pubDate>Mon, 08 Mar 2021 14:35:07 +0000</pubDate>
</item>
<item>
<title>update/sync efficy contact custom data field to flexmail's free_field_1</title>
<link>https://overflow.efficy.io/?qa=5459/update-efficy-contact-custom-field-flexmails-freefield1</link>
<description>&lt;p&gt;How can we automatically export a custom contact/company field to flexmail contact user field e.g. &lt;code&gt;free_field_1&lt;/code&gt; when starting a flexmail campaign from Efficy.&lt;/p&gt;
</description>
<category>Efficy Integrations</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5459/update-efficy-contact-custom-field-flexmails-freefield1</guid>
<pubDate>Wed, 27 May 2020 11:22:30 +0000</pubDate>
</item>
<item>
<title>Why is SYS_CALENDAR not supplemented to 2030 for example with an db-upgrade?</title>
<link>https://overflow.efficy.io/?qa=5185/why-syscalendar-not-supplemented-2030-example-with-upgrade</link>
<description>&lt;p&gt;Why is SYS_CALENDAR not supplemented to the end of 2030 for example with an (db) upgrade?&lt;/p&gt;

&lt;p&gt;On older created databases, SYS_CALENDAR runs only until 2020. &lt;br&gt;
After several upgrades the table is still not supplemented.&lt;/p&gt;

&lt;p&gt;My Example: RUNA is now 11.1. SYS_CALENDAR runs until the end of 2020.&lt;/p&gt;

&lt;p&gt;Be aware: I will supplement SYS_CALENDAR on the RUNA database myself, with an script.&lt;/p&gt;

&lt;p&gt;Second question: Does anyone know where SYS_CALENDAR is used for, other then reporting?&lt;/p&gt;
</description>
<category>Reporting Solutions</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5185/why-syscalendar-not-supplemented-2030-example-with-upgrade</guid>
<pubDate>Tue, 14 Jan 2020 08:02:56 +0000</pubDate>
</item>
<item>
<title>Use of widgets Efficy 11.1 in version 11.3</title>
<link>https://overflow.efficy.io/?qa=5148/use-of-widgets-efficy-11-1-in-version-11-3</link>
<description>&lt;p&gt;Hi everybody,&lt;br&gt;
Does anyone have the solution to be able to use the widgets of version Efficy 11.1 in the dashboard of Efficy 11.3 ?&lt;br&gt;
Thank pou&lt;/p&gt;
</description>
<category>Reporting Solutions</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5148/use-of-widgets-efficy-11-1-in-version-11-3</guid>
<pubDate>Mon, 16 Dec 2019 15:43:19 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.1 build r19452 is available</title>
<link>https://overflow.efficy.io/?qa=5004/announcement-efficy-11-1-build-r19452-is-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.1 Release Build 19452&lt;/strong&gt; is now available from the Efficy Partner FTP.&lt;/p&gt;

&lt;p&gt;This build improves or corrects a number of issues that were present in build r18524 including the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Admin Console: Show 5 highest response times per session.&lt;/li&gt;
&lt;li&gt;Database Upgrade: Do not update content tables on child databases; will be replicated from the parent (CFT-2019-102328).&lt;/li&gt;
&lt;li&gt;Designer: Refresh the COM+ user cache when modifying the user language and timezone (CFT-2019-103277).&lt;/li&gt;
&lt;li&gt;Documents: Binary streams from FILES are loaded on demand to minimize database server bandwidth.&lt;/li&gt;
&lt;li&gt;Edge: Fix action launching before closing the window (same as IE) (CFT-2019-101987).&lt;/li&gt;
&lt;li&gt;Exchange Sync: Correct issue with recurrent appointments in different timezone (CFT-2019-103514).&lt;/li&gt;
&lt;li&gt;Exchange Web Sync: Work-around error when impersonate user has no mailbox (CFT-2019-101852). (published previously as r18562).&lt;/li&gt;
&lt;li&gt;Excel Export: Avoid error because of too long URL when a very large number of columns are selected (CFT-2019-102052).&lt;/li&gt;
&lt;li&gt;Flexmail Sync: Improve behavior when no blacklist is activated for the account (CFT-2019-102390).&lt;/li&gt;
&lt;li&gt;Outlook Add-in: Fix date conversion issue when syncing appointments that occur after the summer hour daylight change (CFT-2019-103083).&lt;/li&gt;
&lt;li&gt;Outlook/Office Add-in: Accelerate initialization when database contains a large number of users (CFT-2019-103455).&lt;/li&gt;
&lt;li&gt;Quotation Builder: Updated version of DocReadWrite component to correct header image issue (CFT-2019-101165).&lt;/li&gt;
&lt;li&gt;ServerJS: Catch exceptions in GetIDsOfNames calls and log all unexpected exceptions in ScriptException.log.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We recommend that you install this build on your production servers.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Announcements</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5004/announcement-efficy-11-1-build-r19452-is-available</guid>
<pubDate>Thu, 07 Nov 2019 16:15:21 +0000</pubDate>
</item>
<item>
<title>Node &lt;category&gt; not allowed in TConsultRequestHandler</title>
<link>https://overflow.efficy.io/?qa=4371/node-category-not-allowed-in-tconsultrequesthandler</link>
<description>&lt;p&gt;Hello Efficy Team, &lt;/p&gt;

&lt;p&gt;According to (my understanding of) the &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/edn/rpcfunctions#category&quot;&gt;documentation&lt;/a&gt;, we can retrieve the data of a categoy in SOAP, with the node &quot;category&quot;.&lt;/p&gt;

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

&lt;p&gt;However, I get an error when I am trying to use it : &lt;/p&gt;

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

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

&lt;p&gt;What did I missed ? &lt;/p&gt;

&lt;p&gt;Obviously, I am not in &amp;gt;11.2, I cannot use RPC JSON request ... :( &lt;/p&gt;

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

&lt;p&gt;Loïc&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4371/node-category-not-allowed-in-tconsultrequesthandler</guid>
<pubDate>Tue, 28 May 2019 04:53:13 +0000</pubDate>
</item>
<item>
<title>Delete a custom entity</title>
<link>https://overflow.efficy.io/?qa=4326/delete-a-custom-entity</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;In one of my project, my customer create a custom entity into the designer that we really need to destroy before going live.&lt;/p&gt;

&lt;p&gt;I need to destroy all fields, tables, relation tables, forms, ... linked to this entity. There no data inside and no code mention it into Efficy or into the custom. &lt;/p&gt;

&lt;p&gt;How to do it properly?&lt;/p&gt;

&lt;p&gt;Thanks in advance for your help.&lt;/p&gt;

&lt;p&gt;Laurent&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4326/delete-a-custom-entity</guid>
<pubDate>Thu, 23 May 2019 15:05:17 +0000</pubDate>
</item>
<item>
<title>Manipulate Flexmail form data into Efficy</title>
<link>https://overflow.efficy.io/?qa=4315/manipulate-flexmail-form-data-into-efficy</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I have questions about the (Flexmail) form into Efficy. Indeed when we sent a campaign, we can assign a Flexmail form to this campaign. When the result are sync, the data of this form is stored into PUBL_CONT.FORMDATA&lt;/p&gt;

&lt;p&gt;But for a customer, we need to manipulate some data from this form. So my questions are:&lt;br&gt;
-Can we manipulate this data with the workflow during the sync?&lt;br&gt;
-Can we customize the connector to manipulate the data?&lt;br&gt;
-Is it stored as a json text?&lt;/p&gt;

&lt;p&gt;Thanks in advance for your help,&lt;/p&gt;

&lt;p&gt;Laurent&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4315/manipulate-flexmail-form-data-into-efficy</guid>
<pubDate>Wed, 22 May 2019 12:40:08 +0000</pubDate>
</item>
<item>
<title>Overflow while converting variant of type (Double) into type (Integer) on Efficy.OpenEditContextRelation</title>
<link>https://overflow.efficy.io/?qa=4256/overflow-converting-variant-integer-openeditcontextrelation</link>
<description>&lt;p&gt;During a migration from Efficy 2012 to Efficy 11.1 The following code in a serverscript gives an Overflow error :&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Message: &quot;Overflow while converting variant of type (Double) into type (Integer)&quot;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The code which throws this error :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;var editSource = Efficy.OpenEditContextRelation(ntOppo, ntProd, k_Opportunity, K_Product, k_Relation);
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Parameters passed to the functions are the following:&lt;/p&gt;

&lt;p&gt;Key = 203703&lt;/p&gt;

&lt;p&gt;DetailKey = 17012&lt;/p&gt;

&lt;p&gt;K_Relation = &lt;strong&gt;752975747&lt;/strong&gt; (which is stored in the SQL DB as an int correctly)&lt;/p&gt;

&lt;p&gt;Is there a reason why this doesn't work properly in Efficy 11.1?&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4256/overflow-converting-variant-integer-openeditcontextrelation</guid>
<pubDate>Thu, 16 May 2019 10:14:15 +0000</pubDate>
</item>
<item>
<title>Docx template with runScript (formated)</title>
<link>https://overflow.efficy.io/?qa=4062/docx-template-with-runscript-formated</link>
<description>&lt;p&gt;Hi!&lt;br&gt;
For one of our client I need to format a template via runScript. on my script I have 4 columns and few lines. I want to return these data in a table each columns in a cell and each line in a row, but I get all lines in one cell for each columns.&lt;/p&gt;

&lt;p&gt;How can i get this working&lt;/p&gt;

&lt;p&gt;Ps: the goal for the client is that each row will be separated by a horizontal line&lt;/p&gt;

&lt;p&gt;thanks&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4062/docx-template-with-runscript-formated</guid>
<pubDate>Tue, 26 Mar 2019 13:31:33 +0000</pubDate>
</item>
<item>
<title>Error Code 12057 - LIBS-1690 - ReportDispatchService - On premise</title>
<link>https://overflow.efficy.io/?qa=3998/error-code-12057-libs-1690-reportdispatchservice-premise</link>
<description>&lt;p&gt;Disable the following option and it should work.&lt;br&gt;
Kr,&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=6362820776007553053&quot; alt=&quot;enter image description here&quot;&gt;&lt;br&gt;
IE Options&lt;/p&gt;
</description>
<category>Errors</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3998/error-code-12057-libs-1690-reportdispatchservice-premise</guid>
<pubDate>Mon, 04 Mar 2019 08:42:37 +0000</pubDate>
</item>
<item>
<title>Customize application mobile</title>
<link>https://overflow.efficy.io/?qa=3963/customize-application-mobile</link>
<description>&lt;p&gt;Hello the team, &lt;/p&gt;

&lt;p&gt;A customer asked me today if it was possible to customize the application mobile, what could be change via conficy : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Adding an Entity (I know it is possible, I just don't know how)&lt;/li&gt;
&lt;li&gt;Showing the job-title of the contacts (defined in the cont-comp relation), in the search from&lt;/li&gt;
&lt;li&gt;customize the consult of the cont-comp&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Could you enlighten me ? I found no documentation so far. It would be nice to have some (maybe a project team guide ?)&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=3963/customize-application-mobile</guid>
<pubDate>Mon, 18 Feb 2019 17:51:35 +0000</pubDate>
</item>
<item>
<title>Error on opening DOCX and XLSX files</title>
<link>https://overflow.efficy.io/?qa=3696/error-on-opening-docx-and-xlsx-files</link>
<description>&lt;p&gt;We recently upgraded an on premise customer to Efficy 11.1&lt;br&gt;
After the upgrade the customer has a problem with opening DOCX files from Efficy documents.&lt;br&gt;
Directly after opening the &quot;connection&quot; between the Efficy-document and the file is lost: When the user saves the file, an error pops up: &quot;There was an error uploading the file, do you want to try again ?&quot;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is special:&lt;/strong&gt;&lt;br&gt;
This problem only occurs on DOCX and XLSX files. DOC files and XLS files and any other types of files (rtf, txt) works fine.&lt;br&gt;
The problem only occurs on devices of the customer. I cannot reproduce the problem on my own machine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Customer Environment&lt;/strong&gt;&lt;br&gt;
Efficy v11.1.13&lt;br&gt;
The customer works on Office 365 &lt;strong&gt;ProPlus&lt;/strong&gt;&lt;/p&gt;
</description>
<category>Other</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3696/error-on-opening-docx-and-xlsx-files</guid>
<pubDate>Mon, 03 Dec 2018 09:37:06 +0000</pubDate>
</item>
<item>
<title>Activate Extranet locally for Efficy 11.1</title>
<link>https://overflow.efficy.io/?qa=3663/activate-extranet-locally-for-efficy-11-1</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I need to make some changes to the Extranet for a customer, but I'm unable to load the Extranet pages locally. I get the following error:&lt;br&gt;
D: ENTT-2303&lt;br&gt;
Message: File repository not configured&lt;br&gt;
Comment:&lt;br&gt;
Details: Application Server Error&lt;br&gt;
Application Server Error&lt;br&gt;
Application Server Error&lt;/p&gt;

&lt;h2&gt;ErrorContext&lt;/h2&gt;

&lt;p&gt;ESlspException 0&lt;br&gt;
File repository not configured&lt;/p&gt;

&lt;h2&gt;ErrorContext&lt;/h2&gt;

&lt;p&gt;EEfficyException 0&lt;br&gt;
(ENTT-2303) File repository not configured&lt;br&gt;
(ENTT-2303) File repository not configured&lt;/p&gt;

&lt;p&gt;This happens when the following call is done in the logon-page:&lt;br&gt;
Call ForgotPasswordURL(database=customer, context=ATTR)&lt;/p&gt;

&lt;p&gt;How can I solve this problem?&lt;/p&gt;

&lt;p&gt;Kind regards,&lt;br&gt;
Jeroen&lt;/p&gt;
</description>
<category>Extranet / HelpDesk</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3663/activate-extranet-locally-for-efficy-11-1</guid>
<pubDate>Wed, 14 Nov 2018 14:17:05 +0000</pubDate>
</item>
</channel>
</rss>