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: 

Which is Better in Performancewise?

Former Member
0 Kudos

Hi Guys,

In context of ABAP HR, Which Technique is better for selecting Data (Performance wise)?

1) Use of Provide / EndProvide OR

2) Use of Macro like rp_provide_from_last

Kindly reply with suitable reason.

Thanks,

Ravin

1 ACCEPTED SOLUTION

Former Member
0 Kudos

>

> Hi Guys,

>

> In context of ABAP HR, Which Technique is better for selecting Data (Performance wise)?

>

> 1) Use of Provide / EndProvide OR

> 2) Use of Macro like rp_provide_from_last

>

> Kindly reply with suitable reason.

>

> Thanks,

> Ravin

Hi,

Accoding to my knowledge

1. PROVIDE ENDPROVIDE is like Loop Endloop

2. If you want to retrieve the latest record then you can go with

rp_provide_from_last.

5 REPLIES 5

Former Member
0 Kudos

Good way is...

Use of Macro like rp_provide_from_last

Former Member
0 Kudos

>

> Hi Guys,

>

> In context of ABAP HR, Which Technique is better for selecting Data (Performance wise)?

>

> 1) Use of Provide / EndProvide OR

> 2) Use of Macro like rp_provide_from_last

>

> Kindly reply with suitable reason.

>

> Thanks,

> Ravin

Hi,

Accoding to my knowledge

1. PROVIDE ENDPROVIDE is like Loop Endloop

2. If you want to retrieve the latest record then you can go with

rp_provide_from_last.

0 Kudos

Yes, you are right but performance wise which is better one?

Former Member
0 Kudos

Hi Ravin,

RP_PROVIDE_FROM_LAST

Regards,

Chandra Sekhar

Former Member
0 Kudos

Thanks to all.