We have a classic ASP site that is hosted on windows server 2003 (32 bit). It has an early version of SAP GUI client installed and from within the asp pages we hook into SAP R4 with a standard call to Set Myobj = CreateObject("SAP.Functions")
, this all works.
We are now porting the app to Windows Server 2012 and we have had to install SAP GUI client version 7 (the earlier client wouldn't install), when the app hits the above line I receive this error message:
ActiveX component can't create object
Can I just install the DLL's from the windows Server 2003 and use RegSVR32 to register them?
If yes what dll's do I need to copy and is there an order to register them?
Or do I have to do something completely different?
try using:
CreateObject("SAP.Functions.Unicode")
source - https://blogs.sap.com/2015/09/18/how-to-use-named-references-of-sap-activex-libraries-in-vba-for-easy-programming/