I would like to populate start and end date for time dependent master data using ABAP. BI help / documentation says that it can be done with ABAP as mentioned below:
InfoPackage
Selection routines for selecting the from and to date for time-dependent data on tab page 'Update Parameters'.
form compute_time_dependent_dates
changing p_datefrom type d
p_dateto type d
p_subrc like sy-subrc.
$$ begin of routine - insert your code only below this line-
p_datefrom =
p_dateto =
*...
p_subrc = 0.
$$ end of routine - insert your code only before this line-
ENDFORM.
...
I am unable to find the ABAP routine section or window on the update tab in the InfoPackage. Can someone let me know if i am looking at the right tab in the InfoPackage?
Note: I can see ABAP routine section or window on the extraction tab, where we can write code for form compute_flat_file_filename.......
Thanks in advance.
RK.