You can use FM DATE_TO_DAY.
DATA: ld_day TYPE c.
CALL FUNCTION 'DATE_TO_DAY'
EXPORTING
date = "your date variable here"
IMPORTING
weekday = ld_day.
And please search the forum beforehand to get the pointers first !
Cheers!
Suyash