Application Development 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: 

convert weekdays to calendar days

Former Member
0 Kudos

Hello friends,

I have a requirement to convert week days to calendar days.

Is there any way or any function module available to convert no of week days to no of calendar days.

for example: 6 week days means... 8 calendar days ..

Pls help me.

Thanks in advance.

Regards

Raghu

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Not sure of any Function Module but you do it simply like this,


week = week_days DIV 5.
days = week_days MOD 5.

cal_days = ( week * 7 ) + days.

2 REPLIES 2

Former Member
0 Kudos

Hi,

Not sure of any Function Module but you do it simply like this,


week = week_days DIV 5.
days = week_days MOD 5.

cal_days = ( week * 7 ) + days.

0 Kudos

Thanks Ankesh.

problem Solved.