Skip to Content
0
Former Member
Jul 14, 2008 at 06:32 PM

PERFORM usage

31 Views

Hi all,

i need to convert an xml file to internal table, and after that i need to take out different values from that.

i needed to take out 6 different values, but theprocedue of those was same.

find first occurence of 'string' in itab match result mlin.

read table itab index mlin into itab_h.

split itab_h at '<' into temp, temp1.

split temp1 at '>' into final_result.

First i wrote this piece of code for 6 times but then i thought of making it into subroutine.

but after making a subroutine its performance has reduced.

does calling a subroutine afftects performance in any way?

regards

oin