• ladocelot
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 11
    Replies

Hi, is possible return an mp3 in the response of a httpResponse ?

 

thanks

 

greetings

Hi, Customer Portal is available for force.com projects or for salesforce.com only?

 

thanks

Hi, is possible pass parameters to console?

 

thanks

greetings

How can i unlock, using Apex, a record that was locked by a approval process ?

 

thanks

Hi, i have a doubt.

 

User '1' receives a call from a customer and creates a case. Then he transfers the call to user '2'.

would be possible to open the case created by User '1' automatically when User '2' press the "Complete transfer button" in SoftPhone?

 

Thanks

 

Greetings

Hi, Is possible to insert records in a custom object from an email?

Like the email to case works.

 

 

 thanks

greetings

Hi,

 is there any way to approve an object from an email by a person being not a salesforce's user? 

 

 

 

Thanks

greetings

Hi, i must clone a page like the page that Salesforce shows to select a recordType.

 

How can i put the head (look the picture) in my page ?

 

http://img.photobucket.com/albums/v205/ladocelot/Dibujo.jpg

 

 

thanks

Hi, i have many Triggers before insert Account. It was executed when a new Account is inserted in my SF platform
but not when i converted Leads to Accounts.
 
 
Hope than help,
 
Thanks

I created a list button that opens a popup VF page which contains a form. After the form is saved, I want the popup to close and for the parent window to be refreshed. The refresh works great on FireFox and Chrome, but IE8 is somehow opening the parent window in a new window, instead of just refreshing the existing window. I've gone through various methods of opening a new window (window.showModalDialog, window.open, etc) and have settled on window.open() in my list button. I also found a great piece of code on the forum that returns values from my controller, closes my pop up and refreshes the parent window. 

 

Why is IE8 opening a new window instead of just refreshing the existing one?

 

List button javascript:

 

window.open('/apex/quickCreateProduction?id={!Contact.Id}',"window","width=460, height=375");

 Javascript in VF page (popup):

 

<script language="javascript" type="text/javascript">
if("{!$Request.success}" == "true") {
	parent.window.close();
	parent.window.opener.location.href = "/{!$Request.id}";          
}
</script>

 

Save in custom controller (after success):

 

		PageReference curPage = ApexPages.currentPage();
		curPage.getParameters().put('success','true');
		curPage.getParameters().put('id',Apexpages.currentPage().getParameters().get('id'));
		curPage.setRedirect(true);
		return curPage;

 

I could definitely use some help. Thanks in advance.

 

Adriel

  • August 20, 2010
  • Like
  • 0

Hi, is possible return an mp3 in the response of a httpResponse ?

 

thanks

 

greetings

Hi, Customer Portal is available for force.com projects or for salesforce.com only?

 

thanks

Hi, is possible pass parameters to console?

 

thanks

greetings

Hi to all,

 

What is the difference between Salesforce CRM platform & force.com platform????

 

Both giving Free,Enterprise & Unlimited Edition...

 

then What is the difference????

 

Thanks,

Krishnamoorthi.N

 

 

Hi, Is possible to insert records in a custom object from an email?

Like the email to case works.

 

 

 thanks

greetings

Hi,

 is there any way to approve an object from an email by a person being not a salesforce's user? 

 

 

 

Thanks

greetings

In testmethod I inserted a account with Name field.Its showing the following message

 

System.DmlException: Insert failed. First exception on row 0; first error: DUPLICATE_VALUE, duplicate value found: <unknown> duplicates value on record with id: <unknown>

 

But I am able to create Account record through tab.

  • February 26, 2009
  • Like
  • 0
Is there any limitiation to the number of times you cna refresh your APEX sanbox? Could not find this in the documentation.
 
Thanks!