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

difference between two dates

Former Member
0 Likes
332

experts,

My requirement is I hav eo get diffenrence between tow dates interms of weeks and days.

for example '2 weeks and 2 days' like that.

please help me in ths regard.

thanks

Vijaykumar Reddy. S

1 REPLY 1
Read only

former_member194669
Active Contributor
0 Likes
316

Hi,

Check this


REPORT  Zars.

Data : date type i.
data : days type i.
data : week type i.

data : fdate like sy-datum.
data : tdate like sy-datum.

fdate = '20070829'.
tdate = sy-datum.

date = tdate - fdate.

week = date div 7.
days = date MOD 7.

break-point.

a®