<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged format</title>
<link>https://overflow.efficy.io/?qa=tag/format</link>
<description>Powered by Question2Answer</description>
<item>
<title>New font for formatted memo?</title>
<link>https://overflow.efficy.io/?qa=5607/new-font-for-formatted-memo</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Is it possible to add a font to the list of fonts when editing a formatted memo (in the task module for example)?&lt;/p&gt;

&lt;p&gt;And, in addition, make this the default font?&lt;/p&gt;

&lt;p&gt;Environment is 11.3.&lt;/p&gt;

&lt;p&gt;UPDATE: I found that this modification can be made in the ckeditor.config.js file, but i'm not sure how we can override this in custom.&lt;/p&gt;

&lt;p&gt;Thank you,&lt;/p&gt;

&lt;p&gt;Ken&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5607/new-font-for-formatted-memo</guid>
<pubDate>Tue, 29 Sep 2020 09:20:47 +0000</pubDate>
</item>
<item>
<title>ODBC Questionmarks on import</title>
<link>https://overflow.efficy.io/?qa=4890/odbc-questionmarks-on-import</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;We're trying this with an 11.2 customer: &lt;a rel=&quot;nofollow&quot; href=&quot;https://overflow.efficy.com/?qa=4077/add-chinese-characters-with-datasynchro-odbc-limitation&quot;&gt;Chinese characters in odbc datasynchro&lt;/a&gt; There is still text being replaced by question marks (?). Propably because of some Eastern European letters. Is there a way to get these right? We tried OEM, ANSI and 65001 as characterset in the schema.ini but to no avail.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Rob&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4890/odbc-questionmarks-on-import</guid>
<pubDate>Thu, 10 Oct 2019 14:45:28 +0000</pubDate>
</item>
<item>
<title>Datasynchro cuts string after 510 characters</title>
<link>https://overflow.efficy.io/?qa=4128/datasynchro-cuts-string-after-510-characters</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I'm having an issue with importing a text into the memo field for the company module.&lt;br&gt;
I've successfully imported a list of contacts but importing another file containing company data poses a problem.&lt;/p&gt;

&lt;p&gt;The string in the excel file destined for the memo field is cut after 510 characters. I have tried changing the format to text, general, ... Also tried using datasynchro 32-bit and 64-bit, saving as xls and xlsx, ... Unfortunately nothing works.&lt;/p&gt;

&lt;p&gt;I can't find why the string is cut off. Does anyone have experience with this?&lt;br&gt;
Normally, i try to use the csv format but as the memo contains new lines i didn't think it was useful.&lt;/p&gt;

&lt;p&gt;Thanks in advance.&lt;/p&gt;
</description>
<category>Utilities</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4128/datasynchro-cuts-string-after-510-characters</guid>
<pubDate>Mon, 22 Apr 2019 15:55:59 +0000</pubDate>
</item>
<item>
<title>Add Chinese characters with Datasynchro (ODBC limitation)</title>
<link>https://overflow.efficy.io/?qa=4077/add-chinese-characters-with-datasynchro-odbc-limitation</link>
<description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;After some discussion we used the following to make the Chinese characters works with an ODBC driver during a Datasynchro.&lt;/p&gt;

&lt;p&gt;First I had to transform the Chinese characters in HTML entities with a small Power Shell Script (.ps1).&lt;br&gt;
custom: It takes the name of the folder without .csv and with a trailing TBE (to be encoded)&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Add-Type -AssemblyName System.Web
## Import each line of the CSV file into an array of PowerShell objects
$file = $args[0]
$output = $file.Substring(0,$file.Length-3)
$records = Import-Csv -Path &quot;$file.csv&quot; -Delimiter &quot;;&quot;

## Encode each field in html entities
$records | ForEach-Object {
    foreach ($field in $_.PSObject.Properties.Name)
    {
        ##$_.$field = [System.Web.HttpUtility]::UrlDecode($_.$field)
$_.$field = [uri]::EscapeUriString($_.$field)
    }
}

## Export the array of modified objects to the CSV file
$records | Export-Csv -Path &quot;$output.csv&quot; -Force -notype -Delimiter &quot;;&quot;

## Display the object in tabular form
$records | Format-Table -AutoSize
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Then decode it during the Import script with following function &lt;br&gt;
&quot; decodeURIComponent() &quot;. &lt;br&gt;
For the newer version of the datasynchro (&amp;gt;10sp2)  the fields can be decoded directly in the start job. &lt;/p&gt;

&lt;p&gt;And it worked !&lt;/p&gt;

