cancel
Showing results for 
Search instead for 
Did you mean: 

How to display custom table records in standard tcode IE01

jallipalli_sai
Explorer
0 Kudos

Hello experts,

I have requirement in tcode IE01 where I have to add a new custom tab and in That I have to display the records from a custom table.

Kindly help me to get this done.

Thanks in advance

Sandra_Rossi
Active Contributor
0 Kudos

I find a few questions about adding a custom tab to IE01. What did you try?

add a new tab in standard tcode IE01 site:sap.com
jallipalli_sai
Explorer
0 Kudos

I tried using user exit ITOB00001. Using this I can display the few fileds only.

jallipalli_sai
Explorer
0 Kudos

In my requirement I have to display a table control and in it have populate the records from custom table

Accepted Solutions (1)

Accepted Solutions (1)

juan_suros
Contributor
0 Kudos

It looks like there are several screen badi defined to implement new tabs in the equipment views in IE0x and EQ0x transactions.

EQUI_SCR_01 to EQUI_SCR_06 and also EQUI_SCR_CC

You could try to modify one of these.

In a similar project years ago we did the following:

  1. Add new fields to expansion structure CI_EQUI
  2. Add fields to tab [SerData] screen SAPLITO0-1220
  3. Set names of new screen fields to match appearance in view ITOB
  4. Fields in tab are filled automatically by function ITOB_DATA_EXPORT
jallipalli_sai
Explorer
0 Kudos

All the badi's are marked as SAP internal. Not allowing us to edit the badi's

juan_suros
Contributor
0 Kudos

I suggest you add new fields to an existing tab window, then.

jallipalli_sai
Explorer
0 Kudos

Hi Juan,

Thanks for idea by using this I can fulfill one requirement.

Other requirement is for this we need a new custom tab in same t-code where I have to display records from a custom table .

could u suggest how to achieve this.

Thanks

juan_suros
Contributor
0 Kudos

There are two possible paths you can follow:

1) If you want to add these custom fields to every equipment record in your system, then add the fields to expansion structure CI_EQUI.

2) If you only want to add these fields to some of the equipment records in your system, then create a Z table in the data dictionary with primary key EQUNR.

Answers (1)

Answers (1)

peter_atkin
Active Contributor
0 Kudos
jallipalli_sai
Explorer
0 Kudos

Thanks peter