Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV-report

Former Member
0 Likes
373

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

2 REPLIES 2
Read only

Former Member
0 Likes
357

Hi ,

put like this .

loop at itab where date in s_date.

itab-flag = 'x'.

endloop.

Regards

Peram

Read only

Former Member
0 Likes
357

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.