&lt;p&gt;Thanks to Alexandre and Kristof.&lt;/p&gt;
</description>
<category>Utilities</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4077/add-chinese-characters-with-datasynchro-odbc-limitation</guid>
<pubDate>Tue, 02 Apr 2019 10:42:23 +0000</pubDate>
</item>
<item>
<title>Date format from datepicker when running a query not correct</title>
<link>https://overflow.efficy.io/?qa=3986/date-format-from-datepicker-when-running-query-not-correct</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;A client with efficy 11.0.15626 is having a problem with their queries.&lt;/p&gt;

&lt;p&gt;When launching a query the user must define a date as parameter. The datepicker formats the date with &quot;-&quot; as seperator but if this is used efficy returns an error. This should be &quot;/&quot;.&lt;/p&gt;

&lt;p&gt;(Bad Date Format in Query Parameter: '02-01-2019' is not a valid floating point value)&lt;/p&gt;

&lt;p&gt;The date seperator hasn't been overridden is custom.js&lt;/p&gt;

&lt;p&gt;What can be done about this? Any other settings?&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3986/date-format-from-datepicker-when-running-query-not-correct</guid>
<pubDate>Mon, 25 Feb 2019 17:27:31 +0000</pubDate>
</item>
<item>
<title>DataSynchro and Date Format.</title>
<link>https://overflow.efficy.io/?qa=3757/datasynchro-and-date-format</link>
<description>&lt;p&gt;Hi All,&lt;/p&gt;

&lt;p&gt;I would like to know which date format is used by DataSynchro/DataSynchroEmbedded.&lt;br&gt;
- Efficy Admin Console Date Format&lt;br&gt;
- Windows Date Format&lt;/p&gt;

&lt;p&gt;I've made a few test and it seems that we need to use the windows date format but, why ?&lt;br&gt;
is that true ?&lt;/p&gt;

&lt;p&gt;If yes it seems that we need to know the windows server config, and we also need to use different code for using in datasynchro and in serverscript.&lt;/p&gt;

&lt;p&gt;Can you confirm ?&lt;/p&gt;

