cancel
Showing results for 
Search instead for 
Did you mean: 

Absence quotas in ESS

Former Member
0 Kudos

Hi,

Can anyone explain the options in METHOD if_ex_pt_abs_req~get_mod_and_qtype of the BADI pt_abs_req for ex_mod and ex_qtype. I know there is the option A, B, C, D, E (and F?) for ex_mod but I can't find any description what each means.

METHOD if_ex_pt_abs_req~get_mod_and_qtype

ex_mod = 'B'.

ex_qtype = 3.

ENDMETHOD.

Thanks,

J

Accepted Solutions (1)

Accepted Solutions (1)

siddharthrajora
Product and Topic Expert
Product and Topic Expert
0 Kudos

There are different "quota determination type parameter MOD"

which you can choose as 'A', 'B', 'C', 'D' or 'E'.

Please read through the documentation of the Function Module

HR_GET_QUOTA_DATA to select the proper mode. You can modify the

mode in the BADI according to your business requirements.

ie

The options are as follows:

   Data is read from the cluster

   Data is read from the infotype record

   Data is read from a simulated time evaluation run

The option "C", whcih we are currently using says
If the key dates are before BDERR, the data is read from cluster B2 up
to the key date.
If the key dates are after or the same as BDERR, the data is simulated.

The option "E" porposed solution says
If the key dates are before BDERR, the data is read from the infotype
up to the key date.
If the key dates are after or the same as BDERR, the data is simulated.
here in both the cases the option for fuure dated entitlements is same,

Former Member
0 Kudos

Ok, That's what I get from looking at Dutch or German. A useful documentation for HR_GET_QUOTA_DATA is only given in English.

For future reference for myself:

  • Value = A
    • If the key dates are before BDERR, the data is read from cluster B2 up to the key date.
    • If the key dates are after or the same as BDERR, cluster B2 is read up to BDERR.
  • Value = B
    • If the key dates are before BDERR, the data is read from cluster B2 up to the key date.
    • If the key dates are after or the same as BDERR, the data is read from the IT.
  • Value = C
    • If the key dates are before BDERR, the data is read from cluster B2 up to the key date.
    • If the key dates are after or the same as BDERR, the data is simulated.
  • Value = D
    • The data is always read from the infotype.
  • Value = E
    • If the key dates are before BDERR, the data is read from the infotype up to the key date.
    • If the key dates are after or the same as BDERR, the data is simulated.

Thanks!,

Jeschael

Answers (0)