‎2009 Jan 15 9:22 PM
Hi,
I have an ASP page using Server.CreateObject("SAP.Functions") to connect to SAP ecc 6.0. Does anyone know whether the wdtfuncs.ocx supports unicode? The result i got back from SAP shows English contents correctly but not Cyrillic character. Source code is something like this
Set oSAP = Server.CreateObject("SAP.Functions")
Set oConn = oSAP.Connection
oConn.User = sUID
oConn.Password = sPWD
oConn.Language = "EN"
oConn.Destination = sServer
oConn.Client = iClient
oConn.GroupName = sServer
oConn.MessageServer = sMessageServer
oConn.codepage = "4110"
oConn.Logon 0, True
Set oRFC = oSAP.Add(SAPFunctionModueName)
Set oParam = oRFC.Exports(ParameterName)
oParam.Value = ParameterValue
Set oOut = oRFC.Tables(SAPoutputTableName)
oRFC.Call
The SAP .net connector works well, but in this case i have to use the .ocx file trying to avoid rewriting existing application with .net.
‎2009 Jan 15 9:57 PM