• Gautier Swiercz 7
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hi,

I need to send some data from Salesforce to an external System. I want to use the OutBound message to do this, but I'm not sure of the EndPointUrl.
If i put my wsdl url, is that correct ? 
Exemple :  https://webservicer.myorg.com/UpsertReservataire/my.wsdl

Thanks,
Hi,

I have two buttons on my VisualForce Page, "Save" and "Print".
When i click on "Print", standard navigation printable view is called. Now I just want to hide my buttons when I want to print my document.

Anyone can help me ? 
Thanks in advance.

GS
Hi,

Here my custom button code : 

"{!REQUIRESCRIPT('/soap/ajax/22.0/connection.js')}

var not = new sforce.SObject('Note');

not.Title = '{!Opportunity.StageName}' + '{!Opportunity.Name}';
not.OwnerId = '{!Opportunity.OwnerId}';
not.ParentId = '{!Opportunity.Id}';

result = sforce.connection.create([not]);

if(result[0].getBoolean('success')){
window.location = '/' + result[0].id + '/e';
}else{
alert('Could not create record '+result);
}"

This custom button do that : 
- create a new note related to my current opportunity
- Then, load a new page, with the current note, with the correct title, but when i click on "save", nothing.

Can anyone help me ? 
Hi,

I have two buttons on my VisualForce Page, "Save" and "Print".
When i click on "Print", standard navigation printable view is called. Now I just want to hide my buttons when I want to print my document.

Anyone can help me ? 
Thanks in advance.

GS