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

calling table maintanence

Former Member
0 Likes
987

I'm trying to call table maintenance generated transaction thru migo transaction(thru pop up) but it is effecting globally

Is it possible to call a transaction(table maintenance generation transaction)

can you give me the syntax

(if po# displayed in Migo has mat and plant which has in my table1 then it must display the transaction(table2 maintenance generated transaction) and it must update the table if it has any new values in the displayed PO# )

Thanks in advance

Hema

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
960

Hi Hema ,

Create a transaction for the table on which you want the maintainence in SE93.

And then assign this to the MIGO transaction.

Srinivas.K

Hi Hema ,

Create a transaction for the table on which you want the maintainence in SE93.

And then assign this to the MIGO transaction.

Srinivas.K

7 REPLIES 7
Read only

Former Member
0 Likes
961

Hi Hema ,

Create a transaction for the table on which you want the maintainence in SE93.

And then assign this to the MIGO transaction.

Srinivas.K

Read only

0 Likes
960

I have done that I got that transaction name

when I'm writing call transaction zXXXXX in my user exit it is giving pop up to the mat which are not in my table also. it is giving pop up to every one

do you have any particular syntax to call table maintenance generated transaction

Read only

0 Likes
960

As far as i am awre there is no Special Call Transaction syntax for table maintenence but in the user exit before you Call the transaction we can check whether we having the relevent materail or not and if not just skip the cal transaction.. if you haven't tried this yet..

Srini.

Read only

0 Likes
960

I tried it by keeping the cond if zxxx-matnr then call transaction zxxxx1

but it is giving the pop up everytime someone clicks the Migo save button thats what I'm searching for syntax

Read only

0 Likes
960

Befor the Call Transaction can you try writing a Select statement and verify whether this material is present in the Z-table and if sy-subrc = 0 go a head and call the transcation else not.

Srini.

Read only

Former Member
0 Likes
960

Hi,

You can also use the function module VIEW_MAINTENANCE_CALL to call the table maintenance..

Thanks,

Naren

Read only

0 Likes
960

Srinivas ,

select statement with sy-subrc worked it solved my problem.

Now when I click the save button I'm getting the pop up and when I press back button in the pop up screen I'm getting the PO# posted , But I need to see the values again when I come back and then post how can I do it can anyone suggest me...

Thanks in advance

Hema.