Simon Fell > Its just code > OSX

Thursday, October 25, 2012

The future of SF3

SF3 was one of the first OSX/Salesforce tools I wrote, made possible by an API in OSX called Sync Services. With the release of OSX 10.8 (aka Mountain Lion) Apple officially deprecated the Sync Services API (and its future was in doubt for a quite a while prior to that). With this news the future for SF3 is that it doesn't have any future, there is no new API that replaces the functionality of Sync Services. There are APIs to talk to both Address Book and iCal, but without the sync engine piece an app that wanted to sync data between those apps and a 3rd party is going to have to build the entire sync/match/change log functionality itself, a big job. Its possible that exposing the salesforce data using CalDav and CardDav might make it usable from OSX, but I haven't had time to investigate that in any detail.

< 9:14 AM PDT # > tags : OSX Salesforce.com [playing "When The Grip Lets You Go" by Prefuse 73 (from Security Screenings)]

Monday, June 07, 2010

ZKSforce now with iPhone OS support.

ZKSforce is the Cocoa library i wrote to make it easier to access the Salesforce.com API from Cocoa / Objective-C. I just posted a new version that uses the Salesforce.com v19 API, and has switched out its use of NSXML & NSCalendarDate with libxml & NSDate and so is now compatible with both OSX and iPhone based projects. (iPhone OS 3.2 and up should be good).

< 8:40 PM PDT # > tags : OSX Salesforce.com [playing "I Feel You [Renegade Soundwave Afghan Surgery Mix]" by Depeche Mode (from Remixes 81-04)]
AppleScript connector

The Applescript Connector for Salesforce.com allows you to write applescript that can interact with the salesforce.com API, login, create, update & delete data, run queries, retrieve your scherma's metadata all from Applescript. Now you can more easily integrate Salesforce.com with your OSX desktop and applications.

< 8:37 PM PDT # > tags : OSX Salesforce.com [playing "Strangelove [Blind Mix]" by Depeche Mode (from Remixes 81-04)]

Thursday, February 25, 2010

Updates

I updated the Quicksilver plugin for Salesforce.com to support Chatter, you can easily post status updates, URLs & Files to Chatter now from Quicksilver.

There's a minor revision to Trapdoor that adds Google Chrome to the list of available browsers.

SoqlX was updated to support the Salesforce.com v18 API, so that you can do aggregate queries etc, it also now tries much harder to preserve the field ordering in the table from the query.

< 8:34 AM PST # > tags : OSX Salesforce.com [playing "Voodoo Ray" by A Guy Called Gerald (from 24 Hour Party People)]

Sunday, November 22, 2009

OSX / Salesforce tools updates

I updated the OSX build of the data loader to v17, so now you can access v17 specific objects (like content) and use the new bulk api. And I also updated the TextMate Plugin for apex to v17 as well.

< 10:14 AM PST # > tags : OSX Salesforce.com [playing "Junglist Rmx -Drumsound & Bassline Smith" by Drumsound & Bassline Smith (from Assassin Vol 1)]

Saturday, July 04, 2009

v16 Data Loader for OSX

I built an up to date (api v16) OSX version of the data loader, and feel free to vote for the idea to make it official.

< 3:57 PM PDT # > tags : OSX Salesforce.com [playing "Poison" by The Prodigy (from Their Law (The Singles 1990-2005/Limited Edition) [UK] Disc 1)]

Saturday, April 18, 2009

App Updates

I released an updated SoqlX a couple of weeks back, it has a number of tweaks, exposing relationship names to make building SOQL-R queries easier, and the filtering object/field list I discussed earlier. And I just posted an updated version of SFFS, the file extension information is now bundled into the filenames for those files that don't have it in the name directly (depending on how your documents got into salesforce to start with, they might have the extension separate to the name). Follow me on twitter to find out these things as they happen.

< 11:54 AM PDT # > tags : OSX Salesforce.com [playing "Phoenix" by The Prodigy (from Always Outnumbered, Never Outgunned [Bonus Track])]

Thursday, March 12, 2009

SoqlX Filters

Following on from the filtered object/field list discussion, seems like showing all the fields and highlighting the matching ones seems like the best bet (but filtering the list of objects based on the object name, or the object having a field matching the filter), expect to find this in the next release of SoqlX.

< 10:22 PM PDT # > tags : OSX Salesforce.com [playing "Butterfly (Tilt's Mechanism Mix)" by Tilt (from Resident: Two Years Of Oakenfold At Cream (Disc 1))]

Tuesday, March 10, 2009

SoqlX Filters

I've been thinking about adding a filter widget to the object/field list in SoqlX, right now i have so that the object list is filtered based on whether the object name or any of its fields match the filter criteria, but the actual list of fields for the object remains intact. (as shown on the left). Is that what you would find most useful? should it also filter the field list itself ? something else? (I also thought about leaving it with the full list of fields, but having it highlight the fields that match the filter). Ping me on twitter and let me know what you think.

< 10:24 PM PDT # > tags : OSX Salesforce.com [playing "Song For Life (Steppin' Razor Mix)" by Leftfield (from Renaissance: The Mix Collection [Disc 1])]

Thursday, March 05, 2009

SoqlX tips'n'tricks

Everything you wanted to know about SoqlX but were afraid to ask.

Login


Remember that SoqlX uses the API to connect to Salesforce, and so depending on how your admin configured it, you may need to use your api security token in addition to your password to login (just add the token to your password, so if your password is beerisnice and your security token is abv123, enter beerisniceabv123 as the password). getting a LOGIN_MUST_USE_SECURITY_TOKEN error means you most likely forgot to include your security token (search for security token in the salesforce.com online help for more info)


