• SujitMandal
  • NEWBIE
  • 0 Points
  • Member since 2010
  • Salesforce Architect


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 7
    Replies

Hello All,

 

We are using standard opportunity details page for displaying the opportunity. But for creating and editing an opportunity we are using custom visualforce page. Hence inline editing for opportunity field (stage) no longer working. I want to achieve this functionality in standard opportunity details page. How this would be possible. Please help me in this matter.

 

Thanks

Alex

Hi,

 

 

I have a custom field on task object.i have also create a report including that custom field,Now i want to search some value based on that custom field in report.

 

can any one help me for this.

 

thanks in adv.

Hello,
I created a very simple trigger to add a Note when a Lead is created. The Note is not getting added, what am I doing wrong? (Code below) Is it not working because the Lead is not yet created? With an After Insert this shouldn't matter though. Notes are turned on and are working to manually create them.
Thanks,
Ryan
trigger AddNote on Lead (after insert) {
	List<Note> addnte = new List<Note>();
        for(Lead lds : Trigger.new){
            Note addedntes = new Note();
            addedntes.ParentId = lds.Id;
            addedntes.Body = lds.Sales_Notes__c;
            addedntes.Title = 'Creation Note';
            addnte.add(addedntes);
        }
    if(addnte.size()>0){
        insert addnte;
    }
}

 

Hi,

 

I have used the SOQL OFFSET clause in one Query my Developer Account but it will give error 

 "SOQL OFFSET clause is not supported in this organization"

 

I want to know more about it ...

 

Anybody knows..?

Hello All,

 

We are using standard opportunity details page for displaying the opportunity. But for creating and editing an opportunity we are using custom visualforce page. Hence inline editing for opportunity field (stage) no longer working. I want to achieve this functionality in standard opportunity details page. How this would be possible. Please help me in this matter.

 

Thanks

Alex

Hi,

 

 

I have a custom field on task object.i have also create a report including that custom field,Now i want to search some value based on that custom field in report.

 

can any one help me for this.

 

thanks in adv.

Hi,

I have a situation where I need to dynamically set the default tab in a tab panel. I have a parameter in my controller that I'm trying to use but for some reason the default tab isn't being set. If I hard code the name of the tab it works but once I try to use a visual force parameter the default tab doesn't get set properly. Here's sample code that illustrates the problem:

Code:
public class TabTest {


 public String ActiveTab {get; set;} 
 
 
 public TabTest() {
  this.ActiveTab = 'Tab2'; 
 }


}

Code:
<apex:page controller="TabTest">
 <apex:tabPanel switchType="client" selectedTab="{!ActiveTab}" id="slipTabPanel">
    <apex:tab label="Tab 1" name="tab1" id="tab1">
      Tab1
    </apex:tab>
    <apex:tab label="Tab 2" name="tab2" id="tab2">
      Tab2 
    </apex:tab>
    <apex:tab label="Tab 3" name="tab3" id="tab3">
      Tab3
    </apex:tab>
 </apex:tabPanel>
</apex:page>

 If I hard code to selectedTab="tab2" then it works fine but if I try to use a controller parameter it doesn't work. Any ideas what I might be doing wrong?
 

  • September 10, 2008
  • Like
  • 0
Hi,
 
According to help if i want to make my account name unique i need to make sure my syntax is "name" in validation rules. But it doesnt seems to work as validation rules will only return true/false. Did I make any mistake? Please help me.
 
Thanks
 
 
 
 
  • April 11, 2008
  • Like
  • 0
I'm new at this, so please be patient.

I've been reading other threads about creating a hyperlink, using an image for a button, and I'm having problems implementing this. Here's what I'm trying to do: I have a custom object called Change Management. I'd like to create a button/hyperlink that when clicked adds this record to a shared calendar. When it creates the event on the calendar it needs to use a custom field in Change Management for start date/time and end date/time. Can anyone show me the way?

Thanks much
  • October 16, 2006
  • Like
  • 0