&lt;p&gt;(i'm on an Efficy 2014 6100)&lt;/p&gt;

&lt;p&gt;Regards,&lt;/p&gt;
</description>
<category>Utilities</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=3757/datasynchro-and-date-format</guid>
<pubDate>Mon, 17 Dec 2018 08:47:46 +0000</pubDate>
</item>
<item>
<title>Change the date format saved to sys_changed</title>
<link>https://overflow.efficy.io/?qa=2906/change-the-date-format-saved-to-syschanged</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Is it possible to change somewhere in Efficy to make the dates fields to be save always like this &quot;26 January 2018&quot;? my client has 2 servers and each with different date format (one EU format DD/MM/YYYY and another with US Format MM/DD/YYYY) and in history and chronos tab the dates are always displayed with EU Format. so is it possible to change how the dates are save and keep them as suggested?&lt;/p&gt;

&lt;p&gt;Thank you for the advice and help in advance.&lt;/p&gt;

&lt;p&gt;Best Regards.&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2906/change-the-date-format-saved-to-syschanged</guid>
<pubDate>Fri, 26 Jan 2018 09:53:22 +0000</pubDate>
</item>
<item>
<title>US Date format is not applied in IE</title>
<link>https://overflow.efficy.io/?qa=2900/us-date-format-is-not-applied-in-ie</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;A client has US date format &quot;MM/DD/YYYY&quot; set to be used in Efficy. it's working perftectly on Firefox and Chrome (if user add timestamp to memo the dates is formatted well), bu on IE it's showing DD/MM/YYYY. The regional settings on the user's PC is european format (DD/MM/YYYY), so i believe that IE is reading the regional settings on PC and apply in Efficy, it doesn't consider the configuration set in admin console, is that correct? and is there a way to make IE apply the formatting set in admin console and not use the regional settings?&lt;/p&gt;

&lt;p&gt;Thank you in advance for help and advises.&lt;/p&gt;

&lt;p&gt;Best Regards.&lt;/p&gt;
</description>
<category>Other</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2900/us-date-format-is-not-applied-in-ie</guid>
<pubDate>Wed, 24 Jan 2018 11:10:21 +0000</pubDate>
</item>
<item>
<title>Date format and Decimal point are not formatted as defined in admin console</title>
<link>https://overflow.efficy.io/?qa=2894/date-format-decimal-point-formatted-defined-admin-console</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;a client has 2 Efficy web servers with same database to have different date format and decimal point (European format and USA format).&lt;/p&gt;

&lt;p&gt;But on USA server, the history tab and chronos tab are showing other format fro date and decimal point:&lt;br&gt;
- Date should be MM/DD/YYYY, and it's shown on thos 2 tabs as DD/MM/YYYY&lt;br&gt;
- Decimal point should be '.', and it's shown ','&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=17607860327288946407&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=8988659821448289998&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;Please advise, is it bug? can it be fixed by custom?&lt;/p&gt;

&lt;p&gt;Thank you for your help in advance.&lt;br&gt;
Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2894/date-format-decimal-point-formatted-defined-admin-console</guid>
<pubDate>Fri, 19 Jan 2018 11:34:14 +0000</pubDate>
</item>
<item>
<title>pickDate show dates on filed in different shortDateFormat</title>
<link>https://overflow.efficy.io/?qa=2766/pickdate-show-dates-on-filed-in-different-shortdateformat</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I have the folowing model custom window, when i click on dates field to choose one, i get date in format mm/dd/yyyy while on server (both regional settings on windows and Efficy admin console) has shortDateFormat dd/mm/yyyy&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;%LoadMacros('MacroDialog')%&amp;gt;
&amp;lt;div class=&quot;text-center&quot; data-channel=&quot;consult/entity/main&quot;&amp;gt;
    &amp;lt;div class=&quot;row&quot;&amp;gt;
        &amp;lt;div class=&quot;i-gear small-4 columns text-start&quot;&amp;gt;
            &amp;lt;%GetLabel(&quot;Processus Col-Ind&quot;)%&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-8 columns&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;br&amp;gt;
    &amp;lt;div class=&quot;row&quot;&amp;gt;
        &amp;lt;div class=&quot;small-4 columns text-start&quot;&amp;gt;
            &amp;lt;%GetLabel(&quot;Date de début&quot;)%&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-4 columns&quot; &amp;gt;
            &amp;lt;input id=&quot;D_START&quot; name=&quot;D_START&quot; type=&quot;text&quot; placeholder=&quot;&amp;lt;%GetLocaleSetting('ShortDateFormat', moment=T)%&amp;gt;&quot; data-msg=&quot;pickDate;$this;$event&quot; autocomplete=&quot;off&quot; value=&quot;&quot;&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-4 columns&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;row&quot;&amp;gt;
        &amp;lt;div class=&quot;small-4 columns text-start&quot;&amp;gt;
            &amp;lt;%GetLabel(&quot;Date d’échéance&quot;)%&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-4 columns&quot; &amp;gt;
            &amp;lt;input id=&quot;D_DUE&quot; name=&quot;D_DUE&quot; type=&quot;text&quot; placeholder=&quot;&amp;lt;%GetLocaleSetting('ShortDateFormat', moment=T)%&amp;gt;&quot; data-msg=&quot;pickDate;$this;$event&quot; autocomplete=&quot;off&quot; value=&quot;&quot;&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-4 columns&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;row&quot;&amp;gt;
        &amp;lt;div class=&quot;small-4 columns text-start&quot;&amp;gt;
            &amp;lt;%GetLabel(&quot;Date de résiliation&quot;)%&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-4 columns&quot; &amp;gt;
            &amp;lt;input id=&quot;D_TERMINATE&quot; name=&quot;D_TERMINATE&quot; type=&quot;text&quot; placeholder=&quot;&amp;lt;%GetLocaleSetting('ShortDateFormat', moment=T)%&amp;gt;&quot; data-msg=&quot;pickDate;$this;$event&quot; autocomplete=&quot;off&quot; value=&quot;&quot;&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class=&quot;small-4 columns&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div class=&quot;row small-12 columns text-start&quot;&amp;gt;
        &amp;lt;font color=&quot;red&quot;&amp;gt;&amp;lt;%GetLabel(&quot;Vous allez tous les bâtiment et locaux actifs liés à cette affaire en individuel.&quot;)%&amp;gt;&amp;lt;/font&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;br&amp;gt;
    &amp;lt;br&amp;gt;
    &amp;lt;div class=&quot;row small-12 columns text-start&quot;&amp;gt;
        &amp;lt;font color=&quot;red&quot;&amp;gt;&amp;lt;%GetLabel(&quot;Ce processus ne peut pas être annulé!&quot;)%&amp;gt;&amp;lt;/font&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;%Macro(&quot;OKCancel&quot;, $oklabel$=&quot;Ok&quot;, $channel$=&quot;consult/entity/main&quot;, $msg$=&quot;createPublicationColind&quot;)%&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

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

&lt;p&gt;Pleas advise.&lt;br&gt;
Thank you for your help in advance.&lt;br&gt;
Best Regards.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2766/pickdate-show-dates-on-filed-in-different-shortdateformat</guid>
<pubDate>Fri, 24 Nov 2017 17:26:06 +0000</pubDate>
</item>
</channel>
</rss>