cancel
Showing results for 
Search instead for 
Did you mean: 

Reduce load time of an DTP

venkatesh_veera2
Participant
0 Kudos

Dear Gurus,

I need an example (scenario) to code performance improvements to reduce load time of an DTP.

can someone please explain me in detail as I and not that good at ABAP coding.

Thank in advance.

Venkatesh

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

If source is having more data, then when we load to target, we will get performance issues.

It depends on real time scenario.

Eg 1:

If source having history of records(all the year data), in target if you want to load only current year,

then you have filter at DTP level. So that you can reduce the load time.

Eg 2:

Even if the records are less, when we load the target , if we get performance issue due to, routine at start or end routines, then you need to look for code optimization or Look for Remodeling the flow.

If abap code creates a performance issue, then you can use OO ABAP in start or end routine. By doing this you can reduce the load time.

Eg 3: If you want to look up some DSO when you load the data to the target, then you have to code at start routine level, to delete the entries. so that performance can be improved before it loading to the target.

Regards,

Priya M