2007 Aug 01 9:46 AM
hi all,
i want to utput like based on material creater name , we can display the material details lik no, des, of the particular date
i have writen like SELECT MATNR ERNAM ERSDA FROM MARA INTO TABLE IT_MARA WHERE ERNAM = P_ERNAM AND ERSDA = '2007.06.06' .
but it is not working am not getting the .
2007 Aug 01 9:48 AM
Hi..,,
SELECT MATNR ERNAM ERSDA
FROM MARA
INTO TABLE IT_MARA
WHERE ERNAM = P_ERNAM
AND ERSDA = '20070606' .
Dots should not be there.. in between the date..
The internal storage format is YYYYMMDD.
Remove those dots and try...
regards,
sai ramesh
2007 Aug 01 9:48 AM
SELECT
MATNR
ERNAM
ERSDA
FROM
MARA
INTO TABLE
IT_MARA WHERE ERNAM in ( P_ERNAM , '2007.06.06' ).