2007 Oct 23 6:01 AM
Hello experts!!do you know any function module that computes the number of working days.thanks!!
Hello experts!!do you know any function module that computes the number of working days.thanks!!
2007 Oct 23 6:04 AM
Hi,
Find the following
BKK_FUNCTION_GET_WORKDAYSHIFT
K_ABC_WORKDAYS_FOR_PERIODS_GET
WDKAL_CALC_CONS_WORKDAYS_PER
WEEK_GET_NR_OF_WORKDAYS
WLB3_GET_NUMBER_OF_WORKDAYS
Hope this is helpful to u.
Assign points if useful.
2007 Oct 23 6:04 AM
2007 Oct 23 6:04 AM
2007 Oct 23 6:04 AM
2007 Oct 23 6:05 AM
2007 Oct 23 6:05 AM
Hi,
check this out -
Use FM RKE_SELECT_FACTDAYS_FOR_PERIOD
You can use this FM RKE_SELECT_FACTDAYS_FOR_PERIOD.
data: begin of itab occurs 0.
include structure RKE_DAT.
data: end of itab.
data: wa_num type i.
CALL FUNCTION 'RKE_SELECT_FACTDAYS_FOR_PERIOD'
EXPORTING
i_datab = start_date
i_datbi = end_date
i_factid = '01'
TABLES
eth_dats = itab.
describe table itab lines wa_num.
write: / 'Working days between two periods is', wa_num.
Hope this helps.
ashish
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |