Posted: Sat Jan 31, 2009 11:47 am Post subject: Calculate difference between 2 dates in working days
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.
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.