Hi,
I have done the enhacement using smod - PBAS0001 EXIT_SAPFP50M_002.
I have written a code in include ZXPADU02 for a particular wage type not allowed for specified employee subgroup. I have activated the included.
Please let me know how to check this validation(means which Tcode i have to use to see the validation).
******code start***
data: i0008 like p0008.
data: c_M010(4) value 'M010'.
Message s016(rp) with INNNN-infty.
CASE INNNN-infty.
WHEN '0008'.
Move INNNN-infty to i0008.
if i0008-lga01 eq c_M010
and ipsyst-persk = 'N1'.
Message e016(rp) with i0008-lga01. "raising error_occurd.
endif.
ENDCASE.
**********code end*********