cancel
Showing results for 
Search instead for 
Did you mean: 
yvathumilli
Occasional Member - Level 2

Need help in creating a deep link url to directly navigate to the Expense Report via IDP

Hi All,

 

We are sending few alerts to Expense Report approvers when they have pending approvals.
Is there a way to generate a link which directly navigates the approval page for a specific report while still utilizing the SSO (through our IDP)  ??

I tried this https://developer.concur.com/api-guides/expense/deeplink-url.html but still it takes to the login screen and does not go through the IDP that is configured. 

 

Thanks in Advance.

Yaswanth Datta

 

1 REPLY 1
MichielS
New Member - Level 1

Hi Yaswanth,

I'm not sure if this is going to work but in the past I had that issue when linking from excel to a different application through SSO

I used a custom function to call the link through shell (in vba) that way it would go through the SSO and open the direct link. I hope this helps.

 

Public Sub OpenURL(ByVal sURL As String)

'https://docs.microsoft.com/en-us/windows/win32/shell/shell-shellexecute
Dim oShell As Object

Set oShell = CreateObject("Shell.Application")
oShell.ShellExecute sURL, "", "", "open", 1
If Not oShell Is Nothing Then Set oShell = Nothing

 

End Sub