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

Adding fields in Structure

Former Member
0 Likes
1,013

Hi,

I am working in a HR module which is new to me. I need to add two extra fields into a field selection button in tcode S_AHR_61016362.. They should also be listed in the report after execution.

Program name - RPLICO10.

Fields to be added - P0002-PERID & P0207-taxar

Sure reward points for answer.

Regards

Ravi

6 REPLIES 6
Read only

Former Member
0 Likes
850

dear ,

these fields are avail . in that report itself , check Addition Field selectins.

Regards

Prabhu

Read only

0 Likes
850

Hi Prabhu,

Thanks for your reply. the Pin number is available not the filing status (P0210-TXSTA). I need to add this field into the field selection.

Regards

Ravi

Read only

0 Likes
850

Hi,

If you want to add fields which are not listed in Additional fields selection,you can use HR Report category to design your own selection screen.

Check this link.

http://www.sapdevelopment.co.uk/hr/hr_repcat.htm

Kindly reward points by clicking the star on the left of reply,if it helps.

Read only

Former Member
0 Likes
850

hi Ravi,

yeh they are avilable in the additional fields section check there.

Regards,

Ravi Gunda.

Read only

Former Member
0 Likes
850

Hi,

I would suggest that, you make a copy of the standard program ans add the new parameter or select-options in the program.

Regards

Subramanian

Read only

Former Member
0 Likes
850

Hi Ravi,

You have to sopy the program and in Intillization you have to make the changes accordingly. In initilizatrion check out this performs

PERFORM get_additional_fields

TABLES fieldtab hr_choice_tab_in.

PERFORM get_table_fields

TABLES fieldtab hr_choice_tab_in

USING 'PS0000' excl_ps0000.

PERFORM get_table_fields

TABLES fieldtab hr_choice_tab_in

USING 'PS0001' excl_ps0001.

you have to append the fields in fieldtab internal tab and also in hr_choic_tab_in.

reward points if it helpful.

Regards,

Kiran I