Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Fetching Data from a transaction directly

Former Member
0 Kudos

Hi ,

I need to know how can I call a transaction and pick data directly from there for further processing in my report.

Can you please help for the same?

2 REPLIES 2

Former Member
0 Kudos

Hi,

I couldn't understand your problem exactly. But, what I suggest for your problems is , you have to go for BDC recording and you can retrive data from each field. But, it is worst and complex solution for your problem. So, I need broad explanation.

Venkat, IBM

0 Kudos

Cant you use :


    SUBMIT 'report-name' 
      WITH 
      WITH 
      EXPORTING LIST TO MEMORY
      AND RETURN.
 

After that, pick up the list fro memory using:

CALL FUNCTION 'LIST_FROM_MEMORY'