Skip to Content
0
Former Member
Sep 10, 2007 at 04:26 PM

Infopackage Routine

18 Views

Hi,

I need Help With this code...I posted the same quetion on ABAP General forum...but got no replies....Please help me out...

This is the code I wrote in my InfoPackage for delta load . I am trying to load only those records which are created today.Please let me know If this is correct or not?

data: l_idx like sy-tabix.

read table l_t_range

with key fieldname = 'Create_dt'.

l_idx = sy-tabix.

l_t_range-high = SY-DATUM.

l_t_range-sign = 'I'.

l_t_range-option = 'EQ'.

modify l_t_range index l_idx.

p_subrc = 0.

Thanks