Apex (sforce) Explorer 8.0
The new Apex Explorer (formerly known as sforce Explorer) has been released. You can download it from the ADN Wiki.
The new Apex Explorer (formerly known as sforce Explorer) has been released. You can download it from the ADN Wiki.
The Salesforce Analytics Blog has a good post on passing report criteria via the URL.
I posted about this a while ago, but their solution shows how you can pass field name, comparison operator and value via the URL. Mine only shows how to pass the value over, which required the report to already be setup with the criteria lines waiting for the value. This new solution allows a single report to exist with no criteria lines whereby you pass over those criteria lines via the URL. Pretty slick!
Part 3 of the the O’Reilly Network’s 3-part series about Salesforce.com was posted today. It’s called Packaging for Salesforce.com’s AppExchange.
I updated my original post with the a link to part 3. You can get to all of them from there.
Permalink
Comments off
This post only applies to relationship fields (lookup and master-detail) that went through the Winter ’07 upgrade.
If you plan to use SOQL relationships in queries that have custom relationships to other objects, you should go and edit your custom relationship fields to include a Child Relationship Name. This allows you to use a user-friendly name for the relationship when querying the master object.
Going forward, this field is set for you. However, after the Winter 07 upgrade, this field was left blank on all relationship fields. Without making this update, SOQL relationships will still work, but you will be forced to use an archaic value for the relationship name. That archaic value will look like a Salesforce ID.
The Salesforce online help has very good documentation on relationships, but here’s a quick example.
Suppose you had 2 custom objects before the Winter 07 upgrade: Quote and Quote Line. Quote Line has a relationship field called Quote, which sets a master-detail relationship between quote (master) and quote line (detail). After the Winter 07 upgrade, the Child Relationship Name on that relationship is null. You need to update it. To do so:
Doing this allows you to make a query like:
Select q.Name, (Select Id, Name From Quote_Lines__r) From Quote__c q
To get this setup correctly in your org, you should go through each object and make sure this is set for all custom lookup and master-detail relationship fields. You’ll probably use SOQL relationships someday. May as well fix it now.
Permalink
Comments off
In case you don’t already subscribe to Simon Fell’s pocketsoap blog , he just posted a couple items relevant to the new Winter 07 functionality.
Permalink
Comments off