cancel
Showing results for 
Search instead for 
Did you mean: 

Reporting in ABAP WebDynpro

Former Member
0 Kudos

Hi,

Anybody can enlighten me with some ideas/sample on how can we transform back-end (SAP R3) reporting to front-end (ESS)?

What I have in mind is,

1. Develop a ABAP WDP in front-end to SUBMIT the back-end ABAP report and WRITE to MEMORY LIST

2. ABAP WDP to report in ALV base on report output saved in MEMORY.

The reason I am doing this is to minimize the coding effort and redundancy for the same coding.

Please help.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Ashish,

Your idea is no different compare to mine. Anyway, thank you for helping.

I have found a way myself by using IMPORT...TO MEMORY ID and EXPORT...FROM MEMORY ID.

ashish_shah
Contributor
0 Kudos

Hi,

To achieve this , you can try this option.

- Call your report from WD Component , may be from View component's WDDOINIT / on click of a button.

- Make sure to call this report in Background mode and also there should not be any dialog processing happening in your report

- Suppress any messages thrown in the reports , else you will get a dump.

- Since you just want to write to memory list and do not want to show any output to the user , the above steps should be sufficient for your requirement.

Regards,

Ashish Shah