Hi,
This is the code I wrote in my InfoPackage for delta load data . 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