[SalesForce] Avoid record type selection with URL button

I'm creating a url button to avoid the record type selection:

enter image description here

This is the code:
{!URLFOR($Action.Case.NewCase ,null ,[RecordType="01220000000Q3cy"])}

The problem is that i'm still getting the page record type selection.

Could you help me ?

Thanks in advantage for any advice.

Best Answer

Use the following syntax:

{!URLFOR($Action.Case.NewCase, null, [p3='012............', save=1], true)}

This selects the record type to use (p3=record-type-id), and continues to the edit page (save=1).

Related Topic