• Neha1234
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 4
    Replies

I wanted to check where some of the fields from a custom object are being referenced in either a Visualforce page or an apex class.Is there a way to check this?

I wanted to check where some of the fields from a custom object are being referenced in either a Visualforce page or an apex class.Is there a way to check this?

HI ,

Please help me out.. I encountered this error while trying to installing Force.com IDE....

 



 

"

An error occurred while collecting items to be installed
session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
Problems downloading artifact: osgi.bundle,com.salesforce.ide.api,24.0.0.201202291629.
MD5 hash is not as expected. Expected: 7251ab037ae632a5a9835c7c07210451 and found 1967adb9098b0054385a2dd45fe0f5e3.
Problems downloading artifact: osgi.bundle,com.salesforce.ide.core,24.0.0.201202291629.
MD5 hash is not as expected. Expected: 44db36699ca7fdd38917fced4e63c3b3 and found 22fabfa35567ee6997134eb703785961.
Problems downloading artifact: osgi.bundle,com.salesforce.ide.documentation,24.0.0.201202291629.
MD5 hash is not as expected. Expected: 6d87eb2e76e7e19f7b709682e5272dfc and found 0eac517f8486c20194a93df06663f3f9.
Problems downloading artifact: osgi.bundle,com.salesforce.ide.ui,24.0.0.201202291629.
MD5 hash is not as expected. Expected: 72451be89c0b7d5ca06b55c8ad657db6 and found 97c8723487e415b1d2e4f998a3496c94.
Problems downloading artifact: osgi.bundle,com.salesforce.ide.ui.editors,24.0.0.201202291629.
MD5 hash is not as expected. Expected: ff45a840737d9bef14347ce6f5b5daa4 and found 066475a759d26eb6818d08caf76f74fb.

"

 

 

Thanks 

Kavya

  • May 19, 2012
  • Like
  • 0

Hey there,

 

I'm having trouble accessing custom fields using the SOAP API with PHP.  Here's my query:

SELECT npo02__Formula_MailingAddress__c, npo02__HouseholdPhone__c, npo02__MailingCity__c, npo02__MailingCountry__c, npo02__MembershipJoinDate__c, npo02__MembershipEndDate__c FROM npo02__Household__c

 This query works fine on Force.com explorer.  Using SForceEnterpriseClient->query(), here is what the exact same query returns:

QueryResult Object
(
    [queryLocator] => 
    [done] => 1
    [records] => Array
        (
            [0] => SObject Object
                (
                    [type] => 
                    [fields] => 
                )

            [1] => SObject Object
                (
                    [type] => 
                    [fields] => 
                )

            [2] => SObject Object
                (
                    [type] => 
                    [fields] => 
                )

            [3] => SObject Object
                (
                    [type] => 
                    [fields] => 
                )
.....etc

 

Can someone explain what I'm doing wrong?  Non-custom fields are picked up fine, but I can't seem to access any custom fields through the API.

 

Thanks a lot!

Ok folks, here's one I need some help with...For anyone who has used PARENTGROUPVAL...

 

I created a report to help me figure out the rate of conversion for opportunities from propsect opportunities to qualified opportunities. Essentially, when an opportunity is set to the 'Qualified Opportunity' stage (from prospect opportunity stage), a calculated field enters text, "Yes" - otherwise, it's "No". My report groups all opportunities first by Owner and then by Qualified Opportunity (either yes or no). This part all works fabulous. What I want to do is figure out the rate of conversion for each of my reps using a Custom Summary Formula. I want to use PARENTGROUPVAL to help me. Here is how I built it:

 

RowCount/PARENTGROUPVAL(RowCount, Owner)

 

The formula calculation would be displayed at the Grouping 2: Qualified Opportunity level.

 

The idea is that it would divide the total opps (RowCount) in each Qualified Opportunity grouping (Yes or No), by the total number of opportunities for each owner (PARENTGROUPVAL(RowCount, Owner).

 

Based on how I read the help and other postings on the community, this should work. However, I get this error: "Field Owner does not exist. Check Spelling."

 

I have tried everything I can think of to get this to work, and no luck. Maybe I have misunderstood how it works (not hard since there isn't much help on this forumla function).  I have tried several diffrerent field names and even different grouping levels, but can't seem to get the field name correct. Maybe I am just using it completely wrong.

 

Any help would be great. I'm sure I am just missing something obvious, but sometimes you just need a second pair of eyes to help see it. I would appreciate any feedback at all. Thanks!

  • June 28, 2010
  • Like
  • 0