We are in Apps10 UPD6 and looking at using the Word Macro functionality (that came out in UPD4) to create our proposal documents for Business Opportunity.
Right now - the GET call is prompting us for a database user ID and password. We actually use ADFS for our user validation, so users don’t have DB IDs.
Does anyone know how to set this up for system to system authentication so the user running the macro does not have to login?
The VB code in the Word macro is below
' Make a request for the URL.
Set objXmlHttp = New MSXML2.XMLHTTP60
objXmlHttp.Open "GET", strUrl, False
Thanks