Let SoqlX store your login credentials on the keychain, you'll be much happier, next time you run soqlX it'll remember your username & password (and if you have multiple salesforce.com logins, tryout trapdoor)

Queries

To execute a SOQL query, type the SOQL query into the box at the top, click Query (or Query All), the results will appear in the table, or for count queries, in the bottom left hand corner.



SOQL-R is supported, so you can do both queries that access foreign key relationships (like accessing account from a contact), and also aggregate child queries (like select accounts, and the contacts for each account). Double click the magnifying glass to expand the 2nd query table at the bottom, showing the child rows for that particular parent row.


If you queried the Id column, then you can edit data inline, just double click the cell and type in your new value, when the cell looses focus, the reecord in salesforce will be updated. You can also check the deleted checkbox and hit the delete button to delete row(s). click the Delete column header to quickly toggle the checkbox on all rows.

Using the Window menu, you can open launch the salesforce.com web application, for the user you're currently logged in as. You can also open the recent queries window, which'll show you the last 10 queries you've executed, double click a query to copy it to the SOQL query textbox. Watch the recent queries list animate the changes as you run new queries!.


Use File -> Save Query Results to save the results of your current query as a CSV file.


Schema
The list of objects & fields appear in the list view on the left hand side, double click an object to automatically create a query to select all the fields. Use the details button at the bottom left to turn on the details window which shows all the properties for the object or field selected in the list.

Hit the schema button at the bottom right to switch to a graphical view of your schema, showing how objects are related.

Use the +/- widget inside each object to control the set of fields that appear (id + name field, all standard fields, all fields). Double click an object (or select from the list view) to make that the primary object of the view.
Right click on any object in the listview and pick 'generate schema report' to generate the schema report for that object, this contains the graphical schema view, along with a table detailing all the fields for the object, you can print or export to PDF the schema report.

Got questions, or suggestions for new features, catch me on twitter.

< 8:37 PM PST # > tags : OSX Salesforce.com [playing "Run Wild" by New Order (from Get Ready)]

Wednesday, February 04, 2009

all the way to 20

bah, forget 11, this baby goes all the way to 20!

But seriously, memory is dirt cheap right now, why short change yourself

< 7:51 PM PST # > tags : OSX Technology

Sunday, December 07, 2008

Maildrop 2.0

I just posted the final Maildrop 2.0 build. You can download it from the project download page, or if you're already running Maildrop, just restart it, or pick check for updates to have it autoupdate.

Major new features include support for email attachments, the new buttonbar UI to replace the scripts menu, and the configurable search column for the 'What' search.

Maildrop 2.0 runs on Tiger and Leopard, I have some ideas for the next version, which may mean its Leopard only, why are you still on Tiger anyway?

Thanks to everyone who tried out the beta builds and provided feedback.

< 2:43 PM PST # > tags : OSX Salesforce.com [playing "Lush 3-4 (Warrior Drift Psychick Warriors Ov Gaia)" by Orbital (from Diversions)]

Wednesday, December 03, 2008

Maildrop 2 beta 4

I did further battle with the AppleScript ninja's and won, the new beta version of Maildrop includes support for attachments, for create case, all the attachments on the email are automatically added to the case (there's a pref to turn this off). For add Email, the attachments are listed with size and name, and you can choose which to upload, and which record they should be associated with. Download beta 4 and give it whirl. Feedback welcome.

< 9:04 PM PST # > tags : OSX Salesforce.com [playing "Try All You Want" by Electronic (from Electronic)]

Saturday, November 22, 2008

Maildrop 2.0 beta

I've been working on a 2.0 version of Maildrop, one of the pain points of the current version, especially for users new to Mac is the use of the scripts menu to trigger the maildrop actions. rather than interacting with the Maildrop application directly, so I've been working on an alternative approach. I came up with this, its a small button bar window that will hover above Mail or Entourage.

In order for it to not get in the way, when neither Mail or Entourage are the active app it will go to the back of the window list (like a panel window, except its in a different application). In addition the button bar shows which set mail client is active for maildrop, and will automatically switch between Mail and Entourage based on the active app (for people unluckly enough to have to use both).

There's also some additions to the Add Email dialog, now there's an additional column in the "related to what" results, this by default will show the case subject field for case records, you can edit this mapping, and add a additional field for each object type by right clicking on the search results table and selecting configure search columns

The config sheet for this will appear, for each object type, you can select a field from the drop down list.

There are a number of other fixes and tweaks (closing the add email dialog with the window chrome doesn't leave the app in the modal state anymore), login errors are shown better, etc. One feature I'd like to get in before the final 2.0 release is to support attachments.

Finally, a few tips for Maildrop, these apply to the current 1.5 release as well,

Download the current Maildrop 2.0 beta and give it a whirl.

< 11:47 AM PST # > tags : OSX Salesforce.com [playing "Don't Leave" by Faithless (from Reverence/Irreverence [UK] Disc 1)]

Friday, October 31, 2008

Maildrop and Quicksilver videos

Michael Wilde over on the Splunk blog put together a couple of great short videos on getting upto speed with Maildrop and the Quicksilver plugin. Thanks Michael!.

< 10:53 AM PDT # > tags : OSX Salesforce.com [playing "Sultans Of Swing" by Dire Straits (from Sultans Of Swing [Disc 1] [Special Edition])]