• Kalyani Jagdale 1
  • NEWBIE
  • 10 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 6
    Replies
How can i retrieve account records in which zero contacts available ?

Please reply, how can i achieve this?

Thanks in advance.
How can we create input window after clicking on the command button?
Can anyone help me?
Hello all,
I have created one button on the VF page and I need one thing when i click on the button.The scenario is as follow: After clicking on the button ,i am having one field one field(Quantity- 100) on parent object . I need to split the Quantity field(50,50) of parent object and assign that quantity into child object.

Please help me, if you are havng any idea.

Thanks in advance.
trigger trigger52 on India__c (after insert) {
  list<san_francisco__c> con =new list<san_francisco__c>();  

    for(India__c h : trigger.new){
     san_francisco__c s = new san_francisco__c();
      s.Name=h.Name;
        s.Company__c=h.Company__c;
        s.Mobile__c=h.Mobile__c;
           s.Email__c=h.Email__c;
        con.add(s);
        
        
    }
    insert con;
}
How can we create input window after clicking on the command button?
Can anyone help me?

Hi,

 

I'm trying to create a publisher action in Opportunity to create a Case. I have followed all the instructions as per user guide including the troubleshooting, but it is still not showing on the opportunity page layout (even though I have dragged it on to the page layout). Any ideas on what else I'm missing?

 

Thanks.

  • June 06, 2013
  • Like
  • 0

Hi,

 I am new in Salesforce...I want to design a pop up window. The window will appear after save button is hit which will show the values those an user has entered as input. After the pop up comes out then the user will click the ok in pop up and the page will be redirected to the object view page.

 

Now how can I implement it throgh java script or any other possible way.

Can u pls provide some sample coding for it.

 

Thanks in advance,

  • September 28, 2011
  • Like
  • 0