Application Development 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: 

Function Module

Former Member
0 Kudos

Hello experts!!do you know any function module that computes the number of working days.thanks!!

6 REPLIES 6

Former Member
0 Kudos

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.

amit_khare
Active Contributor
0 Kudos

'DATE_CONVERT_TO_FACTORYDATE'

DATE_CHECK_WORKINGDAY

Regards,

Amit

Reward all helpful replies.

Simha_
Employee
Employee
0 Kudos

Hi,

You can use FM RKE_SELECT_FACTDAYS_FOR_PERIOD

Cheers,

SImha.

Former Member
0 Kudos

Hi Salma,

Just search in SE37 using workday*

Regards,

Atish

Former Member
0 Kudos

Check the below link

FIMA_DAYS_BETWEEN_TWO_DATES

Former Member
0 Kudos

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