• Vivek V.ax312
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 6
    Replies
Hi,

Can I use the force.com plugin to transfer profile changes?

Regards

Vivek

While deploying an object I receive the following error

 

ServiceException: TOO_MANY_APEX_REQUESTS: too many apex requests (UNKNOWN_EXCEPTION)
TOO_MANY_APEX_REQUESTS: too many apex requests (UNKNOWN_EXCEPTION)

 

I am using Force.com api 13 with Eclipse.

 

Regards

 

Vivek

I need an APEX trigger that would copy comments from a Case to the Activity history of a Person Account.  Any existing code for this?

Thanks,

JRB

Hi I have a controller function that I call on page load and i also Have a condition specified which if satisfied it returns another PageReference however it dosent show the page. when I use the command with a command button it works.

public PageReference SFDCRegKitController() // This is my function
        {
              
               setOpportunityId();
                setCampaignId();
                getData.poplulateRegistritationKitItemsList(campaignId);
                getData.populateOpportunity(this.opportunityId);
               
                if( getData.changeToReOrderScreen == true)
                {
                    return Page.reg_re_order;//registrationKitReOrder(); // this is the page I want to go to.
                }
                return null;
                //getData.populateOrderItemList();
                
        }

This is my page I put in debug statements and it goes into that part of the code and also returns the page. However its not displayed. Please let me know what I am doing wrong here

<apex:page controller="SFDCRegKitController" action="{!SFDCRegKitController}" >
</apex:page>


Message Edited by Vivek Viswanath on 07-22-2008 06:15 AM



Hi,

Can I use the force.com plugin to transfer profile changes?

Regards

Vivek

While deploying an object I receive the following error

 

ServiceException: TOO_MANY_APEX_REQUESTS: too many apex requests (UNKNOWN_EXCEPTION)
TOO_MANY_APEX_REQUESTS: too many apex requests (UNKNOWN_EXCEPTION)

 

I am using Force.com api 13 with Eclipse.

 

Regards

 

Vivek
Hey,
 
In the force.com Eclipse IDE (v11.1.1.200801151537), the Package Explorer window includes custom object definitions (e.g. "src\unpackaged\objects\<customObj>.object").
 
Where in the Package Explorer, if anywhere, are custom FIELD definitions on standard objects displayed?
 
Putting it another way, if I want to include a custom field on a standard object as part of a force.com 'deploy' to another org via the IDE, is there any way to do so?
 
thanks!
 
-philbo
  • February 22, 2008
  • Like
  • 0
How can I structure a statement so that I can pull data from fields in 3 different custom objects which have a lookup relationship with 1 custom object?  Also, once I do that, how can I hold that dataset and do calculations against it before presenting the results on an scontrol?
 
Any help is greatly appreciated...