Hi,
- It is directly not possible. Declare a internal table as the result structure in the global area.
- In the start routine populate the internal table
- In the end routine read that table to populate / move all the data to the result package and clear your internal table.
- In the second case, create a internal table in Global area.
- In the start routine fetch data
- In the field routine read that internal table and populate your value to result.
Thanks.