Application Development and Automation 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: 
Read only

Edit ABAP program using ABAP code

Former Member
0 Likes
523

Hi All,

I'm working on an utility which identifies a list of programs that has Nested loop and automatically modifies the nested loop part of the code to use a parallel cursor logic.

Is it possible to edit an ABAP program using ABAP code. I'm struck on logic part. Any ideas/suggestions?

With regards,

Bhaskar R

1 ACCEPTED SOLUTION
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
482

Hi Bhaskar

You can use the combination of Read Report to load the report into internal table and then after code modification in ITAB use Insert Report.

For more details read F1 help

Nabheet

2 REPLIES 2
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
483

Hi Bhaskar

You can use the combination of Read Report to load the report into internal table and then after code modification in ITAB use Insert Report.

For more details read F1 help

Nabheet

Read only

0 Likes
482

Thanks Nabheet. I checked for the help document and its helpful.