‎2007 Mar 14 6:05 PM
Hi All,
Here is my test code. I want to test/execute and see the output. Can anybody tell how to go about it.
method EXTRACT_DATA .
DATA: start_date type sy-datum,
end_date type sy-datum,
position(8) type n.
select single empneededby from hrp9007 into start_date
where plvar eq '01'
and istat eq '1'
and begda le sy-datum
and endda ge sy-datum
and reqnr eq 297006
and status eq '99'.
endmethod.
Thanks
Srinivas
‎2007 Mar 14 6:15 PM