Application Development 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: 

Link between maintainence view and table TVIMF

Former Member
0 Kudos
931

Hello All,

Needed some help regarding the creation of an SPRO entry.

I am listing the steps i carried out for the creation of the maintainence view.

1) Created a maintainence view using transaction se11 for a data base table

2) Generated the objects for the maintainece view using the transaction se53

3) used transaction sm30 to see the display of the maintainence view.

What should i do for making an entry in the table TVIMF for the maintainece view i created.

As i found out in the function call to VIEW_MAINTENANCE_CALL it reads the data from the table TVIMF.

The call to this function is made in the PBO. If i get this value in the PBO processing it allows me to call a subroutine (created by me) in the PAI.

As this value is not set in the PBO i am unable to call thw subroutine created by me.

In brief my question is how

maintainence view created from se54 transaction is linked to the entry in the table TVIMF

Regards,

Om

1 ACCEPTED SOLUTION

Former Member
0 Kudos
209

HI savita,

1. maintainence view created from se54 transaction is linked to the entry in the table TVIMF

No

2. Its only linked,

if we use EVENTS of table maintanance,

and write our code FORM.

3. TVIMF table just stores the SUBROUTINE NAME,

so that it can call them dynamically.

4. So, even if u use events,

the entry will be created automatically.

<b>5. Hence, no need to worry about the

table TVIMF.</b>

regards,

amit m.

3 REPLIES 3

Former Member
0 Kudos
209

Check this link out..

/people/sudheer.cheedella/blog/2006/02/20/extracting-data-in-table-maintenance

Former Member
0 Kudos
210

HI savita,

1. maintainence view created from se54 transaction is linked to the entry in the table TVIMF

No

2. Its only linked,

if we use EVENTS of table maintanance,

and write our code FORM.

3. TVIMF table just stores the SUBROUTINE NAME,

so that it can call them dynamically.

4. So, even if u use events,

the entry will be created automatically.

<b>5. Hence, no need to worry about the

table TVIMF.</b>

regards,

amit m.

0 Kudos
209

Thanks a lot Amit

it helped to solve my problem.

Regards,

Om