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: 

Store result of IH08 in internal table

Former Member
0 Kudos

Hi gurus,

I need to get the result of a selection of transaction IH08 transfered to XI. In order to do that, I want to use a ABAP proxy. So I need the result of the IH08 transfered in a internal table I can put into the structure of the proxy interface.

Can I make a program, that ends up with this internal table?

Kind regards

Mikkel

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

Look at the Std program RIEQUI20 connected to IH08

take the related data Internal table and move the data of this ITAB to the other ITAB which you wants to pass to proxy.

Yes you can pass this internal table data to proxy such that it is transferred to XI

Reward if useful

Regards

Anji

3 REPLIES 3

Former Member
0 Kudos

Hi

Look at the Std program RIEQUI20 connected to IH08

take the related data Internal table and move the data of this ITAB to the other ITAB which you wants to pass to proxy.

Yes you can pass this internal table data to proxy such that it is transferred to XI

Reward if useful

Regards

Anji

0 Kudos

Hi Anji,

but to do that, don't I have to use a user exit, or some thing like that. If I excecute the program you mention, I just get the same screen as the transaction.

Kind regards

Mikkel

0 Kudos

Hi,

You can get the Equipment list by submitting the main program.

Just set the parameter dy_selm = 'D' , in that case IH08 will export the list to memory id 'RIEQUI20'. From you program you can import this list into an internal table.

Just keep in mind - Your selection condition should fetch more than 1 one equipment records - otherwise it wont export anything to memory - but open IE03 with the equipment number.

Revert in case of problem.