• tammyCMC
  • NEWBIE
  • 0 Points
  • Member since 2009

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

 

I have a custom object which has Additional Clients Visited as a related list.

 

I need to change the button shown above (New Additional Client Visited)

I want the new button to bring me back to this custom object after a new client visited is created.

FIRST PROBLEM: I can't figure out where to go to change what button shows in this related list.

 

At the moment the url when you click the New Additional Client Visited button is :

https://na4.salesforce.com/a0m/e?CF00N60000001pX9E=T-0393&CF00N60000001pX9E_lkid=a056000000INcoG&retURL=%2Fa056000000INcoG

I've done a little searching and found that I likely need to have the replacement button provide a SaveURL

SECOND PROBLEM: I don't know what the url should be to bring me back to the custom object (Trip_Report__c) instead

 

Thanks for any help!

Tammy

Hi

I posted this a while ago in another forum

 

http://community.salesforce.com/t5/General-Development/force-com-ide-plugin/m-p/159633

 

I've installed Eclipse Ganymede version 3.4

I click Hellp|Software Updates and Add Sites

and put in http://www.adnsandbox.com/tools/ide/install/

When i select Force.com IDE nothing shows and the Install button never becomes enabled!!!

 

I desperately need to bring my triggers from sandbox to production.

HELP !!

thanks

tammy

Hi

I'm trying to set up cases so that if the Recordtype is Internal Case an email will be sent to our internal ops email.

 

I thought I needed to set up a queue and assignment rule.  I can't get the case owner to be set to the queue.

 

Here is what I have set up...did I miss a step....can anyone see what my problem is??

 

 

create rule

 

rule

 

 

 

 

Hi
i know it's something basic but i don't understand :(

i get this error
Fatal error: Class 'QueryResult' not found in C:\scripts\index.php on line 12

from this code:


require_once("c:/php/sforce/soapclient/SforceEnterpriseClient.php");
require_once ('c:/php/sforce/soapclient/SforceHeaderOptions.php');
require_once ('c:/php/sforce/userAuth.php');
$conn= new SforceEnterpriseClient();
$conn->createconnection("enterprise.wsdl.xml");
$mylogin=$conn->login($myusername,$mypassword);
$query="select firstname,lastname,email from contact where username__c='abcdefgh'";

$response=$conn->query($query);
$queryresult = new QueryResult($response);
foreach ($queryresult->records as $result) {

$Name= $result->fields->firstname;
print_r("
name is ");
print_r ($Name);
}

thanks for any help
tammy

Hi

I posted this a while ago in another forum

 

http://community.salesforce.com/t5/General-Development/force-com-ide-plugin/m-p/159633

 

I've installed Eclipse Ganymede version 3.4

I click Hellp|Software Updates and Add Sites

and put in http://www.adnsandbox.com/tools/ide/install/

When i select Force.com IDE nothing shows and the Install button never becomes enabled!!!

 

I desperately need to bring my triggers from sandbox to production.

HELP !!

thanks

tammy

Hi
i know it's something basic but i don't understand :(

i get this error
Fatal error: Class 'QueryResult' not found in C:\scripts\index.php on line 12

from this code:


require_once("c:/php/sforce/soapclient/SforceEnterpriseClient.php");
require_once ('c:/php/sforce/soapclient/SforceHeaderOptions.php');
require_once ('c:/php/sforce/userAuth.php');
$conn= new SforceEnterpriseClient();
$conn->createconnection("enterprise.wsdl.xml");
$mylogin=$conn->login($myusername,$mypassword);
$query="select firstname,lastname,email from contact where username__c='abcdefgh'";

$response=$conn->query($query);
$queryresult = new QueryResult($response);
foreach ($queryresult->records as $result) {

$Name= $result->fields->firstname;
print_r("
name is ");
print_r ($Name);
}

thanks for any help
tammy

hi

i want to see my schema

 i'm following these instructions http://community.salesforce.com/sforce/?category.id=developers

but when i get to where is says to Install I see no plugin under Force.com IDE and

the Install button is inactive

what am i doing wrong?

thanks tammy

  • December 07, 2009
  • Like
  • 0

Stay-in-Touch is promising and has a lot of potential for our organization, particularly for our Managers who want to ensure we have up-to-date information for our Contacts.

 

However, it is still very limited due to the inability to customize the forms and remove the annoying "powered by Salesforce.com" links on the page at which the Contact arrives. 

 

As much as we like the concept, we cannot bombard our Contacts with Salesforce.com ads when asking them to provide us with even more (or updated) information.  The look and feel of the web form does not even allow us to put our company logo on the form.  It's quite frustrating.

 

I have already promoted an Idea, but have my doubts Salesforce will do anything with it.

 

I'm curious if other organizations / developers have done anything with Visualforce and/or Mass Communication templates and/or Sites to mimick this type of functionality.  Basically, we would like the ability to mass-email existing Contacts asking for updated information, direct them to a web form that we design, and have the data from those fields overwrite existing values on the corresponding Contact record in SFDC.

 

Does this sound like it is possible, and if so, how would you approach this?  If you have any ideas, I'd love to hear them.

 

Thanks!

what does this error means?
 
Fatal error: Class 'QueryResult' not found in....
 
hers my code... thanks!
 
$query = 'Select Id, FirstName from contact';
  $response = $mySforceConnection->query(($query));
  $queryResult = new QueryResult($response);
  foreach ($response->records as $record) {
    $sobject = new SObject($record);
    echo $sobject->fields->ContactId;
    echo "\r\n";
  }
} catch (Exception $e) {
  echo $e->faultstring;
}
  • June 25, 2007
  • Like
  • 0