To check from JavaScript if Dynamics 365 is being accessed from within the USD application or not within the USD application, use the window.IsUSD property.
For example, if we add the code:
if(window.IsUSD == true) { alert("Running from USD"); } else { alert("Not running from USD"); }
And run it within Dynamics 365, we will see:
And in USD:
THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.
IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.
THANK YOU, AND LET'S KEEP LEARNING TOGETHER.
CARL
Hi Carl,
When i am running the code in dynamics 365 ita working fine but if in USD its not working means its throwing alert message like “Not running from USD”.
Please provide your suggestion.
Hi Pari,
Can you try: parent.window.IsUSD?