2007 Jul 18 6:19 AM
I am doing an ALV report . I should check my fileds date
I have to check the material number and put a flag in my report which fall in same date intervals
any suggesttions for this
Regards
I am doing an ALV report . I should check my fileds date
I have to check the material number and put a flag in my report which fall in same date intervals
any suggesttions for this
Regards
2007 Jul 20 5:35 AM
Hi ,
put like this .
loop at itab where date in s_date.
itab-flag = 'x'.
endloop.
Regards
Peram
2007 Jul 20 5:43 AM
Hello Rasheed salman
loop at itab.
check for ur required material number.
if sy-subrc = 0 and date in s_date.
set your flag.
endif.
endloop.
Reward if Helpful.
Regards
--
Sasidhar Reddy Matli.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |