User contributions for Sagecrmw
From Accelerator for SageCRM
18 May 2026
- 10:0010:00, 18 May 2026 diff hist −73 MediaWiki:Sidebar No edit summary current
8 May 2026
- 10:3010:30, 8 May 2026 diff hist +136 E-Mail Templates No edit summary current
7 May 2026
- 14:5414:54, 7 May 2026 diff hist +193 E-Mail Templates No edit summary
- 14:2414:24, 7 May 2026 diff hist 0 N File:Ct jsfiles.png No edit summary current
- 14:2414:24, 7 May 2026 diff hist 0 N File:Ct init.png No edit summary current
- 14:2414:24, 7 May 2026 diff hist +10 Email Button No edit summary current
- 14:2414:24, 7 May 2026 diff hist 0 N File:Email icons.png No edit summary current
- 14:2414:24, 7 May 2026 diff hist +349 Email Button No edit summary
- 14:1114:11, 7 May 2026 diff hist +49 Email Button No edit summary
24 April 2026
- 17:1317:13, 24 April 2026 diff hist +50 MediaWiki:Sidebar No edit summary
- 17:1217:12, 24 April 2026 diff hist +189 New Releases No edit summary current
- 16:5016:50, 24 April 2026 diff hist +15 New Releases No edit summary
7 April 2026
- 13:3013:30, 7 April 2026 diff hist +38 Troubleshoot No edit summary current
- 13:2913:29, 7 April 2026 diff hist +315 Install and Requirements No edit summary current
- 13:2713:27, 7 April 2026 diff hist −18 Troubleshoot No edit summary
19 March 2026
- 14:1114:11, 19 March 2026 diff hist +175 Configure No edit summary current
17 March 2026
- 19:4319:43, 17 March 2026 diff hist +31 Troubleshoot No edit summary
- 19:4219:42, 17 March 2026 diff hist 0 N File:Trg BlockXSS Comm.png No edit summary current
- 19:4119:41, 17 March 2026 diff hist +622 Troubleshoot No edit summary
- 19:3719:37, 17 March 2026 diff hist +417 Install and Requirements No edit summary
12 March 2026
- 22:2222:22, 12 March 2026 diff hist +3 Entity Options No edit summary current
2 March 2026
- 12:4412:44, 2 March 2026 diff hist −17 Import into Sage CRM No edit summary current
- 12:4412:44, 2 March 2026 diff hist +18 Import into Sage CRM No edit summary
- 12:4312:43, 2 March 2026 diff hist +11 Import into Sage CRM No edit summary
- 12:4212:42, 2 March 2026 diff hist +17 Import into Sage CRM No edit summary
- 12:4212:42, 2 March 2026 diff hist +10 Import into Sage CRM No edit summary
- 12:4212:42, 2 March 2026 diff hist −876 Import into Sage CRM No edit summary
- 12:4112:41, 2 March 2026 diff hist +2,145 N Import into Sage CRM Created page with "Using JINT mode you can insert data. The example below creates a Company and Person record. Then it updates the Company making the Contact the Primary contact for the Company. You can see use of the method "getID" which allows you to map SageCRM Lookup record Codes. ---- '''SAMPLE SCRIPT''' var account_name = "Acme Consulting"; var _source = "Import"; var _status = "Active"; //get any lookup code values (useful if mapping from another system w..."
- 12:2812:28, 2 March 2026 diff hist +39 Batching Updates No edit summary current
- 12:2712:27, 2 March 2026 diff hist +893 N Batching Updates Created page with "Using JINT mode we can use scripting to batch updates. This speeds up any inserts/updates SAMPLE SCRIPT jint di var sagebatch=SageCRMBatch(); var address_id = di.getid('address','01010104'); var sageRecord_address = SageCRMRecord('Address'); sageRecord_address.Set("addr_addressname","xyz5"); sageRecord_address.Set("addr_address1","test address 5"); sageRecord_address.Set("Addr_Country","US"); sageRecord_address.id = address_id; sageRecord_address.mode="Update";..."
- 12:2612:26, 2 March 2026 diff hist +803 N DI Jint Created page with "There are specific commands in the Javascript Engine (JINT) relating to SageCRM Only. getID - This is used where you have the "Name" value and need the ID. You would use this for an integration where Id's would not map but you could map the Names. Only one result is returned so this depends on the Name value being unique. Otherwise use querydb. - Parameters (a) COLLECTION (b) FILTER - returns ID value EG >var _compId = di.getID('Company', 'Union Computer'); 2..." current
25 February 2026
- 14:3114:31, 25 February 2026 diff hist +6 New Releases No edit summary
- 14:3114:31, 25 February 2026 diff hist +575 New Releases No edit summary
- 13:3913:39, 25 February 2026 diff hist +104 New Releases No edit summary
24 February 2026
- 18:2618:26, 24 February 2026 diff hist +80 Version 6 No edit summary current
- 13:0413:04, 24 February 2026 diff hist +3 Query Sage CRM Data No edit summary current
- 13:0213:02, 24 February 2026 diff hist +37 Query Sage CRM Data No edit summary
22 February 2026
- 18:5418:54, 22 February 2026 diff hist 0 N File:Sage crm rest etl query.png No edit summary current
- 18:5418:54, 22 February 2026 diff hist +38 Query Sage CRM Data No edit summary
- 18:5118:51, 22 February 2026 diff hist +109 Query Sage CRM Data No edit summary
- 18:3218:32, 22 February 2026 diff hist +4 Query Sage CRM Data No edit summary
15 February 2026
- 00:3000:30, 15 February 2026 diff hist −5 Query Sage CRM Data No edit summary
14 February 2026
- 23:4923:49, 14 February 2026 diff hist +1,739 N Query Sage CRM Data Created page with "Example walk through A. Add SageCRM as a server For SageCRM: eg.addserver sagecrm <ALIAS> "<URL>" "<USERNAME>" "<PASSWORD>" Syntax: >addserver sagecrm <ALIAS> "<URL>" "<USERNAME>" "<PASSWORD>" EG >addserver sagecrm "crm" "https://crm.yourserver.com" "Supervisor" "********" This sets up Sage CRM as a connection in the App B. List the tables(collections) in the system >dbtables C. See the columns in a table (collection) >describe Company Filte..."
- 23:4723:47, 14 February 2026 diff hist +406 N DI Overview Created page with "Data Islands and Sage CRM allows you to quickly and easily build robust custom Integrations. You can: * Export Sage CRM data for use in a datawarehouse/mart and feed other systems from Sage CRM * Import data into Sage CRM from ERP or any data located anywhere. ---- There are 2 modes you can use for Data Islands. 1. Command line 2. JINT (Javascript) For more complex data flows you would use JINT." current
- 23:4523:45, 14 February 2026 diff hist +188 MediaWiki:Sidebar No edit summary
22 January 2026
- 11:3211:32, 22 January 2026 diff hist 0 N File:New mail mrege buttons.png No edit summary current
- 11:3211:32, 22 January 2026 diff hist +143 Custom Mail Merge App No edit summary current
14 January 2026
- 21:5221:52, 14 January 2026 diff hist +316 Install Outlook365 Client No edit summary current
8 January 2026
- 16:3916:39, 8 January 2026 diff hist −12 Install and Requirements No edit summary
6 January 2026
- 17:4617:46, 6 January 2026 diff hist 0 N File:Type mismatch large email.png No edit summary current