Week difference
The following is a function module that helps you calculate the number of weeks between two dates.
FUNCTION zweek_difference.
*"----------------------------------------------------------------------
*"*"Local interface:
*" IMPORTING
*" REFERENCE(DATE1) LIKE SCAL-DATE DEFAULT 12312004
*" REFERENCE(DATE2) LIKE SCAL-DATE DEFAULT 01012005
*" EXPORTING
*" REFERENCE(DAY_DIFF) TYPE I
*" REFERENCE(WEEK_DIFF) TYPE I
*"
*" Written By: Offshore Team (INDIA)
*"----------------------------------------------------------------------

**Data Declaration

DATA week1 LIKE scal-week.
DATA week2 LIKE scal-week.
DATA date_st LIKE scal-date.
DATA day LIKE scal-indicator.
DATA date_diff(5) TYPE n.
DATA date_change TYPE sy-datum.

**To get the Week of Start Date

CALL FUNCTION 'DATE_GET_WEEK'
EXPORTING
date = date1
IMPORTING
week = week1
* EXCEPTIONS
* DATE_INVALID = 1
* OTHERS = 2

.
IF sy-subrc = 0.

**To get the First Day of the week from Start Date

CALL FUNCTION 'WEEK_GET_FIRST_DAY'
EXPORTING
week = week1
IMPORTING
date = date_st
* EXCEPTIONS
* WEEK_INVALID = 1
* OTHERS

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

= 2
.
IF sy-subrc = 0.

ENDIF.

ENDIF.

date_diff = date2 - date_st.

day_diff = date_diff MOD 7.
week_diff = date_diff DIV 7.

IF ( ( day_diff > = 1 ) AND ( day_diff < 7 ) ).

week_diff = week_diff + 1.

ENDIF.

date_change = date2.

IF day_diff = 0.

CALL FUNCTION 'DATE_COMPUTE_DAY'
EXPORTING
date = date_change
IMPORTING
day = day.

IF sy-subrc = 0.

IF day = 1.
week_diff = week_diff + 1.
ENDIF.
ENDIF.

ENDIF.

ENDFUNCTION.

This was first published in July 2004

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.