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

PPMOD FEATURE REDING

Former Member
0 Likes
981

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.

1 ACCEPTED SOLUTION
Read only

former_member199581
Active Participant
0 Likes
611

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

2 REPLIES 2
Read only

former_member199581
Active Participant
0 Likes
612

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

Read only

0 Likes
611

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