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

FUNCTION MODULE

Former Member
0 Likes
461

Hi

Any one has an idea wat would be the FM in CRM to get the future date for the given date.

Thanks in advance

Sameer A M

1 ACCEPTED SOLUTION
Read only

FredericGirod
Active Contributor
0 Likes
442

Clarify your question

4 REPLIES 4
Read only

FredericGirod
Active Contributor
0 Likes
443

Clarify your question

Read only

0 Likes
442

Sorry for the delay...as this the 1st time I was unaware of the responce.

I have a FM in R/3 DATE_IN_FUTURE, which gives the future date for the secified date and days. I need a find a similar FM in CRM.

Please help.....

Read only

0 Likes
442

If you do not need to check any calendar for working days, then you can simply add the number of days to sy-datum.

data: datum type sy-datum.

<b>datum = sy-datum + 10.</b>

write:/ datum.

Doing so will add 10 days to today's date.

Regards,

Rich Heilman

Read only

0 Likes
442

Thanks a lot

That did it