I'm having SAP HANA studio & developing an addon using C# in SAP B1. I want to know how to read multiple results from stored procedure? I used recordset
string Query = @"call ""P_TESTGMRMPLAN"" ('"+PlanId+"')";
oRset.DoQuery(Query);
Is it possible using recordset? How? If no, then any alternate way for this or could you please give me sample example?