Basic QA's
1. Which One Will Execute First JavaScript or Business Rule as per the Execution order ? Ans: JavaScript will run first the reason behind it Business rule will only work after it gets converted to JavaScript File ( which happens in background ). So basically , In between JavaScript and Business Rule , both gets processed only as JavaScript File. Eventually JavaScript doesn't require any conversion to JavaScript format. Follow the YouTube Link : https://youtu.be/0hGWTJxTaD8?si=6Co4B-lDxaxJXA7z 2. Which one will Execute first Work Flow or plugin as per Steps and Rank? Ans: Work flow and Plugin both runs in Synchronous(Realtime) and Asynchronous(Background). By following Steps and Rank in Plugin and Work Flow, Synchronous plugin execution order or rank starts from "1" by default and Synchronous Work Flow (Real Time Work Flow) rank starts from "0" - Zero. So by default value the Synchronous Work Flow will execute first where as Synchronous plugin will execute nex...