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 a new tab in t-code HU03

rajpal_sehrawat
Explorer
0 Likes
1,194

Hi,

I have a requirement to add a new custom tab in HU03 T-code.

any pointers how could i do that?

I searched a lot but could not find any solution for that. I found BADI_HU_DIALOG which can be used to Display custom Screen in place of Standard Screen. but i could not find any Option to add new tab in it.

Any help would be highly appreciated.

Thanks

rajpal

1 ACCEPTED SOLUTION
Read only

rajpal_sehrawat
Explorer
928

Hi,

Resolved it myself.  we can replace SAP Standard tab Screen with our custom Sub-Screen.

Again we can call Standard sap subscreen from our custom Screen to handle existing fields.

method used un BADi is  Definition_subscreen.

if_detail is not Initial and cf_activetab eq 'DETVEKP'

     CF_program = custom_program

     cf_Screen     = custom_Screen

endif.

in the custom Screen I called sap subscreen and added mynew fields also.

Hi,

I have a requirement to add a new custom tab in HU03 T-code.

any pointers how could i do that?

I searched a lot but could not find any solution for that. I found BADI_HU_DIALOG which can be used to Display custom Screen in place of Standard Screen. but i could not find any Option to add new tab in it.

Any help would be highly appreciated.

Thanks

rajpal

1 REPLY 1
Read only

rajpal_sehrawat
Explorer
929

Hi,

Resolved it myself.  we can replace SAP Standard tab Screen with our custom Sub-Screen.

Again we can call Standard sap subscreen from our custom Screen to handle existing fields.

method used un BADi is  Definition_subscreen.

if_detail is not Initial and cf_activetab eq 'DETVEKP'

     CF_program = custom_program

     cf_Screen     = custom_Screen

endif.

in the custom Screen I called sap subscreen and added mynew fields also.