Application Development and Automation 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: 
Read only

Function Module

Former Member
0 Likes
670

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

6 REPLIES 6
Read only

Former Member
0 Likes
633

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.

Read only

amit_khare
Active Contributor
0 Likes
633

'DATE_CONVERT_TO_FACTORYDATE'

DATE_CHECK_WORKINGDAY

Regards,

Amit

Reward all helpful replies.

Read only

Simha_
Product and Topic Expert
Product and Topic Expert
0 Likes
633

Hi,

You can use FM RKE_SELECT_FACTDAYS_FOR_PERIOD

Cheers,

SImha.

Read only

Former Member
0 Likes
633

Hi Salma,

Just search in SE37 using workday*

Regards,

Atish

Read only

Former Member
0 Likes
633

Check the below link

FIMA_DAYS_BETWEEN_TWO_DATES

Read only

Former Member
0 Likes
633

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