You need to sign in to do that
Don't have an account?
Rakesh S
Condition with custom button
Hi All,
I have two objects like Event and Registration. In both objects are having invoice as related list. From both objects, i want to create new Invoice.
So that i want to create new custom button on invoice using URL with help of IF condition. because depending on object clicking that value should be auto populate field in new invoice page.
getting error like " URL No Longer Exists " and Address Bar showing like this: https://na16.salesforce.com/servlet/if(a04j0000009RESq)%7Bwindow.alert(You%20must%20populate%20the%20Field%20before%20using%20this%20button);%7Delse%7B/a0o/e?CF00Nj0000000OfdG=R-00103&CF00Nj0000000OfdG_lkid=a04j0000009RESq&retURL=%2Fa04j0000009RESq}
i tried like this
if({!Registrations__c.Id})
{
/a0o/e?CF00Nj0000000OfdG={!Registrations__c.Name}&CF00Nj0000000OfdG_lkid={!Registrations__c.Id}&retURL=%2F{!Registrations__c.Id}
}else{
/a0o/e?CF00Nj0000000OfdG={!Event__c.Name}&CF00Nj0000000OfdG_lkid={!Event__c.Id}&retURL=%2F{!Event__c.Id}
}
I appreciate your help.
Thank you.
Rakesh
I have two objects like Event and Registration. In both objects are having invoice as related list. From both objects, i want to create new Invoice.
So that i want to create new custom button on invoice using URL with help of IF condition. because depending on object clicking that value should be auto populate field in new invoice page.
getting error like " URL No Longer Exists " and Address Bar showing like this: https://na16.salesforce.com/servlet/if(a04j0000009RESq)%7Bwindow.alert(You%20must%20populate%20the%20Field%20before%20using%20this%20button);%7Delse%7B/a0o/e?CF00Nj0000000OfdG=R-00103&CF00Nj0000000OfdG_lkid=a04j0000009RESq&retURL=%2Fa04j0000009RESq}
i tried like this
if({!Registrations__c.Id})
{
/a0o/e?CF00Nj0000000OfdG={!Registrations__c.Name}&CF00Nj0000000OfdG_lkid={!Registrations__c.Id}&retURL=%2F{!Registrations__c.Id}
}else{
/a0o/e?CF00Nj0000000OfdG={!Event__c.Name}&CF00Nj0000000OfdG_lkid={!Event__c.Id}&retURL=%2F{!Event__c.Id}
}
I appreciate your help.
Thank you.
Rakesh
if({!Registrations__c.Id})
{
window.open("/a0o/e?CF00Nj0000000OfdG={!Registrations__c.Name}&CF00Nj0000000OfdG_lkid={!Registrations__c.Id}&retURL=%2F{!Registrations__c.Id}")
}else{
window.open("/a0o/e?CF00Nj0000000OfdG={!Event__c.Name}&CF00Nj0000000OfdG_lkid={!Event__c.Id}&retURL=%2F{!Event__c.Id}")
}