‎2006 Feb 26 6:17 AM
Dear Friends,
I have a feature PPMOD where i define the employee group and sub groups. Can anybody help me in reading this feature. RT just gives me employee grade. I need to read the feature to get the employee sub group depending upon which I need to expense his Earnings and Deductions.
‎2006 Feb 26 2:15 PM
You can move values from WPBP to the structure you pass to a function module.
You can check the code of RPCIPE00 (form get_momag) to see how you can read the feature by FM (i can't remember the name, sorry..)
Cheers
‎2006 Feb 26 2:15 PM
You can move values from WPBP to the structure you pass to a function module.
You can check the code of RPCIPE00 (form get_momag) to see how you can read the feature by FM (i can't remember the name, sorry..)
Cheers
‎2006 Feb 26 6:25 PM
Hi Madhav,
try this..
data: rec_struc_content like pc407.
data: rec_form type tdsfname.
call function 'HR_FEATURE_BACKFIELD'
exporting
feature = 'PPMOD'
struc_content = rec_struc_content
importing
back = rec_form
exceptions
others = 7.
Regards,
Suresh Datti