<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions and answers in Efficy Partners</title>
<link>https://overflow.efficy.io/?qa=qa/partners</link>
<description>Powered by Question2Answer</description>
<item>
<title>Answered: Efficy Entreprise toolbar in New Outlook ?</title>
<link>https://overflow.efficy.io/?qa=7215/efficy-entreprise-toolbar-in-new-outlook&amp;show=7225#a7225</link>
<description>&lt;p&gt;Hi Dimitri,&lt;br&gt;
I have the same question. Has anyone answered you?&lt;br&gt;
Mark&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7215/efficy-entreprise-toolbar-in-new-outlook&amp;show=7225#a7225</guid>
<pubDate>Wed, 25 Mar 2026 10:44:18 +0000</pubDate>
</item>
<item>
<title>MSSQL How to change the schema and user when you restore a DB and want to change the &quot;ADMIN&quot; username</title>
<link>https://overflow.efficy.io/?qa=7057/mssql-change-schema-user-when-restore-change-admin-username</link>
<description>&lt;p&gt;Hello, I recently had to restore a DB from a backup file on my local environnement to make some dev&lt;/p&gt;

&lt;p&gt;unfortunately the default schema was &quot;service&quot; and my local user is &quot;ADMIN&quot;&lt;/p&gt;

&lt;p&gt;this is how i changed everything to make &quot;ADMIN&quot; great again.&lt;/p&gt;

&lt;p&gt;after i restored the DB on my local envfironnement I ran the sql script : (adjustements necessary)&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/*
IMPORTANT: Efficy is using the following query to find the OWNER of the DATABASE = SCHEMA
cf : https://overflow.efficy.io/?qa=3763/db-upgrade-missing-database-schema&amp;amp;show=3785#a3785

select cast(sysusers.name as varchar(30)) 
from sysobjects, sysusers
where sysobjects.type = 'U' and sysobjects.name = 'SYS_DATABASE' and sysobjects.uid = sysusers.uid
*/

DECLARE
    @OldSchema varchar(30),
    @NewSchema varchar(30),
    @CursorVar varchar(50),
    @Password  varchar(30),
    @DbName    varchar(30)

set @OldSchema = 'ADMINANYTHING'        -- &amp;lt;=== Name of the actuel Owner
set @NewSchema = 'ADMIN'    -- &amp;lt;=== Name of the new Owner
set @Password  = 'pswd'   -- &amp;lt;=== PAssword of the new User
set @DbName    = 'yourDBName'         -- &amp;lt;=== Database name. Specify It Too @ line 35


