‎2007 Jun 06 1:11 PM
Hi
Is there any Function Module for Getting the latest selected dates from table.
‎2007 Jun 06 1:15 PM
Hi,
You can retrieve the data in an internal table itab and then
sort itab by < date field> decending. then
read itab index 1.
u will get latest created date
regards,
sudha
‎2007 Jun 06 1:15 PM
Hi,
You can retrieve the data in an internal table itab and then
sort itab by < date field> decending. then
read itab index 1.
u will get latest created date
regards,
sudha
‎2007 Jun 06 2:22 PM
Hi,
Other option is retrieve the data in an internal table and then,
DESCRIBE TABLE ITAB LINES N.
READ ITAB INDEX N.
Regards,
SG
‎2007 Jun 06 2:34 PM
Either u have to go with
Select Max ( ) ...
or after fetching the data into ur internal table
sort itab by date descending time descending .
this will fetch the latest records .
Vijay