• VeevaEms
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 6
    Replies

Hello,

 

I've got 2 custom list buttons working in Summer '11 in my production instance, but neither work in my newly upgraded Winter '12 sandboxes.  I can't get any kind of javascript list button to work.... click the button and nothing happens!

 

Example button that does nothing:

 

{!REQUIRESCRIPT("/soap/ajax/14.0/connection.js")}
{!REQUIRESCRIPT("/soap/ajax/14.0/apex.js")}

alert("this button works!");

 Did something change about libraries I need to include, profile access to execute Java, anything? 

 

Did I mention I'm training 115 users in 2 days??? HELP!

https://na7.salesforce.com/001A000000kTDTA

I'd like to write a trigger on UserTerritory so that when Territory assignments change I can update a custom field on the User object with the assigned territory.

 

Can't seem to write triggers on the UserTerritory object.

 

Workaround is batch apex to update all users on some regular schedule, but I'd really like a better solution.

 

Any suggestions?

I'm hoping there's a Lotus Connector guru out there for me!

 

I have the Lotus Connector completely set up and synching for one user to their Lotus Calendar. Works great.

 

What I want to do is point the synch to a DIFFERENT calendar that this person has access to. (It's a shared calendar that she owns - I want to dump events in there and not clog up her personal calendar with them.)

 

NO IDEA WHERE TO SET THIS UP!

 

Any ideas?

 

Thanks in advance,

Emily

Hi all!

 

I've been trying to get Outlook 2010 (and) 2003 to work with Enterprise Ed. Salesforce, and have almost everything working except when I try to sync multiple calendars in Outlook (both 2010 and 2003). 

 

It simply ignores all of them and goes through the paces of pretending to send something, but nothing ever does. I've even tried to recreate it and have successfully by adding a second Calendar to an existing-working copy of Outlook. 

 

All my single-calendar instances are importing/exporting fine; but any with 2 or more Calendars in Outlook are screwed. I can manually tell it to sync, I can try to select one of the folders in the options but nothing ever sticks. 

 

Research has shown me that this integration has been an issue since 2006?! 

 

If anyone knows a solution or work-around (tried consolidating into a new "Master" Calendar but it still doesn't work), please let me know!

 

Thanks!

Hi,

 

   I am working on one workflow which sends out some notfication email to user depending on some data from opportunity.

 

   One of the triggering rule is ...the Opportunity Amount > 15000 USD.

   Since the currency in the opportunity varies, it could be USD or maybe not.

   How can i conver the Opportunity Amount in other currency into USD by using formula?...

 

 

We have implemented Single Sign-on(SSO) with a bit of a difference, Reduced Sign-on(RSO).  The difference is that with SSO, you don't have enter in any credentials when you double click the SFDC icon on your desktop, but with RSO, you are taken to a custom Login webpage where you have to re-enter in your Active Directory credentials.  

 

So the issue is that when an email alert goes out to the user, the user clicks on the link displayed on the email, but is taken to the native login screen (https://login.salesforce.com) and not our custom login page.  The user is highly confused on what credentials to enter in and gets frustrated with the invalid password attempts.  

 

We cannot redirect everyone on the network going to the https://login.salesforce.com URL to go to our custom login page as the Administrator of SFDC are not RSO enabled.

 

What could I do for the users that are RSO enabled and click on the email link and expect to find the correct login page?

 

Regards,

Shaveen.

South Africa.

Is the Lotus Connector supported in a sandbox environment?  We have everything installed and configured but can't get logged in after typing in the username and pwd in the Salesforce Options.

 

 

  • January 08, 2010
  • Like
  • 0
Hi,

I've written a wizard for updating a custom object.

What I cannot see to do is call the wizard with a parameter that - when passed - will set the an object variable within the wizard.

For example. i have a custom object; Flight__c. On a particular flight's detail page, I want to add a button that will call a custom visualforce page with that flight's id passed as a parameter. eg: na6.salesforce.com/apex/testpage?id=00000SA1Q

In that page - testpage - there is a form that will allow some of that record's values to be edited:

Code:
<apex:page controller="bookingWizController">
  <apex:sectionHeader title="Confirm Flight Booking" subtitle="Step 0 of 7"/>
    <apex:form >
      <apex:pageBlock title="Define Flight Name" mode="edit">
        <apex:pageBlockButtons >
            <apex:commandButton action="{!step1}" value="Next"/>
        </apex:pageBlockButtons>
        <apex:pageBlockSection title="Test set Flight">
            <apex:outputField id="flight" value="{!flight.name}"/>
        </apex:pageBlockSection>
        <apex:pageBlockSection title="Test pick account">
            <apex:inputField id="account" value="{!flight.Flight_Account__c}" required="true"/>
        </apex:pageBlockSection>        
        <apex:pageBlockSection title="Test pick dep airport">
            <apex:inputField id="dep_airport" value="{!flight.Flight_departure_airport__c}" required="true"/>
        </apex:pageBlockSection>     
        <apex:pageBlockSection title="Test pick arr airport">
            <apex:inputField id="arr_airport" value="{!flight.Flight_arrivals_airport__c}" required="true"/>
        </apex:pageBlockSection>
    </apex:pageBlock>
  </apex:form>
</apex:page>

and the controller get:

Code:
   public Flight__c getFlight() {   
      if(flight == null) flight = new Flight__c();
      return flight;
   }

 
and the rest of the methods are for various 'prev', 'next' and 'save' buttons - together with getters and setters for other objects. I just can't see where the flight can be initially set from the id paramater.

I'm probably missing something obvious - so a pointer would be really appreciated.

Thanks
 

  • September 20, 2008
  • Like
  • 0
I was told by the salesforce customer service team that it was possible to create many-to-many relationships between activities and custom objects.

I have attempted to implement this relationship but I am unable to select activites as a related object for the junction object to relate to, in order to form one of the master-detail relationships that would make up the many-to-many relationship.

Is there something I am missing here that would enable me to create the master-detail relationship?