Did you ever wish there was an iPhone Client for SugarCRM? Well, worry no more! Imaginea Technologies is pleased to announce a free iPhone native Client for SugarCRM. Yes it is absolutely FREE!
Get used to the true mobile solution for SugarCRM with a brand new iPhone native Client from Imaginea Technologies.
The following are the highlights of the iPhone client:
– It is iPhone native and not HTML based
– It is truly mobile;
o Works with limited, intermittent and no connectivity modes.
o Works on the principles of “Store, Operate and Sync”!
– Dynamic and offline search as opposed to server based batch search
– Supports Create, Read, Update and Delete operations on major modules
– Unlimited updates of offline data!
– iPhone like navigations
– On demand sync with the server.
– Ability to email or call directly from your contacts
– Integration with Google Maps
For further details, please check out the following URL: http://www.imagineaservices.com/index.jsp?id=uit_iphonedev
Thanks
Raj
Hi Raj,
I sent vivek a request for the client and have not heard back. Hows it going? We have been testing Sugar for around six months and have just 5 users on it, but seem pretty good for us.
Dave
Hello Raj,
As a Sugar-user and iPhone-fan, I’m really looking forward to your app. When do you expect it to be available via the app store?
Regards,
Corwin
Hello Raj,
Yesterday evening I downloaded the app from the app store. The install went fine and after install I resetted my phone (as I usually do after installing new software). The app started ok and after configuring it started downloading data from our server. Unfortunately halfway the process, the application crashes. I have tried several times, but it keeps crashing. What can this be?
Regards,
Corwin
Great app – Thanks.
Is there a limit to the number of accounts that the iSugarcrm can handle? I cant get more then 200
jim
Hi Jim,
You will have to specify maxRecords in the initial setup.
Please take a look at User/Installation guide available on http://www.imagineaservices.com/index.jsp?id=uit_iphonedev
Regards
Vivek
Hi Guys,
Great idea for an app. I’ve downloaded it and installed the patch for the community edition. While it claims to have brought across data, there is 0 rows in all of the tables in the App Info screen.
Can you give me some ideas on where/how to debug this?
Thanks,
Dermot.
Hi,
I have the same problem as Dermot with the community edition (also installed the patch). I noticed that contacts created in the iphone do synchronize to sugarcrm, but nothing synchronizes back. I’m also interested in debugging this. Thanks! Peter
Hi. I can’t get this to work – Does it support 5.2? Thanks
All the same for me:
– Registration works for local (not LDAP authenticated) users (need to apply a predefined SOAP encryption key)
– Initial synchronization stops (Downloading Data…/Account: 200 records) although 10000 max set)
– Nothing received in other modules than Account
– Sync back does not create data on the server
– SugarCRM 5.2.0 CE
If it helps, I could hand in some SOAP debug from SugarCRM while running a sync…
If you get it to fly thats a pretty cool and useful app!
Hey there, looks like the thing we love, BUT…
after about 2 days of struggle, I’m still having the same issues as Mark and Peter and Dermot …
…it just won’t give me any contacts (accounts appear to be fine, haven’t gotten to the rest yet).
Also, when changing a contact (that I’ve created on the iPhone) is changed within the CRM-site online, that contact vanishes from the Phone.
I’ve even tried going back to the 5.0.0 to see wether that makes any difference (starting out on 5.2.0)
HELP, PLEASE!
Hi Dermot,Peter and Mark
We have seen such behavior when the SOAP layer doesnot support the query paramater in get_entry_list service.
Please check you server’s soap layer.
Regards
Vivek
Hi Frank,
The LDAP support is still in the pipe.
We have tested the app on our SugarCRM server 5.2.0 community edition and it works for us.
Can you please provide us a demo user id and password for your server .
Please mail me at vivekb@pramati.com
The version 2.0 of the app is totally stable and will be coming in first week of feb.
Thanks to all for providing their feedbacks.
Regards
Vivek
Hello,
I have the same problem also:
The data created in the iphone do synchronize to sugarcrm, but nothing synchronizes back.
I have installed Sugar Community Edition (FastStack Windows Installer for 5.2.0a with MSSQL).
Could anybody explain in more detail, where I can check my server’s soap layer?
Regards,
Aurelijus
I just downloaded the latest version from the App Store and it crashes each time it tries to Register. Does not even get to the Download task.
Hi Vivek,
I’ve been having problems along with the other users trying to support SugarCRM CE, how is the V2 release coming along. I’ve been telling my staff it’ll be along soon.
Regards
Marcus…
Lovely little app! However, I cannot find any info on when a read/write version is coming (CRUD). Would love to see that!
Vivek,
Do you have a timeline for the ldap functionality as I desparately need this to deploy sugarcrm and isugarcrm?
Thanks
I just installed version 1.1 and it is working great, however I am expecting paid version since. I cannot longer make changes and there is no Edit button. Now you can see tasks but no projects. It would be great to have them.
I would like to be able to filter elements in a big list, because I have so many tasks, and maybe select sort criteria.
It is a great app.
Hi Marco,
Try shaking your device when you are in list view and you will see a sort screen…and you can sort the records based on many fields 😛
Hi Guys
Just wondering when the new update for Kinito Pro will be available from itunes.
Regards
Travis
Hi Vivek,
great product. thx. One requirement i had, is to be able to identify incoming calls. i wrote a little hack, which you may be able to use as a feature suggestion. I basically create a special user in the addressbook with ALL the numbers from sugar and the names as labels. This allows me to keep my personal and company data separate and yet identify incoming calls. The code is of course HIGHLY experimental so anyone reading this: BE WARNED. (btw. you need to install python obviously)
import sqlite3
import re
p = re.compile(‘\D’)
lfour = re.compile(‘….$’)
conn = sqlite3.connect(‘/private/var/mobile/Applications/CBF94D0B-3FEE-402C-B04F-6E2970E52B69/Documents/data1.sqlite’)
c = conn.cursor()
c.execute(‘select LAST_NAME, FIRST_NAME,PHONE_WORK,PHONE_MOBILE,PHONE_HOME,PHONE_OTHER from contact;’)
contacts = []
for row in c:
contact = {}
contact[‘name’] = ‘sg-‘+row[0]+’-‘+row[1]
numbers = []
for i in range(2,6):
numbers.append(p.sub(”,row[i]))
contact[‘numbers’] = numbers
contacts.append(contact)
conn.close()
conn = sqlite3.connect(‘/private/var/mobile/Library/AddressBook/AddressBook.sqlitedb’)
c = conn.cursor()
c.execute(‘select ROWID from ABPerson where Last=”sugarcrm”‘)
for row in c:
userid = row[0]
c.execute(‘DELETE from ABMultiValue where record_id=?’,(userid,))
c.execute(‘DELETE from ABMultiValueLabel where value LIKE “sg-%”‘)
c.execute(‘select * from ABMultiValueLabel’)
lbl_rec_no = 1
for row in c:
lbl_rec_no +=1
c.execute(‘select * from ABMultiValue’)
for contact in contacts:
c.execute(‘INSERT into ABMultiValueLabel (value) values (?)’, (contact[‘name’],))
identifier = 0
for number in contact[‘numbers’]:
if number:
c.execute(‘INSERT into ABMultiValue (record_id,property,identifier,label,value) values (?,?,?,?,?)’, (userid,3,identifier,lbl_rec_no,number))
c.execute(‘select UID from ABMultiValue where record_id=? and identifier=?’,(userid,identifier))
for row in c:
num_rec_no = int(row[0])
c.execute(‘INSERT into ABPhoneLastFour (multivalue_id,value) values (?,?)’, (num_rec_no,lfour.findall(number)[0]))
identifier += 1
lbl_rec_no += 1
conn.commit()
conn.close()
hi
i saw your application on SugarCRM
*i need the details regarding the css and how to make the look and feel as u have done
* for the server side code ,wat u have used
I really liked this post. Can I copy it to my site? Thank you in advance.
Hello Kai,
We have currently halted the development on iSugarCRM.
Even if we use the logic you mentioned (which seems really useful), I doubt that the application will be approved by Apple. They have strict laws governing all applications intended to be sold through App Store.
Regards
Hi,
Does the Kinito Pro client for the iphone also work with a sugarcrm 5.2.0 with ldap authentication?
Thanks,
Brenno.
Never mind my post.
I’ve now tested the connection with the local admin user in sugarcrm and that works… When can we expect the ldap backend support working?
Many thanks.
Brenno.
Hi Raj & Vivek,
congratulations on this! i love this tool and i am very sorry to read that you are not continuing it!?
I am using this tool for Sugar i implemented my customers. but i found a very hairy bug :
There is no time in the Meetings and Calls!?
And i whould also like to translate this tool to german …
can i help there somehow!? My customers whould pay for this!
Thanks for Answers!
Best
Rudi
Hi Raj,
This is a great app!
However I was just wondering if you know why it can’t show the custom fields that i have built in sugarcrm?
Thanks
Daniel
I’ve setup SugarCRM in our small company, and everyone is on iPhones! We love KinitoPro!!! It’s fast, easy to use and very practical.
We’d like to see a few added features, and certainly would pay for the app to support the development. It would be great if each Accounts and Contacts could be set up for all to see, and other items such as Tasks filtered for each user.
One other feature would be nice – we use SIP phones on our iPhones and it would be great if you could choose which phone when clicking on a number.
Keep up the great work!!
Well, the client never fully worked for me. We have around 6.000 accounts – but synchronization stops at 1.400 (maybe timeout).
@Brenno: Just to let you know: you can remove the LDAP encryption modifying the core PHP of SugarCRM. Of course keep in mind security risks! – can’t remember exactly where and what, but its done in one line 😉
As far as I experienced, SugarCRM does focus on eliminating all 3rd party activities related to HTML5 and mobile clients. I can well imagine companies trying to create native clients also get in conflict with Apple when they try to publish native applications.
But what about creating either a PHP adapter using SOAP (XML/XSLT) to create HTML and JavaScript + localStorages and manifest for offline usage OR writing a complete SugarCRM theme?
Anybody is aware of such projects? There is not a lot that can be done against such a project?
Even a small offline app for Accounts, Contacts and Opportunities read only would already help!
Frank
link is broken
Hi,
Is Sugar CE 6.1.2 supported?
Where can I find information, any patches and so on?
An outstanding share! I have just forwarded
this onto a co-worker who has been conducting a little homework on this.
And he actually bought me dinner simply because I discovered it for him…
lol. So let me reword this…. Thank YOU for the
meal!! But yeah, thanks for spending some time to talk about this subject here on your website.