M
mpiscoso@gmail.com
Guest
1. Have you tried using the Role-based page assignment? Assuming that Purchase and Sales are user-roles. 2. Have you tried using client-side script to redirect to the correct new page depending on the "type" of page? e.g. Use a picklist (or identifier) on your "base" new page: - onchange of the picklist, redirect the user to page 1 or page 2 depending on type var x = rbf_getPicklistCode('picklist'); if (x == "1") window.location.href = "{!page1#URL}"; else if (x == "2") window.location.href = "{!page2#URL}"; - This would mean that the "base" page would be your jump page towards the two correct pages that a user needs to land on. - The same logic may be used on View Pages and Edit Pages. The process of it is that you would always have a jump page for each type of transaction (new,view,edit). Hope this helps.
Continue reading...
Continue reading...