This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
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
This content from the SAP Concur Community was machine translated for your convenience. SAP does not provide any guarantee regarding the correctness or completeness of this machine translated text. View original text custom.banner_survey_translated_text
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