wiki
Benvenuto Guest, sei in: Login
• Welcome Guest, you are in: Login

ScrewTurn Wiki


RSS RSS

Navigazione (Tech)





Ricerca wiki
»
RSS RSS

Navigation (Tech)





Search the wiki
»

Search Engine

Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.



Filter by Category

Select allNoneInvert


This search, performed through 1.84 MB (571 documents, 8848 words), completed in 0.0 seconds and yielded 20 results.

Registro delle modifiche — 0.9%

[...] cartella trash nella webmail Aggiunta la funzionalità per gestione appuntamento in sede/fuori sede su Outlook Nuovo Layout Webmail Aggiunto Filter per file .eml Aggiunto l’avviso che l'allegato verrà tolto nel caso di caricamento di un template con allegati Aggiunta nota elenco allegati nell'inoltra importazione/Esportazione Dati Aggiunto campo codice fiscale in importazione dati aziende Aggiunta funzionalità esportazione in excel nel repeater documenti da fornitore Gestione esportazione SAP incassi con data allibramento Aggiunta funzionalià esportazione excel nel [...]

Dynamic Tabs — 0.6%

[...] cards for company, contacts, prospects for own like, you can integrate them with other applications To create a new "tab", at first you have to add a file .ascx (it's no important its name) in cartel "TabControls" Questa pagina è solo un Draft , il contenuto può essere incompleto e contenere errori. In attached an example of codebehind explaining events using System; using System.Collections; using System.Configuration; using System.Data; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using [...]

Integrazione Tustena CRM Vs. Asterisk — 0.5%

[...] Per integrare Tustena con la piattaforma Voip Asterisk bisogna installare su ogni singolo client un plugin disponibile gratuitamente ( ADAT ) per ricevere informazioni da Asterisk sulle chiamate in arrivo e per poter lanciare direttamente le chiamate dall'interfaccia Web di Tustena CRM. Fate riferimento al sito del produttore per funzionalità e configurazione. What Is YAACID This Program is a caller ID program for the Windows platform written in C#. It connects to an Asterisk server through the Manager Interface on port 5038. YAACID can [...]

Tustena Liquid — 0.4%

[...] uppercase: {{ 'tobi' | upcase }} The word "tobi" has {{ 'tobi' | size }} letters! Change "Hello world" to "Hi world": {{ 'Hello world' | replace: 'Hello', 'Hi' }} The date today is {{ now | date: 'yyyyMMdd' }} daranno come risultato: The word "tobi" in uppercase: TOBI The word "tobi" has 4 letters! Change "Hello world!" to "Hi world!": Hi world The date today is (la data corrente) I tag disponibili sono: assign - assegna un valore ad una variabile capture - cattura il testo contenuto nel blocco e lo assegna ad una variabile case - è [...]

Come sono strutturati i webservice in Tustena? — 0.4%

[...] company"; leadDTO.Address = "somewhere"; leadDTO.EMail = "email"; leadDTO.ecc... //Save the DTO to Tustena myLead.Set(leadDTO); Quando si esegue una ricerca con il metodo Search si deve specificare una PseudoQuery . la pseudoquery è una condizione WHERE in formato SQL che usa come colonna il nome della proprietà del DTO corrispondente. Esempio: csharp // cerca tutti i lead che cominciano per digita long[] ids = leadDTO.Search("CompanyName like 'digita%'"); </code> Esempio di ricerca nel modulo Database: <code lang="cs"> DbSearchStruct[] [...]

Il flag di Sync Mobile — 0.2%

[...] anagrafica permette di sincronizzare quella data azienda/contatto/lead con delle rubiriche esterne: Outlook: tramite il plugin per [...]

Installare XMail — 0.2%

[...] server'''" "RemoveSpoolErrors" "0" #"NoSenderBounce" "1" #"DisableEmitAuthUser" "1" #"NotifyMsgLinesExtra" "8" #"NotifySendLogToSender" "0" #"NotifyTryPattern" "1" "MaxMTAOps" "16" "ReceivedHdrType" "0" "FetchHdrTags" "+X-Deliver-To,+Received,To,Cc" #"SMTP-TLS" "0" "EnableCTRL-TLS" "0" "EnableSMTP-TLS" "0" "EnablePOP3-TLS" "0" "SmtpMsgIPBanSpammers" "550 Denied due inclusion of your IP in our spam lists" "SmtpMsgIPBanSpamAddress" "550 Denied due inclusion of your email address in our spam lists" "SmtpMsgIPBanMaps" "550 Denied due inclusion of your IP in the following map" "CustomSMTPMessage" "Please open http://www.xmailserver.test/smtp_errors.html [...]

Esempi di stampa Liquid — 0.2%

[...] Pausa {% endif %}<br/> {{b.From}}<br/> {{b.To}}<br/> {{ 'SELECT DESCRIPTION FROM [DBO].DEFAULTCODEVALUE WHERE ID=@P0' | sql_scalar, b.CodeType }} <br/> {{b.Description}}<br/> <br/> {% endfor %} Stampa Checklist <tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2" class="mainTitle"> Check List </td> [...]

UCloud — 0.2%

[...] Enterprise CRM con VOISpeed UCloud Installazione E' necessario disporre di una licenza che comprenda il plugin: a partire dall'aggiornamento 19.30 verrà scaricato in automatico all'aggiornamento/installazione del CRM La configurazione va effettuata in Setup->Configurazioni->UCloud Plugin, un menu che si compone di 3 voci: Configurazione Azienda Configurazione utenti Esportazione massiva anagrafiche Entrando in configurazione azienda troveremo il form di configurazione L’url del servizio UCloud e il token devono essere generati nella [...]

Enable Active Diretory Integrated user authentication — 0.2%

[...] from outside the domain providing the correct username and password. Tree simple steps are required to enable integrated authentication: Disable anonymous login from the directory tab of Internet Information Server. Create a Domain Name to Tustena UserID map on the localuser table in the Tustena database. This table have 2 columns, the first username requires the full domain name in NT4 fotmat ex: “FERRARI\Enzo Ferrari”, the second ACCOUNTID requires the ID of the corresponding user [...]

Quick summary of the different modes of session state — 0.1%

[...] session kept as live objects in web server (aspnet_wp.exe). Use "cookieless" configuration in web.config to "munge" the sessionId onto the URL (solves cookie/domain/path RFC problems too!) StateServer - session serialized and stored in memory in a separate process (aspnet_state.exe). State Server can run on another machine SQLServer - session serialized and stored in SQL server Performance InProc - Fastest, but the more session data, the more memory is consumed on the web server, and that can affect performance. StateServer - When storing data of basic types (e.g. [...]

Configure the State Service on the ASP.NET State Server — 0.1%

Configure the State Service on the ASP.NET State Server The ASP.NET state service is used to manage session state on a computer. The ASP.NET state service is installed by default when Microsoft® Windows® Server 2003 is installed. The file aspnet_state.exe is installed on the remote server that will store session state information; the default location is systemroot\Microsoft.NET\Framework\version\aspnet_state.exe. Procedures To [...]

Lead Generation in PHP — 0.1%

[...] "Tustena_CompanyCode=$TUSTENACOMPANYCODE&Tustena_thankspage=$THANKSPAGE&Tustena_leadsource=$LEADSOURCE&Tustena_CompanyName=$CompanyName&Tustena_Title=$Title&Tustena_Name=$Name&Tustena_Surname=$Surname&Tustena_Address=$Address&Tustena_City=$City&Tustena_Province=$Province&Tustena_ZIPCode=$ZIPCode&Tustena_VAT=$VAT&Tustena_Email=$Email&Tustena_Phone=$Phone&Tustena_Fax=$Fax&Tustena_MobilePhone=$MobilePhone&Tustena_Notes=$Notes"); // enable this to force redirect to [...]

La giacenza di Gamma — 0.1%

[...] La configurazione si imposta nella sezione apposita del menu SETUP > Configurazioni > Gamma(Alyante) plugin > Configurazione plugin [...]

English Content — 0.1%

Welcome to Tustena Technical Wiki Documentation Business [...]

Configurazione SMTP Office 365 — 0.1%

[...] log l’errore che riportiamo di seguito : Response: 550 5.7.60 SMTP; Client does not have permissions to send as this sender La configurazione a [...]

Personalizzare etichette, testi e messaggi — 0.1%

[...] l'autorizzazione per aprire l'elemento selezionato</IT> <EN>You lack the required authorizations to open the selected element.</EN> <ES>No [...]

Integrazione con Mago.NET: Xml di definizione — 0.1%

[...] Mago.NET Entrambi i software utilizzano dei servizi di sincronizzazione di dati basati su xml, quindi il plugin per Mago.NET utilizza un xslt transformation [...]

Panoramica tecnica — 0.1%

[...] ecc. Per separare l’accesso ai dati dalla programmazione dell’interfaccia web, dei web service e dei plugin, sono stati sviluppato dei BusinessObjects [...]

Interagire con i Business Objects — 0.1%

[...] dllName="EventPlugins.dll" Active="false"> </businessObject> <businessObject ID="Activity" codeFile="plugin.cs" Active="true"> </businessObject> [...]