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

Last Weeks Date

Former Member
0 Likes
377

Hey folks,

I need the last week's date how wud i get it .

Regards

Rock.

1 ACCEPTED SOLUTION
Read only

matt
Active Contributor
0 Likes
360
DATA: l_thisdate TYPE d,
      l_lastweek TYPE d.

l_thisdate = sy-datum.
l_lastweek = l_thisdate - 7. " 7 days in a week

matt

2 REPLIES 2
Read only

former_member182354
Contributor
0 Likes
360

Can you be a bit more descriptive....

Regards,

Raghav

Read only

matt
Active Contributor
0 Likes
361
DATA: l_thisdate TYPE d,
      l_lastweek TYPE d.

l_thisdate = sy-datum.
l_lastweek = l_thisdate - 7. " 7 days in a week

matt