cancel
Showing results for 
Search instead for 
Did you mean: 

server proxy...

Former Member
0 Kudos

Hi,

I need to transfer the data directly from proxy structre to the Internal table which exists in the SE38 program.all the SDN links shows the coding to pass the data to an ztable. That is not my requirement. can any send me the coding for this? .

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Karthikeya,

The coding is pretty similar.

1.You declare your internal table.

2.Pass the data from proxy to your internal table by preforming a loop oprearion.

3.Then loop at that internal table to your workarea.

4.Alwys remeber that you write statement of modify and append when you are updating your records.

Reward points if useful

Thanks,

Sidhvin

Edited by: sidhvin ,mada on Dec 20, 2007 7:47 AM

Former Member
0 Kudos

Hi,

Thank u for your response. We can declare the Internal table ITAB and pass the values from proxy structure. But we are doing this in method (ZII_IA_SAPCRDB_MI~EXECUTE_ASYNCHRONOUS) which is reciding inthe class(ZCL_IA_SAPCRDB_MI) . But I have to use these ITAB data in my program(se38). how can I get the the data.?

0 Kudos

Hi kartikeya,

As per my understanding you want to use data from your XI in your Report so you can do this by

1. Creating one ztable and updating that ztable in your execute asynchronous method of proxy.

2. Use data of that ztable inside your report by creating itab of type ztable.

3. Clear your ztable at the end of report so that every time you execute your report you get only the data which has just come in through your proxy

Regards,

Amit.

Former Member
0 Kudos

Hi,

Thank u for your reply and you got my point.

Is it mandatory to create the ztable? I am searching for another method that is ....the developed interface & class are global. Is there any method to call them into our program then we can pass the data directly into our internal table without creating ztable?

0 Kudos

Hey Kartikeya,

Thanks for rewarding points.

I think it is mandatory to create ztable coz even if you say that the interface and class(developed) is global then I think you should be able to call method Execute~Asynchronous in your report directly by using call pattern tab on tool bar by specifying class name and method name and inside that u use itab created in your report but since you cannot pass any internal table into it we wont be able to do it without ztable

Regards,

Amit.

Former Member
0 Kudos

Kartikeya,

For both method is same, instead of using Ztable, use internal table. Coding is also same just delare your internal table and then pass the data from proxy to internal table by putting a loop so that multiple records can be moved to internal table.

Regards,

Sarvesh