Convert Data From Global Temporary Table to Excel

I am trying to get a temporary table data by executing a stored procedure. This stored procedure is responsible to create a temporary table, insert some hard cored values (id and name as fields) and then dropping the temporary table. Before dropping Inam using select all statement so to get my data before dropping the table. But somehow I got the data which is similar to this,

{

{ id = 1, name = Abc },

{ id = 1, name = Pqr },

{ id = 1, name = Uvw },

{ id = 1, name = Xyz },

{ id = 1, name = Ijk }

}

It looks like 2D list of map. can anyone help me in binding the data to excel using Export DataStoreEntity to Excel and Execute Stored Procedure smart services.

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data