We are trying to execute a stored procedure to return five records to a recordset.
In VB debug mode the very first execute does not return anything, however retrying the execute (from the debug window ) does return the records.
can anyone suggest a way to invoke the command.execute from within the item validate event please?
Thanks,
Indika
Hi I am also having difficulty getting a stored procedure to execute...
How do you execute the command object??
I have tried creating a recordset and executing the command object through it to no avail...
Here is basically what i want to do (c#):
SAPbobsCOM.Recordset rs = (SAPbobsCOM.Recordset)pCmp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
rs.Command.Name = "MyStoredProcName";
rs.Command.Execute();
Add a comment