use [MASTER]
-- create login if not exist.
IF (NOT EXISTS (SELECT * FROM sys.server_principals WHERE TYPE IN ('U', 'S', 'G') and name = @NewSchema)) 
    BEGIN
        print('creating Login ' + @NewSchema collate Latin1_General_CI_AS)
        exec ('create login ' + @NewSchema + ' with password = '''+ @Password + ''', CHECK_POLICY = OFF, DEFAULT_DATABASE = ' + @DbName + ';')
    END
ELSE
    BEGIN
        print('Login ' + @NewSchema  collate Latin1_General_CI_AS + ' already exist')
    END

USE yourDBName                      -- &amp;lt;=== FILL DATABASE NAME HERE !

-- create Schema if not exist.
IF (NOT EXISTS (SELECT * FROM sys.schemas WHERE name = @NewSchema)) 
    BEGIN
        print('creating schema ' + @NewSchema collate Latin1_General_CI_AS)
        EXEC ('CREATE SCHEMA [' + @NewSchema  + '] AUTHORIZATION [dbo]')
    END
ELSE
    BEGIN
        print('Schema ' + @NewSchema collate Latin1_General_CI_AS + ' already exist')
    END

-- create user if not exist.
IF (NOT EXISTS (SELECT * FROM sys.sysusers WHERE name = @NewSchema)) 
    BEGIN
        print('creating user ' + @NewSchema collate Latin1_General_CI_AS)
        EXEC ('CREATE USER ' + @NewSchema + ' FOR LOGIN ' + @NewSchema + ' WITH DEFAULT_SCHEMA = ' + @NewSchema + ';');
    END
ELSE
    BEGIN
        print('User ' + @NewSchema collate Latin1_General_CI_AS + ' already exist')
    END
EXEC sp_addrolemember @rolename = 'db_owner', @membername= @NewSchema

-- move items to new schema
/*
FN = SQL scalar function
FS = Assembly (CLR) scalar-function
FT = Assembly (CLR) table-valued function
IF = SQL inline table-valued function
P = SQL Stored Procedure
PC = Assembly (CLR) stored-procedure
TA = Assembly (CLR) DML trigger
TF = SQL table-valued-function
TR = SQL DML trigger
U = Table (user-defined)
V = View
*/
DECLARE obj_cursor CURSOR FOR
    SELECT name FROM sys.objects
    WHERE type IN ('U','V','P','Fn','TF') AND SCHEMA_NAME(SCHEMA_ID) = @OldSchema collate Latin1_General_CI_AS

OPEN obj_cursor
FETCH NEXT FROM obj_cursor INTO @CursorVar

WHILE @@FETCH_STATUS = 0
BEGIN
print('ALTER SCHEMA ' + @NewSchema + ' TRANSFER ' + @OldSchema + '.'+ @CursorVar) --SRO
    exec('ALTER SCHEMA ' + @NewSchema + ' TRANSFER ' + @OldSchema + '.'+ @CursorVar + ' ;')

    FETCH NEXT FROM obj_cursor INTO @CursorVar
END

CLOSE obj_cursor
DEALLOCATE obj_cursor

-- rename admin login in acc_accounts
exec('UPDATE ' + @NewSchema + '.ACC_ACCOUNTS SET USERCODE = ''' + @NewSchema + ''' WHERE K_USER = 2;')

-- Map database user with login.
exec sp_change_users_login @Action ='Auto_Fix' , @UserNamePattern=@NewSchema
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Info: because my ADMIN user was already existing the script throwed 2 errors (without consequence)&lt;/p&gt;

&lt;p&gt;after that i had to go on the security&amp;gt;logins&amp;gt;ADMIN&amp;gt;properties&amp;gt;User mappings &lt;br&gt;
then I updated the user and default schema for my restored database.&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=7057/mssql-change-schema-user-when-restore-change-admin-username</guid>
<pubDate>Mon, 08 Apr 2024 10:03:01 +0000</pubDate>
</item>
<item>
<title>Answered: Opening Word documents in Android environment</title>
<link>https://overflow.efficy.io/?qa=6748/opening-word-documents-in-android-environment&amp;show=6752#a6752</link>
<description>&lt;p&gt;If you have Office 365, then you have the Android Office application :)&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.microsoft.com/fr-fr/microsoft-365/mobile/microsoft-365-mobile-apps-for-android&quot;&gt;https://www.microsoft.com/fr-fr/microsoft-365/mobile/microsoft-365-mobile-apps-for-android&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6748/opening-word-documents-in-android-environment&amp;show=6752#a6752</guid>
<pubDate>Wed, 09 Nov 2022 12:22:25 +0000</pubDate>
</item>
<item>
<title>Answered: How to create a new DB in Efficy 11.3 (new install)</title>
<link>https://overflow.efficy.io/?qa=4667/how-to-create-a-new-db-in-efficy-11-3-new-install&amp;show=6553#a6553</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 Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4667/how-to-create-a-new-db-in-efficy-11-3-new-install&amp;show=6553#a6553</guid>
<pubDate>Tue, 24 May 2022 17:26:52 +0000</pubDate>
</item>
<item>
<title>Answered: security from entities</title>
<link>https://overflow.efficy.io/?qa=5515/security-from-entities&amp;show=5519#a5519</link>
<description>&lt;p&gt;Follow the (partially outdated) instructions from this &lt;a rel=&quot;nofollow&quot; href=&quot;https://overflow.efficy.io/?qa=1194/default-security-inheritance-multiple-security-inheritance&amp;amp;show=1195#a1195&quot;&gt;post&lt;/a&gt;. The localStorage settings have now been moved to &lt;code&gt;SYS_SETTINGS&lt;/code&gt;, but you already figured that out!&lt;/p&gt;

&lt;p&gt;I guess we need to make a Project Guide for this customization, one day :-)&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5515/security-from-entities&amp;show=5519#a5519</guid>
<pubDate>Fri, 17 Jul 2020 14:38:21 +0000</pubDate>
</item>
<item>
<title>Answered: security dashboard</title>
<link>https://overflow.efficy.io/?qa=5494/security-dashboard&amp;show=5495#a5495</link>
<description>&lt;p&gt;There is a new checkbox inside &lt;strong&gt;Group Privileges&lt;/strong&gt; that you have to flag.&lt;br&gt;
For instance on Everyone. That should do the trick :-)&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=157903713774711969&quot; alt=&quot;Preview&quot;&gt;&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5494/security-dashboard&amp;show=5495#a5495</guid>
<pubDate>Tue, 23 Jun 2020 18:20:05 +0000</pubDate>
</item>
<item>
<title>Answered: OpenUrlSecure timeout</title>
<link>https://overflow.efficy.io/?qa=5453/openurlsecure-timeout&amp;show=5454#a5454</link>
<description>&lt;p&gt;Hi Sben,&lt;/p&gt;

&lt;p&gt;As-tu regarder le Project guide suivant concernant OpenUrlSecure ? &lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/projectguides/openurlsecure&quot;&gt;&lt;/a&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/projectguides/openurlsecure&quot;&gt;https://help.efficy.io/edn/projectguides/openurlsecure&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5453/openurlsecure-timeout&amp;show=5454#a5454</guid>
<pubDate>Tue, 26 May 2020 11:16:05 +0000</pubDate>
</item>
<item>
<title>Answered: Open a company card from outside efficy (Minos)</title>
<link>https://overflow.efficy.io/?qa=5417/open-a-company-card-from-outside-efficy-minos&amp;show=5418#a5418</link>
<description>&lt;p&gt;Hi&lt;/p&gt;

&lt;p&gt;In Efficy 11+ versions, I recommend to use the simplified and human readable URL format for externally opening Efficy on an entity consult page.&lt;/p&gt;

&lt;p&gt;E.g. Use this URL format to consult a company with key 123456&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;https://hostname/crm/view/Comp/123456
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;See also our Project Guide for integrating cloud telephony applications, it also explains the question on how the cloud software can &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.io/edn/projectguides/telephony_integration#viewing_a_contact_or_company&quot;&gt;open the dialer in Efficy&lt;/a&gt;.&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5417/open-a-company-card-from-outside-efficy-minos&amp;show=5418#a5418</guid>
<pubDate>Mon, 04 May 2020 09:16:45 +0000</pubDate>
</item>
<item>
<title>Answered: Widget dashboard list columns definition</title>
<link>https://overflow.efficy.io/?qa=5208/widget-dashboard-list-columns-definition&amp;show=5218#a5218</link>
<description>&lt;p&gt;Hi,&lt;br&gt;
You can add a specific definition for your need, in GridColumns.&lt;br&gt;
To be able to s1elect your new definition in the column parameters, you can add it in the macro QrvwWiz1StylesItemsCustom in MacroEdit.txt.&lt;br&gt;
KR,&lt;br&gt;
Yann&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5208/widget-dashboard-list-columns-definition&amp;show=5218#a5218</guid>
<pubDate>Mon, 20 Jan 2020 13:07:18 +0000</pubDate>
</item>
<item>
<title>Announcement: Patch for Exchange Web Synchro library for Efficy 11 and 10</title>
<link>https://overflow.efficy.io/?qa=4686/announcement-patch-for-exchange-web-synchro-library-efficy</link>
<description>&lt;p&gt;Recently the Exchange Web Synchro services have shown repeated occurrences of the error &quot;EWS Login Error: SOAP header Action was not understood&quot; during the connection to the main Exchange Account.&lt;br&gt;
Our investigation has shown that this error only appears when the main (admin) Exchange Account does not have an associated mailbox.&lt;/p&gt;

&lt;p&gt;To solve this issue you can install the following patches for the Exchange Web Synchro library:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Efficy 11.3: Exchange Web Synchro 11.3.18558&lt;/li&gt;
&lt;li&gt;Efficy 11.2: Exchange Web Synchro 11.2.18561&lt;/li&gt;
&lt;li&gt;Efficy 11.1: Exchange Web Synchro 11.1.18562&lt;/li&gt;
&lt;li&gt;Efficy 11.0: Exchange Web Synchro 11.0.18542&lt;/li&gt;
&lt;li&gt;Efficy 10 SP2+: Exchange Web Synchro 10.2.18563&lt;/li&gt;
&lt;li&gt;Efficy 10 SP1: Exchange Web Synchro 10.1.18564&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These patches are now available on the Partner FTP site.&lt;br&gt;
For older versions you can work around the error by adding a mailbox to the admin account.&lt;/p&gt;

&lt;p&gt;Best Regards,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4686/announcement-patch-for-exchange-web-synchro-library-efficy</guid>
<pubDate>Mon, 12 Aug 2019 14:08:18 +0000</pubDate>
</item>
<item>
<title>Answered: Trouble with openUrlSecure request</title>
<link>https://overflow.efficy.io/?qa=3686/trouble-with-openurlsecure-request&amp;show=4665#a4665</link>
<description>&lt;p&gt;I still have issues using openUrlSecure or openURL2. Both on the same issue: passing multiple headers. If I use postman it works immediately, but using (Efficy)javascript does not work. Any ideas?&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3686/trouble-with-openurlsecure-request&amp;show=4665#a4665</guid>
<pubDate>Thu, 08 Aug 2019 12:11:41 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.0 build r18526 is available</title>
<link>https://overflow.efficy.io/?qa=4663/announcement-efficy-11-0-build-r18526-is-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.0 Release Build 18526&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 r14853 including the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Documents: Correction for opening linked files (hasn't worked since Efficy 11.0) (CFT-2019-97939).&lt;/li&gt;
&lt;li&gt;Flexmail: Filter unsupported XML characters in synchro requests (CFT-2019-98445).&lt;/li&gt;
&lt;li&gt;Flexmail: Prevent deleting contact having the same email address in different email fields (CFT-2019-97325).&lt;/li&gt;
&lt;li&gt;Google Sync: Add StartDate and EndDate to the temporary appo created to retrieve the server time (if the ntp request failed) (CFT-2018-89696).&lt;/li&gt;
&lt;li&gt;Merging two Contacts will transfer the ACC_AUTH records to the merged record.&lt;/li&gt;
&lt;li&gt;Notifications: Fix wrong number of notifications in cloud environment (CFT-2019-98249).&lt;/li&gt;
&lt;li&gt;Queries: Correct security vulnerability related to inline SQL parameters. (published previously as r17773).&lt;/li&gt;
&lt;li&gt;Queries: Fix multivalue control in &quot;Change Parameter&quot; dialog for queries (CFT-2018-93929). (published previously as r15626).&lt;/li&gt;
&lt;li&gt;Sidebar: Fix efficy: protocol not working after Windows Update for IE. (published previously as 11.1.16949).&lt;/li&gt;
&lt;li&gt;Sidebar: Use up to TLS v1.2 as HTTPS protocol for big files and certificate (CFT-2019-94936). (published previously as r15908).&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>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4663/announcement-efficy-11-0-build-r18526-is-available</guid>
<pubDate>Wed, 07 Aug 2019 12:02:08 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.1 build r18524 is available</title>
<link>https://overflow.efficy.io/?qa=4662/announcement-efficy-11-1-build-r18524-is-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.1 Release Build 18524&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 r17608 including the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Data Synchro: Always use UTC for last sync date in batch execution (CFT-2019-99266) (published previously as r17842).&lt;/li&gt;
&lt;li&gt;Designer: Make sure Reference list is complete (no security clause in query) (CFT-2019-100754).&lt;/li&gt;
&lt;li&gt;Documents: Always use plain ASCII file names for ImageMagick processing (CFT-2019-101682).&lt;/li&gt;
&lt;li&gt;Edit: Avoid losing formatting of memo of linked actions when modifying a Document or an Appointment.&lt;/li&gt;
&lt;li&gt;Notifications: Fix wrong number of notifications in cloud environment (CFT-2019-98249).&lt;/li&gt;
&lt;li&gt;Queries: Correct security vulnerability related to inline SQL parameters (published previously as r17772).&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>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4662/announcement-efficy-11-1-build-r18524-is-available</guid>
<pubDate>Wed, 07 Aug 2019 12:00:44 +0000</pubDate>
</item>
<item>
<title>Announcement: COM+ Server patch for Efficy 11, 10, 2014 and 2012 to correct important security issue</title>
<link>https://overflow.efficy.io/?qa=4441/announcement-server-patch-efficy-correct-important-security</link>
<description>&lt;p&gt;Recently an important security issue was identified that impacts all known Efficy versions. The issue is related to inline SQL parameters that could allow an Efficy user to run unwanted update or delete statement in the database.&lt;/p&gt;

&lt;p&gt;In recognition of the severity of this problem we have decided to release patches for the COM+ server for Efficy releases since 2012.&lt;/p&gt;

&lt;p&gt;The following patched COM+ servers have been made available on the FTP server:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Efficy 11.2 EfficyServer 11.2.17771.dll&lt;/li&gt;
&lt;li&gt;Efficy 11.1 EfficyServer 11.1.17772.dll&lt;/li&gt;
&lt;li&gt;Efficy 11.0 EfficyServer 11.0.17773.dll&lt;/li&gt;
&lt;li&gt;Efficy 10 SP2+ DServerDll 10.2.17791.dll&lt;/li&gt;
&lt;li&gt;Efficy 10 SP1 DServerDll 10.1.17790.dll&lt;/li&gt;
&lt;li&gt;Efficy 10 DServerDll 10.0.17792.dll&lt;/li&gt;
&lt;li&gt;Efficy 2014 (6640) DServerDll 8.0.17794.dll&lt;/li&gt;
&lt;li&gt;Efficy 2012 Summer DServerDll 7.0.17793.dll&lt;/li&gt;
&lt;/ul&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;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4441/announcement-server-patch-efficy-correct-important-security</guid>
<pubDate>Tue, 11 Jun 2019 14:21:03 +0000</pubDate>
</item>
<item>
<title>Announcement: New Sidebar package for Efficy 2014 to cope with recent changes in Internet Explorer</title>
<link>https://overflow.efficy.io/?qa=4329/announcement-sidebar-package-efficy-changes-internet-explorer</link>
<description>&lt;p&gt;In a recent Windows Update (KB4489899) Microsoft has modified the way in which protocol commands are being sent by Internet Explorer.&lt;/p&gt;

&lt;p&gt;We've published a new Sidebar Setup for Efficy 2014, similar to the packages we released for Efficy 11 and 10 in the previous &lt;a rel=&quot;nofollow&quot; href=&quot;https://overflow.efficy.com/?qa=4047/announcement-sidebar-packages-changes-internet-explorer&quot;&gt;Announcement: New Sidebar packages for Efficy 11 and 10 to cope with recent changes in Internet Explorer&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The following setup is available in the Efficy 2014 folder on the Partner FTP:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Setup Efficy 2014 (r6640) SideBar and Add-ins r17613.msi&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If your customers use Internet Explorer for Efficy we recommend that you deploy this new Sidebar setup as soon as possible.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4329/announcement-sidebar-package-efficy-changes-internet-explorer</guid>
<pubDate>Thu, 23 May 2019 15:48:52 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.1 build r17608 is available</title>
<link>https://overflow.efficy.io/?qa=4328/announcement-efficy-11-1-build-r17608-is-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.1 r17608&lt;/strong&gt; is now available from the Efficy Partner FTP.&lt;/p&gt;

&lt;p&gt;This build includes the following corrections or improvements compared to r16590:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Allow filebase and custombase URL parameters to contain slashes (/) and backslashes (&amp;#41;. (published previously as 11.1.16658).&lt;/li&gt;
&lt;li&gt;Concurrent users: Avoid redirection from logon page to desktop when a session has expired (CFT-2019-97098).&lt;/li&gt;
&lt;li&gt;Consult: Hide date if empty for definition &quot;DATE&quot; (CFT-2018-90782).&lt;/li&gt;
&lt;li&gt;Documents: Correction for opening linked files (hasn't worked since Efficy 11.0) (CFT-2019-97939).&lt;/li&gt;
&lt;li&gt;Flexmail: Filter unsupported XML characters in synchro requests (CFT-2019-98445).&lt;/li&gt;
&lt;li&gt;Flexmail: Prevent deleting contact having the same email address in different email fields (CFT-2019-97325).&lt;/li&gt;
&lt;li&gt;Sidebar: Fix efficy: protocol not working after Windows Update for IE. (published previously as 11.1.16948).&lt;/li&gt;
&lt;li&gt;Sidebar: Handle &quot;remote&quot; files in the same way as embedded files (CFT-2019-98977).&lt;/li&gt;
&lt;li&gt;Sidebar: Large files will always remain large files (the initial size decides whether a file is large).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We recommend that you install this build on all Efficy 11.1 installations.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4328/announcement-efficy-11-1-build-r17608-is-available</guid>
<pubDate>Thu, 23 May 2019 15:35:36 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.2 build r17611 is available</title>
<link>https://overflow.efficy.io/?qa=4327/announcement-efficy-11-2-build-r17611-is-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.2 r17611&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 r17243 including the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Agenda: Avoid MAIN field not found error when creating follow-up of appointment with actions linked to it (CFT-2019-98652).&lt;/li&gt;
&lt;li&gt;API: Insertion of new entiy in /json API did not return key (CFT-2019-99314).&lt;/li&gt;
&lt;li&gt;API: Various minor improvements to exception handling of JSON and SOAP RPC (CFT-2019-98660).&lt;/li&gt;
&lt;li&gt;API: Obfuscate profile password saved in SOAP request logs.&lt;/li&gt;
&lt;li&gt;API Key: Make sure * enables all IP addresses in the IP whitelist.&lt;/li&gt;
&lt;li&gt;Azure AD: If &quot;email&quot; property is not available in id&lt;em&gt;token response, use &quot;unique&lt;/em&gt;name&quot; property instead (CFT-2019-98308).&lt;/li&gt;
&lt;li&gt;Concurrent users: Avoid redirection from logon page to desktop when a session has expired (CFT-2019-97098).&lt;/li&gt;
&lt;li&gt;DataSync: Publish property efficy.logThreadIndex for import/export scripts.&lt;/li&gt;
&lt;li&gt;DataSync remote: Correct multi-threaded operation so that Efficy.dll uses multiple sessions.&lt;/li&gt;
&lt;li&gt;DBCommandTools: If structure files are not located in current folder, get them from the install dir (CFT-2019-99433).&lt;/li&gt;
&lt;li&gt;DBStaging: Add a check to force usage of proper Efficy data types (CFT-2019-98593).&lt;/li&gt;
&lt;li&gt;Documents: Improve management of conflicting attachment versions with option of keeping both files.&lt;/li&gt;
&lt;li&gt;Documents: When efficy.zipFiles creates a large file, make lcoal file copy if Servicy is on same server (CFT-2019-99454).&lt;/li&gt;
&lt;li&gt;dtSearch: Now installed by its own Setup so that the dtSearch component can be shared by several Efficy installations.&lt;/li&gt;
&lt;li&gt;Duplicate Merge: When merging contacts also update ACC&lt;em&gt;ACCOUNTS.K&lt;/em&gt;CONTACT (CFT-2019-98874).&lt;/li&gt;
&lt;li&gt;Edit: Reload edit when releasing lock so all controls are read-only.&lt;/li&gt;
&lt;li&gt;Efficy Drive: Fix missing registry key in installation via Sidebar (CFT-2019-98994).&lt;/li&gt;
&lt;li&gt;Gamification: Fix context encoding for motivation feed next reward.&lt;/li&gt;
&lt;li&gt;Google Chrome: Avoid ERR&lt;em&gt;NETWORK&lt;/em&gt;IO_SUSPENDED error in Ajax calls after Windows sleep and wake up.&lt;/li&gt;
&lt;li&gt;Internet Explorer: Correct content type for Efficy error messages (CFT-2019-98841).&lt;/li&gt;
&lt;li&gt;Locks: Add detection of disconnect events to check if someone modified the item since disconnect.&lt;/li&gt;
&lt;li&gt;Options: Disable autocomplete for mail upload passwords (CFT-2019-98550).&lt;/li&gt;
&lt;li&gt;PdfOffice Converter: Kill Word/Excel/Powerpoint after a configurable time-out when PDF conversion hangs (CFT-2019-98891).&lt;/li&gt;
&lt;li&gt;Qlik: Allow Efficy.Qlik settings to be defined per database instead of only in ServerSettings.json (CFT-2019-98920).&lt;/li&gt;
&lt;li&gt;SideBar: Fix SOAP issue when ThousandSeparator is #0 (variable missing in registry when imported) (CFT-2019-98368).&lt;/li&gt;
&lt;li&gt;Sidebar: Handle &quot;remote&quot; files in the same way as embedded files (CFT-2019-98977).&lt;/li&gt;
&lt;li&gt;Sidebar: Large files will always remain large files (the initial size decides whether a file is large).&lt;/li&gt;
&lt;li&gt;Sidebar (macOS): Reconnect to existing context and keep context opened if a file is currently uploaded or downloaded.&lt;/li&gt;
&lt;li&gt;Timeline optimisation: Use existing consult context instead of opening new contexts for every request.&lt;/li&gt;
&lt;li&gt;Translated Fields: Included in search queries, and used in treeviews and for sorting and grouping.&lt;/li&gt;
&lt;li&gt;Treeview: Correct &quot;Confidential&quot; message in parent nodes of treeview.&lt;/li&gt;
&lt;li&gt;Treeview: Fix broken treeview when items have single quotes in their names.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are a number of very good improvements in the list above, we recommend that you install this build on all Efficy 11.2 installations.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4327/announcement-efficy-11-2-build-r17611-is-available</guid>
<pubDate>Thu, 23 May 2019 15:23:14 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy Gmail Add-on is finally available in the Gmail store!</title>
<link>https://overflow.efficy.io/?qa=4133/announcement-efficy-gmail-add-finally-available-gmail-store</link>
<description>&lt;p&gt;It's taken nearly 4 months to get approved by Google, but at last the &lt;strong&gt;Efficy Gmail add-on&lt;/strong&gt; is available in the Gmail store!&lt;/p&gt;

&lt;p&gt;You can open Gmail on the desktop or on your smartphone and go to the configuration menu to add the add-on (search for &quot;efficy&quot; to find it in the Gmail add-on store).&lt;/p&gt;

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

&lt;p&gt;Efficy for Gmail lets you interact with Efficy CRM without leaving Gmail.&lt;br&gt;
While consulting a Gmail message, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Show Efficy contacts information based on the Gmail message recipients;&lt;/li&gt;
&lt;li&gt;Save a Gmail message into Efficy (recipients already present in your Efficy CRM will be automatically linked to it);&lt;/li&gt;
&lt;li&gt;Search existing Efficy entities (Companies, Opportunities and Incidents) and link them to the message;&lt;/li&gt;
&lt;li&gt;Save recipients as a new Efficy contact;&lt;/li&gt;
&lt;li&gt;Convert a Gmail message into other Efficy entities (e.g. Documents, Sales Opportunities and Incidents).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;While composing a Gmail message, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Search Efficy entities and insert their Efficy hyperlink in your draft;&lt;/li&gt;
&lt;li&gt;Share Efficy Files directly from Gmail. You can either create a sharing link to an Efficy Document or to a specific file of your desired Document.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As noted above, the add-on will also work on your smartphone's Gmail.&lt;/p&gt;

&lt;p&gt;We hope you'll enjoy this application!&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4133/announcement-efficy-gmail-add-finally-available-gmail-store</guid>
<pubDate>Tue, 23 Apr 2019 15:53:30 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.2 build r17243 is available</title>
<link>https://overflow.efficy.io/?qa=4118/announcement-efficy-11-2-build-r17243-is-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.2 r17243&lt;/strong&gt; is now available from the Efficy Partner FTP.&lt;/p&gt;

&lt;p&gt;New features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CTI: Trigger phone actions when dialing from Efficy.&lt;/li&gt;
&lt;li&gt;DataSync: Publish property efficy.logThreadIndex for import/export scripts. &lt;/li&gt;
&lt;li&gt;Documents: New dialog with more relevant information when conflicting file changes occur.&lt;/li&gt;
&lt;li&gt;Edit: Make edit lock handling more robust by using Ajax calls instead of iframe; recover edit lock after loss of network.&lt;/li&gt;
&lt;li&gt;ServerJS: New efficy.zipFiles function to generate zip archives from a selected list of documents.&lt;/li&gt;
&lt;li&gt;ServerJS: New optional parameter &quot;forceuserrole&quot; in &quot;impersonateuser&quot; RPC command.&lt;/li&gt;
&lt;li&gt;ServerJS: All functions that return a date value (TDateTime) now return a numerical value, not a JS date.&lt;/li&gt;
&lt;li&gt;Sidebar: (Windows and macOS) Allow SAML authentication by persisting additional authentication cookie. &lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;AliasManager: Fix access violation after adding an alias (CFT-2019-96740).&lt;/li&gt;
&lt;li&gt;API: Fix API IP whitelist check method (CFT-2019-97196).&lt;/li&gt;
&lt;li&gt;DataSynchro: Fix using remote filebase and custombase in import scripts executed before datasync loop (CFT-2019-98454).&lt;/li&gt;
&lt;li&gt;Documents: Correction for opening linked files (hasn't worked since Efficy 11.0) (CFT-2019-97939).&lt;/li&gt;
&lt;li&gt;Edit: Don't write change history log (SYS&lt;em&gt;CHANGED) for P&lt;/em&gt; fields, e.g. P&lt;em&gt;OPENED, P&lt;/em&gt;D_USED.&lt;/li&gt;
&lt;li&gt;Edit: Show warning about read-only and lock in the page, not as pop-up alert (CFT-2019-97156).&lt;/li&gt;
&lt;li&gt;Edit: Fix timestamp format in CKEditor (CFT-2019-96914).&lt;/li&gt;
&lt;li&gt;Edit: Fix encoding issue in TTagGetMultiValueList (CFT-2019-96917).&lt;/li&gt;
&lt;li&gt;Edit: Perform beforeCommit and afterCommit calls even when posting data via Ajax (CFT-2019-97787).&lt;/li&gt;
&lt;li&gt;Efficy: Correct default names of SYS_SETTINGS values (remove trailing spaces).&lt;/li&gt;
&lt;li&gt;Efficy: Corrects registration of COM+ EfficyServer.dll in Setup Efficy 11.2.16578. (published previously as r16718).&lt;/li&gt;
&lt;li&gt;Efficy: Fix dropdown elements hiding behind the toolbar (CFT-2019-97968).&lt;/li&gt;
&lt;li&gt;Entity Picker - User recents: prevent items without key to be shown (CFT-2019-97240).&lt;/li&gt;
&lt;li&gt;Flexmail: Prevent deleting contact having the same email address in different email fields) (CFT-2019-97325).&lt;/li&gt;
&lt;li&gt;Flexmail: Filter unsupported XML characters in synchro requests (CFT-2019-98445).&lt;/li&gt;
&lt;li&gt;Replication: Add missing D_CHANGE field to various recent tables (CFT-2019-97851).&lt;/li&gt;
&lt;li&gt;Search: Avoid encoding the name twice when creating a new contact from Search (CFT-2019-98208).&lt;/li&gt;
&lt;li&gt;Sidebar: Fix efficy: protocol not working after Windows Update for IE. (published previously as r16945).&lt;/li&gt;
&lt;li&gt;Sidebar: Remove read-only attribute from files before putting them in the Recycle Bin.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We recommend that you install this build on all Efficy 11.2 installations.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4118/announcement-efficy-11-2-build-r17243-is-available</guid>
<pubDate>Thu, 18 Apr 2019 16:34:52 +0000</pubDate>
</item>
<item>
<title>Answered: Docx template with runScript (formated)</title>
<link>https://overflow.efficy.io/?qa=4062/docx-template-with-runscript-formated&amp;show=4067#a4067</link>
<description>&lt;p&gt;You should work with a detail table, it allows you to loop through the details that are available in your merge context. Since you are working with &lt;code&gt;DOCX&lt;/code&gt;, your merge context is the document handle.&lt;/p&gt;

&lt;p&gt;The typical details that are used in a template are Companies, Contacts and Products. Follow the instruction &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/user/e2012_templates_example_detailtable&quot;&gt;here&lt;/a&gt; on how to insert a product table. Make sure you have linked products on your document :-)&lt;/p&gt;

&lt;p&gt;But instead of the legacy &lt;code&gt;[$GetRtfTable('PROD')] [/$]&lt;/code&gt; use &lt;code&gt;[$GetTable('PROD')] [/$]&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Follow the guide very carefully and built up step by step. One space is enough to brake it.&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4062/docx-template-with-runscript-formated&amp;show=4067#a4067</guid>
<pubDate>Tue, 26 Mar 2019 15:22:44 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: New Sidebar packages for Efficy 11 and 10 to cope with recent changes in Internet Explorer</title>
<link>https://overflow.efficy.io/?qa=4047/announcement-sidebar-packages-changes-internet-explorer&amp;show=4048#a4048</link>
<description>&lt;p&gt;I'm looking forward to the day we will finally stop supporting IE.&lt;br&gt;
Then our next IE will be safari on IOS :-)&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4047/announcement-sidebar-packages-changes-internet-explorer&amp;show=4048#a4048</guid>
<pubDate>Wed, 20 Mar 2019 13:56:08 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: Efficy 11.2 build r16578 is available</title>
<link>https://overflow.efficy.io/?qa=3995/announcement-efficy-11-2-build-r16578-is-available&amp;show=4013#a4013</link>
<description>&lt;p&gt;We've released &lt;strong&gt;Efficy Build 11.2.16718&lt;/strong&gt; which corrects an issue in the 11.2.16578 Setup that sometimes prevented the correct registration of the EfficyServer COM+ DLL during installation.&lt;/p&gt;

&lt;p&gt;There are no other changes, if you've managed to install build 11.2.16578 there is no need to replace it with the corrected 16718.&lt;/p&gt;

&lt;p&gt;We apologize for the inconvenience.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3995/announcement-efficy-11-2-build-r16578-is-available&amp;show=4013#a4013</guid>
<pubDate>Fri, 08 Mar 2019 15:35:21 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.1 build r16590 is available</title>
<link>https://overflow.efficy.io/?qa=3996/announcement-efficy-11-1-build-r16590-is-available</link>
<description>&lt;p&gt;Efficy 11.1 r16590 is now available from the Efficy Partner FTP.&lt;/p&gt;

&lt;p&gt;This build includes the following corrections or improvements compared to r15674:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Agenda: Fix XSS issue on meeting hint (encode title for text)&lt;/li&gt;
&lt;li&gt;Documents: Fix pictures generated from PDFs with transparency or from multi-page PDFs (CFT-2019-95927).&lt;/li&gt;
&lt;li&gt;Edit: Revert usage of CreateRelation to situation before Efficy 11 (CFT-2019-94969).&lt;/li&gt;
&lt;li&gt;Excel Exports: cell texts are limited to 32767 characters; truncate field values to this limit (CFT-2019-95544).&lt;/li&gt;
&lt;li&gt;Excel Export: make sure also Consult-only users can export to Excel (CFT-2019-96337).&lt;/li&gt;
&lt;li&gt;Flexmail: Return flexmail account once for user with multiple groups (CFT-2019-96548).&lt;/li&gt;
&lt;li&gt;Google Maps: Fix links in Google Earth export (CFT-2019-96306).&lt;/li&gt;
&lt;li&gt;Sidebar: Use up to TLS v1.2 as HTTPS protocol for big files and certificate (CFT-2019-94936). (published previously as r15906).&lt;/li&gt;
&lt;li&gt;Sidebar: Verify the downloaded certificate files to ensure they contain a valid certificate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We recommend that you install this build on all Efficy 11.1 installations.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3996/announcement-efficy-11-1-build-r16590-is-available</guid>
<pubDate>Fri, 01 Mar 2019 10:03:02 +0000</pubDate>
</item>
<item>
<title>Answered: trouble with campaigns -&gt; actions -&gt; generate Documents</title>
<link>https://overflow.efficy.io/?qa=3878/trouble-with-campaigns-actions-generate-documents&amp;show=3971#a3971</link>
<description>&lt;p&gt;Yes this is a bug.&lt;br&gt;
Well spotted !&lt;br&gt;
It's fixed in the future version ;)&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3878/trouble-with-campaigns-actions-generate-documents&amp;show=3971#a3971</guid>
<pubDate>Thu, 21 Feb 2019 08:13:56 +0000</pubDate>
</item>
<item>
<title>Answered: Client replication for Efficy v10 sp2 doesn't run...</title>
<link>https://overflow.efficy.io/?qa=3933/client-replication-for-efficy-v10-sp2-doesnt-run&amp;show=3950#a3950</link>
<description>&lt;p&gt;This problem has been resolved with the help of Efficy support !&lt;/p&gt;

&lt;p&gt;2 things to know, and not documented:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;the Alias.ini must be duplicated in &lt;code&gt;C:\inetpub\wwwEfficy\&lt;/code&gt;, accross the &lt;strong&gt;replicy.dll&lt;/strong&gt; on the main server&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;you have to restart the IIS process after..&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3933/client-replication-for-efficy-v10-sp2-doesnt-run&amp;show=3950#a3950</guid>
<pubDate>Tue, 12 Feb 2019 13:55:37 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.2 is available</title>
<link>https://overflow.efficy.io/?qa=3916/announcement-efficy-11-2-is-available</link>
<description>&lt;p&gt;The new &lt;strong&gt;Efficy 11.2 release build 11.2.16235&lt;/strong&gt; is now available from the Efficy Partner FTP.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Major new features&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Gamification Module for creating and managing challenges and quizzes for teams. You all used it for the End of Year Challenge!&lt;/li&gt;
&lt;li&gt;New Gmail Add-on based on the latest Google APIs. We’re currently waiting for Google to approve the addon for their store.&lt;/li&gt;
&lt;li&gt;Mobile App 11.2 with POI (Points of Interest), list views and filtering, list of downloaded documents, improved performance.&lt;/li&gt;
&lt;li&gt;Nine new interface languages: IT, PT, RU, CS, SK, HU, EL, HR, RO.&lt;/li&gt;
&lt;li&gt;Remote APIs: new JSON, REST and Node APIs with API keys for authorization.&lt;/li&gt;
&lt;li&gt;Customer profiles for better management and securing access to the Efficy web server.&lt;/li&gt;
&lt;li&gt;New multi-staged JSON-based settings system to replace registry keys/SYS_STORAGE/ini file usage for Efficy and its Services.&lt;/li&gt;
&lt;li&gt;OAuth 2.0 single sign-on integration with Azure Active Directory.&lt;/li&gt;
&lt;li&gt;Translated field values: fields can contain different values for different languages (e.g. a company can be called “Red Cross”, “Croix Rouge”, “Rode Kruis”).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Besides these major features there is a long list of useful goodies, including a more user-friendly interface for recurrent meetings, adding files to Documents by drag and drop from Windows Explorer, a new picture field type for registering signatures, the macOS Sidebar supporting large files, ….&lt;/p&gt;

&lt;p&gt;You’ll find the complete list of changes in the “Efficy 11 Build History” document on the FTP server, including another 60 “minor improvements and corrections” and about 50 “improvements based on user suggestions”.&lt;/p&gt;

&lt;p&gt;You can consult the online documentation, with the new “&lt;strong&gt;CRM Features&lt;/strong&gt;” manual containing the build notes: &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/edn/dev/crft_welcome&quot;&gt;https://help.efficy.com/edn/dev/crft_welcome&lt;/a&gt; and the expanded &quot;&lt;strong&gt;API&lt;/strong&gt;&quot; section of the online manual at &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/edn/api&quot;&gt;https://help.efficy.com/edn/api&lt;/a&gt; .&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3916/announcement-efficy-11-2-is-available</guid>
<pubDate>Wed, 06 Feb 2019 18:10:51 +0000</pubDate>
</item>
<item>
<title>Answered: request API Soap for lookup</title>
<link>https://overflow.efficy.io/?qa=3805/request-api-soap-for-lookup&amp;show=3812#a3812</link>
<description>&lt;p&gt;A common mistake is that the ID of the lookuptable and fieldname of the lookup are passed (as you did), instead of giving the ID of the entity table (what Efficy expects). To explain it better, I made a working sample.&lt;/p&gt;

&lt;p&gt;Here we show the content of LK_COUNTRY by providing &lt;code&gt;K_TABLE=1000&lt;/code&gt; (COMPANIES) and the &lt;code&gt;FIELDNAME=COUNTRY&lt;/code&gt; as parameters of the &lt;code&gt;getlookupdata&lt;/code&gt; operation.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope&quot; xmlns:efficy=&quot;http://www.efficy.com&quot;&amp;gt;
   &amp;lt;SOAP-ENV:Body&amp;gt;
      &amp;lt;efficy:api&amp;gt;
         &amp;lt;datacontainer operation=&quot;getlookupdata&quot; tableid=&quot;10000&quot; fieldname=&quot;COUNTRY&quot;/&amp;gt;
      &amp;lt;/efficy:api&amp;gt;
   &amp;lt;/SOAP-ENV:Body&amp;gt;
&amp;lt;/SOAP-ENV:Envelope&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This will return all country labels. However, the result is quite useless, as you don't even get the &lt;code&gt;K_COUNTRY&lt;/code&gt; key back. You just get the translated text label.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;efficy:api handled=&quot;true&quot;&amp;gt;
    &amp;lt;datacontainer operation=&quot;getlookupdata&quot; tableid=&quot;10000&quot; fieldname=&quot;COUNTRY&quot; handled=&quot;true&quot;&amp;gt;
        &amp;lt;document class=&quot;StringList&quot;&amp;gt;
            &amp;lt;rows&amp;gt;
                &amp;lt;row&amp;gt;BELGIUM&amp;lt;/row&amp;gt;
                &amp;lt;row&amp;gt;FRANCE&amp;lt;/row&amp;gt;
                ...
                &amp;lt;row&amp;gt;ZIMBABWE&amp;lt;/row&amp;gt;
            &amp;lt;/rows&amp;gt;
        &amp;lt;/document&amp;gt;
    &amp;lt;/datacontainer&amp;gt;
&amp;lt;/efficy:api&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;There is no better API method, AFAIC.&lt;/p&gt;

&lt;p&gt;As an alternative, add an SQL query in either &lt;code&gt;SYS_QUERIES&lt;/code&gt; or &lt;code&gt;QUERIES&lt;/code&gt; to fetch the content of your lookup. Execute the query SOAP operation to get the result of that query.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3805/request-api-soap-for-lookup&amp;show=3812#a3812</guid>
<pubDate>Thu, 03 Jan 2019 16:03:56 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: Efficy 11.1 build r15674 is available</title>
<link>https://overflow.efficy.io/?qa=3762/announcement-efficy-11-1-build-r15674-is-available&amp;show=3765#a3765</link>
<description>&lt;p&gt;I can't find the GetFileStream method in &lt;a rel=&quot;nofollow&quot; href=&quot;https://help.efficy.com/edn/serverjs&quot;&gt;serverjs&lt;/a&gt;.&lt;br&gt;
What does it do?&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3762/announcement-efficy-11-1-build-r15674-is-available&amp;show=3765#a3765</guid>
<pubDate>Mon, 17 Dec 2018 19:34:04 +0000</pubDate>
</item>
<item>
<title>Answered: Efficy 11 - All Builds - Using GoogleMap + Query - Error window.Map is not a constructor</title>
<link>https://overflow.efficy.io/?qa=3755/efficy-builds-using-googlemap-query-error-window-constructor&amp;show=3756#a3756</link>
<description>&lt;p&gt;The error is due to google API using the same window.Map variable than Efficy in the MapGrid.htm page.&lt;/p&gt;

&lt;p&gt;To solve this, you have to rename the variable Map in the pages/dialog/MapGrid.htm into OurMap.&lt;/p&gt;

&lt;p&gt;/Stéphane&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3755/efficy-builds-using-googlemap-query-error-window-constructor&amp;show=3756#a3756</guid>
<pubDate>Fri, 14 Dec 2018 18:14:18 +0000</pubDate>
</item>
<item>
<title>Answered: Trouble ceating a relation between Cont and new entity</title>
<link>https://overflow.efficy.io/?qa=3743/trouble-ceating-a-relation-between-cont-and-new-entity&amp;show=3744#a3744</link>
<description>&lt;p&gt;In the user interface, you are in the edit of your &lt;code&gt;Trai&lt;/code&gt; entity because you insert a detail using &quot;Add link to contact&quot;.&lt;/p&gt;

&lt;p&gt;In the serverscript, you are trying the opposite. Editing the contact and inserting &lt;code&gt;Trai&lt;/code&gt; as a detail.&lt;/p&gt;

&lt;p&gt;Code like you are working interface. This is a golden tip for every scripting in Efficy, btw&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the edit context of &lt;code&gt;Trai&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Insert a &lt;code&gt;Cont&lt;/code&gt; detail&lt;/li&gt;
&lt;li&gt;Commit and close context&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Regards,&lt;br&gt;
Kristof&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3743/trouble-ceating-a-relation-between-cont-and-new-entity&amp;show=3744#a3744</guid>
<pubDate>Wed, 12 Dec 2018 10:51:52 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: Efficy 11.1 r14832 with Flexmail Integration v2 is available</title>
<link>https://overflow.efficy.io/?qa=3599/announcement-efficy-r14832-flexmail-integration-available&amp;show=3717#a3717</link>
<description>&lt;p&gt;Dear Robert,&lt;/p&gt;

&lt;p&gt;For a customer, I am using the Efficy 11.1 R14832 and I encountered the issue that the serverside function &quot;EscapeHtml&quot; doesn't exist anymore.&lt;/p&gt;

&lt;p&gt;So I tried the new function : extractHtmlText(html, maxLength) ... but without success.&lt;/p&gt;

&lt;p&gt;Is there something I am missing ?&lt;/p&gt;

&lt;p&gt;PS: the efficy.dll version is 11.1.15443.0&lt;/p&gt;

&lt;p&gt;/Stéphane&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3599/announcement-efficy-r14832-flexmail-integration-available&amp;show=3717#a3717</guid>
<pubDate>Thu, 06 Dec 2018 18:05:27 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11.0 r14853 with Flexmail Integration v2 is available</title>
<link>https://overflow.efficy.io/?qa=3604/announcement-efficy-r14853-flexmail-integration-available</link>
<description>&lt;p&gt;&lt;strong&gt;Efficy 11.0 r14853&lt;/strong&gt; is now available from the Efficy Partner FTP.&lt;/p&gt;

&lt;p&gt;The main feature of this release is the new Flexmail integration v2. You'll find detailed information in the document &quot;Flexmail GDPR Integration Manual.pdf&quot;.&lt;/p&gt;

&lt;p&gt;The build also includes the following important security-related improvement:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chronos: Respect security on Categories (CFT-2018-91964).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even while making this build available, &lt;strong&gt;we strongly recommend upgrading to Efficy 11.1&lt;/strong&gt; which contains a significant number of fixes and improvements. Upgrading from Efficy 11.0 to Efficy 11.1 should be a painless procedure requiring little to no work.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3604/announcement-efficy-r14853-flexmail-integration-available</guid>
<pubDate>Thu, 18 Oct 2018 12:21:53 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 10 SP2+ r14841 and Efficy 10 SP1 r14843 with Flexmail Integration v2 are available</title>
<link>https://overflow.efficy.io/?qa=3600/announcement-efficy-r14841-flexmail-integration-available</link>
<description>&lt;p&gt;We've released the following Efficy 10 builds that include the new Flexmail integration v2:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Setup Efficy 10 SP2 Plus r14841&lt;/li&gt;
&lt;li&gt;Setup Efficy 10 SP1 r14843&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You'll find detailed information about the Flexmail integration in the document &quot;Flexmail GDPR Integration Manual.pdf&quot;.&lt;/p&gt;

&lt;p&gt;The Efficy 10 SP2 Plus r14841 build also includes the following important security-related improvement:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chronos: Respect security on Categories (CFT-2018-91964).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3600/announcement-efficy-r14841-flexmail-integration-available</guid>
<pubDate>Wed, 17 Oct 2018 13:46:43 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 10 SP2+ new Sidebar for for use with Firefox (r14440)</title>
<link>https://overflow.efficy.io/?qa=3553/announcement-efficy-sp2-new-sidebar-for-with-firefox-r14440</link>
<description>&lt;p&gt;There is a new &quot;Setup Efficy Sidebar and Add-ins 10SP2 Plus r14440&quot; msi package available on the Partner FTP which addresses a Firefox-related certificate issue in the Sidebar.&lt;/p&gt;

&lt;p&gt;Since Firefox 59+ for new installations there was no installation of the Root CA certificate because of a format change in the certificate DB of Firefox. Without certificate Firefox would not communicate correctly with the local web server running in the Sidebar.&lt;/p&gt;

&lt;p&gt;The new Setup takes into account this change of format. If your customers don't use Firefox, the new Setup won't change anything.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3553/announcement-efficy-sp2-new-sidebar-for-with-firefox-r14440</guid>
<pubDate>Tue, 18 Sep 2018 09:04:38 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: Efficy 11.1 (r14250) is available</title>
<link>https://overflow.efficy.io/?qa=3494/announcement-efficy-11-1-r14250-is-available&amp;show=3524#a3524</link>
<description>&lt;p&gt;Two improvements for administrators have been introduced in the COM+ EfficyServer of the latest Efficy 11.1 build r14457:&lt;br&gt;
- Increased time-out for Chronos requests from 20 sec to 600 sec.&lt;br&gt;
- Allow connection to 11.0 databases by ignoring the exception for a missing TMailThreadTableView object.&lt;/p&gt;

&lt;p&gt;As always, this new Efficy 11.1 build r14457 is available on the Partner FTP site.&lt;/p&gt;

&lt;p&gt;All the best,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3494/announcement-efficy-11-1-r14250-is-available&amp;show=3524#a3524</guid>
<pubDate>Tue, 11 Sep 2018 11:10:27 +0000</pubDate>
</item>
<item>
<title>SCSS dashboard bg color</title>
<link>https://overflow.efficy.io/?qa=3498/scss-dashboard-bg-color</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I try to change the scss and I got a problem with the variable $dashboard-item-bg-color.&lt;br&gt;
I copy the sample scss folder inside my custom and change the path in watch&lt;em&gt;run&lt;/em&gt;as_admin file&lt;br&gt;
I change some color and it work but I would like to change the color of dashbord variable and I uncomment the line 1578 of _custom-settings.scss and this doesn't work. So do I have to change or add something else like the file _dashdbord.scss in the scss folder of efficy??&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3498/scss-dashboard-bg-color</guid>
<pubDate>Mon, 03 Sep 2018 12:04:31 +0000</pubDate>
</item>
<item>
<title>Answered: Tool to convert security values to explaination and vice versa</title>
<link>https://overflow.efficy.io/?qa=3468/tool-to-convert-security-values-explaination-and-vice-versa&amp;show=3471#a3471</link>
<description>&lt;p&gt;Regarding rights and permissions, it's better to avoid working with record permissions because it's static. Table rights can be tweaked far more easier. Don't forget they are more restrictive compared to group permissions. &lt;/p&gt;

&lt;p&gt;I typically put Full Control (271) permission for all groups that have security on a record and reduce rights through Table Rights in Designer.&lt;br&gt;
I avoid using user permissions, by not configuring record owner security in the default security tab.&lt;/p&gt;

&lt;p&gt;Anyway, it looks cool!&lt;/p&gt;

&lt;p&gt;Once I made a &lt;a rel=&quot;nofollow&quot; href=&quot;https://jsfiddle.net/Pauwris/w3y8x7mv/2/&quot;&gt;jsFiddle&lt;/a&gt; to do the opposite, knowing what powers of two are inside a number &lt;a rel=&quot;nofollow&quot; href=&quot;https://overflow.efficy.com/?qa=1865/what-is-the-meaning-the-271-value-inside-the-security-column&amp;amp;show=1865#q1865&quot;&gt;Old post&lt;/a&gt;&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3468/tool-to-convert-security-values-explaination-and-vice-versa&amp;show=3471#a3471</guid>
<pubDate>Tue, 14 Aug 2018 10:32:48 +0000</pubDate>
</item>
<item>
<title>Answered: How to update the contact profile picture using soap?</title>
<link>https://overflow.efficy.io/?qa=2515/how-to-update-the-contact-profile-picture-using-soap&amp;show=3436#a3436</link>
<description>&lt;p&gt;This should definitely be possible with the SOAP interface, using data_type=&quot;binary&quot; and encodingkind=&quot;mime64&quot; as in the following example:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;update&amp;gt;&amp;lt;PICTURE data_type=&quot;binary&quot; encodingkind=&quot;mime64&quot;&amp;gt;.... put your base64-encoded image data here ...&amp;lt;/PICTURE&amp;gt;&amp;lt;/update&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I haven't tested it, but you get the picture ;).&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2515/how-to-update-the-contact-profile-picture-using-soap&amp;show=3436#a3436</guid>
<pubDate>Thu, 02 Aug 2018 10:02:34 +0000</pubDate>
</item>
<item>
<title>Answered: Origin of some filters in sys_queries</title>
<link>https://overflow.efficy.io/?qa=3410/origin-of-some-filters-in-sysqueries&amp;show=3414#a3414</link>
<description>&lt;p&gt;These extra filters are the &quot;Security Clause&quot;, you can add them to the query with a &amp;lt;#securityclause&amp;gt; tag. The documentation for these tags that can be used in queries will soon be put online (it comes with the Efficy 11.1 release).&lt;/p&gt;

&lt;p&gt;The Security Clause checks whether you're allowed to see the record; it tests the user relations (which also contain the security information) to see whether you're member of group that has access to the record.&lt;/p&gt;

&lt;p&gt;The initial (1 &amp;lt;&amp;gt; 0) or (0 &amp;lt;&amp;gt; 0) is the test on the user privilege &quot;User has all access&quot;.&lt;br&gt;
For normal users it's (0 &amp;lt;&amp;gt; 0), which evaluates to false.&lt;br&gt;
For &quot;Has All Access&quot; users it's (1 &amp;lt;&amp;gt; 0), which evaluates to true. This means that the rest of the line will be discarded, there is effectively no security for this kind of user.&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3410/origin-of-some-filters-in-sysqueries&amp;show=3414#a3414</guid>
<pubDate>Tue, 24 Jul 2018 11:51:19 +0000</pubDate>
</item>
<item>
<title>Answered: Error on editing cont_comp relation</title>
<link>https://overflow.efficy.io/?qa=3365/error-on-editing-contcomp-relation&amp;show=3402#a3402</link>
<description>&lt;p&gt;This requires correction in the efficy web server code. The &amp;lt;%GetField()%&amp;gt; doesn't use the correct dataset in case of editing a relation within the edit context of a main entity.&lt;/p&gt;

&lt;p&gt;We've registered this issue as CFT-2018-89986, correction will be published soon in Efficy 11.1.&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3365/error-on-editing-contcomp-relation&amp;show=3402#a3402</guid>
<pubDate>Tue, 17 Jul 2018 11:29:40 +0000</pubDate>
</item>
<item>
<title>Answered: avoid relation cont-comp modification</title>
<link>https://overflow.efficy.io/?qa=3386/avoid-relation-cont-comp-modification&amp;show=3391#a3391</link>
<description>&lt;p&gt;Hello.&lt;/p&gt;

&lt;p&gt;In the commit of the contact, you can check if the detail &lt;code&gt;Comp&lt;/code&gt; has changed and if the user does not has permissions. If not, throw an exception.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function BeforeCommitCont(editCont, inserted) {
    if (Efficy.detailModified(editCont, ntComp) &amp;amp;&amp;amp; !Efficy.isCurrentUserInGroup(Efficy.getUserId(&quot;EFF_ADMINS&quot;)) {
        throw Error(&quot;You are not allowed to modify the company relation!&quot;);
    }
}
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3386/avoid-relation-cont-comp-modification&amp;show=3391#a3391</guid>
<pubDate>Mon, 16 Jul 2018 05:29:03 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11 build r12921 available</title>
<link>https://overflow.efficy.io/?qa=3177/announcement-efficy-11-build-r12921-available</link>
<description>&lt;p&gt;The corrective build r12921 (May 22, 2018) for Efficy 11 is now available on the Partner FTP.&lt;/p&gt;

&lt;p&gt;A bit faster than expected we release a new build to provide backward compatibility with the existing notifications in the database which we broke in the build r12835. The problem was by all means temporary (new notifications always appear correctly), but we deemed it useful to provide this correction.&lt;/p&gt;

&lt;p&gt;The build also improves the following issues that were present in the previous builds:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Easy Import Wizard: Pass correct date and floating point to search query (CFT-2018-86868).&lt;/li&gt;
&lt;li&gt;Sidebar: Solve issue with pending protocol actions (CFT-2018-87555).&lt;/li&gt;
&lt;li&gt;Mass update: An unlimited number of records can now be updated (CFT-2018-86946, CFT-2015-62936).&lt;/li&gt;
&lt;li&gt;Guest pages: Add Stack Trace to Guest_Error.log file (CFT-2018-87225).&lt;/li&gt;
&lt;li&gt;Convert to Opportunity now copies the SUBJECT or NAME of the original Action/Mail/Document to the opportunity (CFT-2017-82786).&lt;/li&gt;
&lt;li&gt;Notifications: provide backward compatibility for legacy MIME64 encoding of notification data (issue introduced in build r12835).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Please make sure to install and use this latest build – it definitively replaces the previous build (r12835).&lt;/p&gt;

&lt;p&gt;We apologize for the inconvenience,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3177/announcement-efficy-11-build-r12921-available</guid>
<pubDate>Wed, 23 May 2018 15:00:31 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: Efficy 11 build r12835 available</title>
<link>https://overflow.efficy.io/?qa=3161/announcement-efficy-11-build-r12835-available&amp;show=3165#a3165</link>
<description>&lt;p&gt;There appears to be a problem with backward compatibility of the Notifications in build r12835 related to MIME64 encoding. Old notifications can produce the error &quot;No mapping for the Unicode character exists in the target multi-byte code page&quot;.&lt;/p&gt;

&lt;p&gt;We'll issue a correction ASAP.&lt;/p&gt;

&lt;p&gt;We apologize for the inconvenience,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3161/announcement-efficy-11-build-r12835-available&amp;show=3165#a3165</guid>
<pubDate>Tue, 22 May 2018 13:56:11 +0000</pubDate>
</item>
<item>
<title>Answered: Join custom view in sys_queries</title>
<link>https://overflow.efficy.io/?qa=3141/join-custom-view-in-sysqueries&amp;show=3142#a3142</link>
<description>&lt;p&gt;It will be easier to work with a custom SQL function compared to a custom view. Efficy supports binding a field to a custom database function. This technique is also used for the standard fields USERS.&lt;/p&gt;

&lt;p&gt;The parameter of your SQL Function should be the &lt;code&gt;K_ACTION&lt;/code&gt;. The function can return a number or text value.&lt;/p&gt;

&lt;p&gt;Joining with a custom view will require quite some extensions to the dictionary tables. You don't want to go that far...&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3141/join-custom-view-in-sysqueries&amp;show=3142#a3142</guid>
<pubDate>Mon, 14 May 2018 10:26:01 +0000</pubDate>
</item>
<item>
<title>Announcement: UpgradeDB (r12605) for migrating from old databases (2012) to Efficy 11</title>
<link>https://overflow.efficy.io/?qa=3098/announcement-upgradedb-r12605-migrating-databases-efficy</link>
<description>&lt;p&gt;A new UpgradeDB.exe is available (r12605) that will allow upgrades from old Efficy databases (2012) without needing an intermediate upgrade to an Efficy 10 structure.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3098/announcement-upgradedb-r12605-migrating-databases-efficy</guid>
<pubDate>Thu, 26 Apr 2018 10:55:49 +0000</pubDate>
</item>
<item>
<title>Announcement: Efficy 11 build r12548 available</title>
<link>https://overflow.efficy.io/?qa=3080/announcement-efficy-11-build-r12548-available</link>
<description>&lt;p&gt;The final build (r12548) for Efficy 11 is now available on the Partner FTP.&lt;br&gt;
The build comes with an updated “Build Notes.docx” document and a small “Build History.txt” note that tracks the changes of the Efficy 11 public release builds.&lt;br&gt;
Please &lt;strong&gt;make sure to install and use this latest build&lt;/strong&gt; – it definitively replaces the previous builds (r12280 and r12385).&lt;/p&gt;

&lt;p&gt;The build improves or corrects a number of issues that were present in the previous builds, including the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User entity picker: correct potential double in recent list (CFT-2018-86678).&lt;/li&gt;
&lt;li&gt;User entity picker now includes a direct search for a user.&lt;/li&gt;
&lt;li&gt;Correct encoding of grid filter in some URLs (CFT-2018-86739).&lt;/li&gt;
&lt;li&gt;Flexmail connector improvements.&lt;/li&gt;
&lt;li&gt;Designer: correct editing Resources.&lt;/li&gt;
&lt;li&gt;Data Synchro: new events &quot;EfficyStartJob&quot; and &quot;EfficyEndJob&quot;.&lt;/li&gt;
&lt;li&gt;Data Synchro: script editor auto-complete window no longer activates the main window.&lt;/li&gt;
&lt;li&gt;Extranet file download: use &quot;/public&quot; instead of &quot;/crm&quot; when filebase is extranet (CFT-2018-86720).&lt;/li&gt;
&lt;li&gt;File Loader: ensure that a local filename can never contain illegal characters.&lt;/li&gt;
&lt;li&gt;Close edit window: add missing initialization of IsIntentionalReload when loading the edit page.&lt;/li&gt;
&lt;li&gt;ServerJS modular import: add standard module &quot;ecma&quot; with ES5.1 polyfills and the module &quot;extend&quot;, with samples.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In parallel the release Efficy 11 Mobile App has finally arrived in the two stores:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Apple App Store: &lt;a rel=&quot;nofollow&quot; href=&quot;https://itunes.apple.com/us/app/efficy/id1338780357?platform=iphone&amp;amp;preserveScrollPosition=true#platform/iphone&quot;&gt;https://itunes.apple.com/us/app/efficy/id1338780357?platform=iphone&amp;amp;preserveScrollPosition=true#platform/iphone&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Google Play Store: &lt;a rel=&quot;nofollow&quot; href=&quot;https://play.google.com/store/apps/details?id=com.efficy.android.crm&amp;amp;ah=rZgGX8inI3CoP9dtyd9cTX8k2LE&quot;&gt;https://play.google.com/store/apps/details?id=com.efficy.android.crm&amp;amp;ah=rZgGX8inI3CoP9dtyd9cTX8k2LE&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Also the Help web site will be available soon on the help.efficy.com address; the technical issues with including the older manuals have now been solved.&lt;/p&gt;

&lt;p&gt;We hope you'll enjoy the new build!&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Robert&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3080/announcement-efficy-11-build-r12548-available</guid>
<pubDate>Mon, 16 Apr 2018 11:37:01 +0000</pubDate>
</item>
<item>
<title>Answered: Announcement: Efficy 11 build r12385 available</title>
<link>https://overflow.efficy.io/?qa=3013/announcement-efficy-11-build-r12385-available&amp;show=3014#a3014</link>
<description>&lt;p&gt;OMG, finally &lt;em&gt;&quot;Closing a window with the &quot;X&quot; button will close edit context&quot;&lt;/em&gt;&lt;br&gt;
I know some customers that will like this.&lt;/p&gt;

&lt;p&gt;Ps. I had to translate the word &quot;spurious&quot; :-)&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3013/announcement-efficy-11-build-r12385-available&amp;show=3014#a3014</guid>
<pubDate>Fri, 30 Mar 2018 09:29:18 +0000</pubDate>
</item>
<item>
<title>Answered: Explain Session Timout handling</title>
<link>https://overflow.efficy.io/?qa=2933/explain-session-timout-handling&amp;show=2935#a2935</link>
<description>&lt;p&gt;The reply from Geoffrey assumes that your users gets an &quot;Session expired&quot; error messages, but  because you are referring to a &quot;blocked session&quot; there is something else going on.&lt;/p&gt;

&lt;p&gt;Efficy provides a single thread of requests for one user session, following the FIFO principle. The clients cookie contains the session token and this will link each request with the session. &lt;/p&gt;

&lt;p&gt;Assume you execute a long running request, e.g. a full search, loading a long list, executing a complex query your session will be blocked for any subsequent request as long as this request is not finished server side. So even you close the browser, this will not cancel the the server side running request at all.&lt;/p&gt;

&lt;p&gt;The the browser is reopened and a request to the logon page is done, the existing cookie will be send along and Efficy will put your request again on the same session queue. You will typically get a white screen and a blocked browser because no response is returned.&lt;/p&gt;

&lt;p&gt;There are two ways to &quot;solve&quot; this issue and that is either close the session server side (using the admin console) or clear the Efficy session cookie in the browser to connect again anonymous and have a new session token.&lt;/p&gt;

&lt;p&gt;This actually doesn't solve the real issue. You have to figure out what request is taking up to much time...&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2933/explain-session-timout-handling&amp;show=2935#a2935</guid>
<pubDate>Thu, 15 Feb 2018 13:03:36 +0000</pubDate>
</item>
<item>
<title>Answered: retrieve text argument from url</title>
<link>https://overflow.efficy.io/?qa=2856/retrieve-text-argument-from-url&amp;show=2857#a2857</link>
<description>&lt;p&gt;Hi there.&lt;/p&gt;

&lt;p&gt;I'm sure there is a Javascript error on your page when you pass a string to chartType.&lt;/p&gt;

&lt;p&gt;Note that getArgument will always return a string but because you use it inside Javascript, you will need to quote it properly. Because you omitted quotes, Javascript will only be valid if the returned argument is a number.&lt;/p&gt;

&lt;p&gt;What you should do is place the getArgument macro inside your string. Remember that Efficy evaluates the page before the Javascript syntax is parsed by the browser and executed&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;alert(' arg : &amp;lt;%GetArgument(&quot;chartType&quot;, type=&quot;JSATTRIBUTE&quot;)%&amp;gt;')
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The type JSATTRIBUTE will properly escape single and double quotes, if they would be part of your input. But in your case, you can even drop the type definition. &lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2856/retrieve-text-argument-from-url&amp;show=2857#a2857</guid>
<pubDate>Tue, 26 Dec 2017 18:19:27 +0000</pubDate>
</item>
<item>
<title>Answered: display external web page in widget</title>
<link>https://overflow.efficy.io/?qa=2827/display-external-web-page-in-widget&amp;show=2831#a2831</link>
<description>&lt;p&gt;If the external domain is not yours, there is not much you can do to overcome this security limitation of the browser. It was designed to work like this.&lt;/p&gt;

&lt;p&gt;As explained on MDN &lt;a rel=&quot;nofollow&quot; href=&quot;https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options&quot;&gt;X-Frame-Options&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The X-Frame-Options HTTP response header can be used to indicate whether &lt;br&gt;
or not a browser should be allowed to render a page in a &lt;code&gt;&amp;lt;frame&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;iframe&amp;gt;&lt;/code&gt; or &lt;code&gt;&amp;lt;object&amp;gt;&lt;/code&gt; . &lt;br&gt;
Sites can use this to avoid clickjacking attacks, by ensuring that their content is &lt;br&gt;
not embedded into other sites.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The added security is only provided if the user accessing the document is &lt;br&gt;
using a browser supporting X-Frame-Options.&lt;/em&gt;&lt;/p&gt;
</description>
<category>Efficy Partners</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2827/display-external-web-page-in-widget&amp;show=2831#a2831</guid>
<pubDate>Tue, 12 Dec 2017 16:57:12 +0000</pubDate>
</item>
</channel>
</rss>