SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Calculate difference between 2 dates in working days



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> Programming Techniques | Приемы программирования -> Calendar
View previous topic :: View next topic  
Author Message
admin
Администратор
Администратор



Joined: 01 Sep 2007
Posts: 1639

PostPosted: Sat Jan 31, 2009 11:47 am    Post subject: Calculate difference between 2 dates in working days Reply with quote

Code:
FORM CALC_DIFF using p_startdate
                                   p_enddate
                          changing p_days.

  data: day_attributes type table of casdayattr.
* end date must be > start date
  check p_enddate > p_startdate.
* check for working days beween 2 dates
  call function 'DAY_ATTRIBUTES_GET'
    exporting
      factory_calendar = 'GB'
      holiday_calendar = 'GB'
      date_from = p_startdate
      date_to = p_enddate
      language = sy-langu
    tables
      day_attributes = day_attributes.
  if sy-subrc eq 0.
* remove holidays and weekends
    delete day_attributes where freeday eq 'X'.
    describe table day_attributes.
    if sy-tfill ne 0.
      p_days = sy-tfill.
    endif.
  endif.

* subtract 1
  p_days = p_days - 1.
endform. " CALC_DIFF
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> Programming Techniques | Приемы программирования -> Calendar All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.