‎2007 Jul 12 10:26 AM
I have searched a lot but i am not able to fine the existing function module if it exist which return for the series of date that are in an internal table and sorted too, is in series or not.
Here in series means that continuous date.
can anyone find the function module which returns this. I am checking for the function module which is applicable for only working days date, that is from Monday to Friday.
‎2007 Jul 12 10:35 AM
Hi Pritam,
I don't think there is such FM.
just write a small code something like this..
LOOP AT ITAB.
itab-date1.
READ ITAB into itab2 with index (sy-tabix +1)
if itab2-date itab-date = 1.
‎2007 Jul 12 1:34 PM
Yeah Atish,
but what i think is this is a standard requirement for the HR. where time booking is the most important thing. If it is not there in SAP we can suggest SAP to add this function module in SAP Package. First we need to confirm it whether it is there or not.
Thanks
Pritam
‎2007 Jul 12 10:42 AM
Hi
i think there is no such function module.
But you can do it manually
First sort the internal table based on the date
then read the internal table based on your requirement
Regards,
Prasant
*reward all helpful points