The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
NicolasArgente
2 years agoValued Contributor
SIC and SAP CreateFunction from ERPConnectStandard20.dll
Hi there!
I am using OS v8.1 and SIC with latest ERPConnectStandard20.dll and the other dlls.
I can connect to SAP and retrieve data using READTABLE.
Now I am trying to use CreateFunction but I am struggling.
In my Smart Integration Function I have this :
Imports System
Imports System.Collections.Generic
Imports System.Data
Imports System.Data.Common
Imports System.Globalization
Imports System.IO
Imports System.Linq
'Added for SAP ERP Connect
Imports Microsoft.VisualBasic
Imports ERPConnect
Imports ERPConnect.Utils
Namespace OneStream.BusinessRule.SmartIntegrationFunction.SAPTest8
Public Class MainClass
Public Shared Function RunOperation() As DataTable
Dim r3Conn = New R3Connection("1.1.1.1", "00", "user", "pass", "EN", "224")
r3Conn.Protocol = ClientProtocol.NWRFC
r3Conn.Open()
Dim r3Func As RFCFunction = r3Conn.CreateFunction("BAPI_MATERIAL_GET_DETAIL")
r3Func.Exports("MATERIAL").ParamValue = "1001"
r3Func.Execute()
Return r3Func.Imports("MATERIAL_GENERAL_DATA").ToTable()
End Function
End Class
End NamespaceAnd in the Connector BR I have this line :
Dim rDto As RemoteRequestResultDto = BRApi.Utilities.ExecRemoteGatewayBusinessRule(si, remoteBusinessRule, remoteFunctionArguments, sicGatewayName, sicRemoteRuleFunction, String.Empty, False, sicTimeout)It is not working as the ToADOTable is not working anymore.
Return r3Func.Imports("TOTALS_SPL").ParamValue.ToADOTable()Can someone help me on this SIF to return the datatable?
And then to make it read by the Connector BR.
Thanks
Problem solved. All my code was fine, the mistake was on the client side. It was missing an error an export field! We had to use ABAP debugger to find out.
Thanks guys!Found the resolution
Dim r3Conn As R3Connection = New R3Connection() r3conn.Protocol = ClientProtocol.NWRFC r3Conn.Open()
9 Replies
- RobbSalzmannValued Contributor II
Hi NicolasArgente , how do you know the datatable is not being returned?
Did you try to assign it from the return value:Dim dataTable as DataTable = rDto.ResultSet - NicolasArgenteValued Contributor
Hi Robb! Yes I tried that too. I believe there is a kind of bug with this new way of doing. FYI, I tried to return all the below :
'Return r3Func.Imports("MATERIAL_GENERAL_DATA").ParamValue.ToADOTable() 'Return r3Func.Imports("MATERIAL_GENERAL_DATA").ToTable() 'Return r3Func.Tables.Item("MATERIAL_GENERAL_DATA").ToADOTable() 'Return r3Func.Tables("MATERIAL_GENERAL_DATA").ToADOTable()On the SAP side, we see the call, but the call is extremely fast. And at the end it returns nothing.
If anyone has ever used CreateFunction on OS v8.0 or 8.1. Please share your code of the SIF.
Thanks - NicolasArgenteValued Contributor
Problem solved. All my code was fine, the mistake was on the client side. It was missing an error an export field! We had to use ABAP debugger to find out.
Thanks guys! - KKGamerNew Contributor III
Hi Nicolas, I have build below code for SIF function. The table can be connected and should have data. But when I using another rule to call SIF function there is no data returned. do you know the reason?
Public Shared Function RunOperation() As DataTable'Build connectionDim r3Conn = New R3Connection(v_host, v_instanceID, v_username, v_password, "EN", v_client)r3Conn.Protocol = ClientProtocol.NWRFCr3Conn.Open()Dim r3Table As New ReadTable(r3Conn)r3Table.TableName = "/BIC/XXXXXXXX"r3table.SetCustomFunctionName("Z_XTRACT_IS_TABLE")r3Table.Addfield("COMPANY_CODE")r3Table.Run()Return r3Table.resultEnd Function- NicolasArgenteValued Contributor
KKGamer It all seems good.
Just for testing, take away the Addfield. And check with the SAP team on their side. Also If they can trace info in the SAP debugger...
- KKGamerNew Contributor III
The ERPConenct code is working in V7 to extract data from same table so i believe it's fine from SAP side. And below is the code I used to call the SIF function, is there anything wrong on return the datatable? Thanks.
Dim rDto As RemoteRequestResultDto = BRApi.Utilities.ExecRemoteGatewayBusinessRule(si, "SAPConnection",Nothing, "sapdevtest", "RunOperation") If (rDto.RemoteResultStatus = RemoteMessageResultType.Success) Then BRAPI.ErrorLog.LogMessage(si,"Connect success") BRApi.ErrorLog.LogMessage(si, "Data Returned: " & rDto.ResultSet.Rows.Count) Dim dt As DataTable dt = rDto.ResultSet Return dt Else If (Not (rDto.remoteException Is Nothing)) Then BRAPI.ErrorLog.LogMessage(si,"Connect failed") Throw ErrorHandler.LogWrite(si, New XFException(si, rDto.remoteException)) End If End If - KrishnaValued Contributor
NicolasArgente - Could you please let me know what are the other DLL's are required apart from ERPConnect ? moreover could you please let me know what was the issue at SAP side ? I am using 8.3 & SIC and similar issue it is not returning any data.
Dim r3Conn = New R3Connection(SAPHost, SAPSysNum, SAPUser, SAPPwd, SAPLang, SAPClient) Dim rfcFunction As New RFCFunction(r3Conn, "FUNNAME") ' Set the import parameters (if any) rfcFunction.Exports("YR").ParamValue = "2021" rfcFunction.Exports("MON").ParamValue = "01" rfcFunction.Execute() Dim data As DataTable = rfcFunction.Imports("TB").ParamValue.ToADOTable() Return data- jwagnerNew Contributor III
Has anyone ever seen this error message when trying to run a remote business rule through ERPConnect? I installed VisualStudio 2013, and I have the rfclib.dll sitting in System32 path. Unsure where to go from here...
---> (Inner Exception #0) ERPConnect.RfcLibraryException: Cannot call classic RFC API. See help for details. Please put a recent 64-bit version of librfc32.dll in your System32 folder (typically C:\Windows\System32). See SAP note 413708. Please make sure you have installed Visual C++ 2013 Redistributable (x64). ---> System.BadImageFormatException: An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B) at ERPConnect.Classic.NativeMethods.RfcResetTraceDir(String newTraceDirectory) at ERPConnect.RFCAPI.ResetTraceDirectory(String path) --- End of inner exception stack trace --- at ERPConnect.RFCAPI.ResetTraceDirectory(String path) at ERPConnect.Classic.ClassicClient.Connect(String connectionString) at ERPConnect.R3Connection.Open(String& connectionString, String& ticket, Boolean& usesLoadBalancing) at ERPConnect.R3Connection.Open() at OneStream.BusinessRule.SmartIntegrationFunction.SAP_SIC_SmartIntegrationFunction.MainClass.RunOperation(String monthName, String yearName, String costUnit) at RunOperation_Proxy(Object , Object[] ) at System.Threading.Tasks.Task`1.InnerInvoke() at System.Threading.Tasks.Task.Execute()<---- jwagnerNew Contributor III
Found the resolution
Dim r3Conn As R3Connection = New R3Connection() r3conn.Protocol = ClientProtocol.NWRFC r3Conn.Open()
Related Content
- 1 year ago
- 2 years ago
- 2 years ago