cancel
Showing results for 
Search instead for 
Did you mean: 

Need Some Information on Proxy generation

Former Member
0 Kudos

Hi All,

When I generated the Proxy, it has given the following Objects

Can any one please let me know which Structurte is for DT & MT & Table & Class and all these things.....

Iam little bit confused, how to differentiate those all

http://img362.imageshack.us/img362/7148/proxywr7.jpg

Regards

Suman

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI Suman,

You have to use the 1st Interface type only. Remaining all will be inter-linked so no need to refer anything else in the FM or ABAP program that will be calling the execute_synchronous method.

Refer below to avoid this confusion

Programming with Client and Server Proxies

http://help.sap.com/saphelp_nw04/helpdata/en/c9/74246d8ad2447799063d39013e9a11/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/2b/f49b21674e8c44940bb3beafd83d5c/frameset.htm

Thanks

Swarup

Answers (6)

Answers (6)

Former Member
0 Kudos

Hi,

Double click on the structure name and see the fields name in it and you will be able to understand which structure refers DT and MT

I think in your case YMI_POS_MOBILE_SERIAL_NUMBERS2 is the DT

and YMI_POS_MOBILE_SERIAL_NUMBERS is the MT

Regards,

Shabari

Former Member
0 Kudos

Thanx

vijay_b4
Active Contributor
0 Kudos

Hi Suman,

Reward points if this helps

Proxy Generation

Use

You can generate client or server proxies in ABAP to send or receive messages. You generate client proxies from outbound message interfaces and server proxies from inbound message interfaces.

Integration

For more details about programming with proxies, see Proxy Runtime.

Procedure

Generating Proxies By Using Transaction SPROXY

Generating Proxies By Using the Object Navigator (Transaction SE80)

ABAP Proxy Generation

Use

You can send and receive messages using generated proxies. (See ABAP Proxy Runtime.)

Prerequisites

If you are generating a proxy from a WSDL document that was created from a local file, from the UDDI, or from a URL, go to the Procedure section below. If you are generating a proxy from a WSDL document from the XI Repository, note the following:The proxy generation process retrieves the WSDL description of the interface from the Integration Repository using HTTP.

http://help.sap.com/saphelp_nw04s/helpdata/en/ba/f21a403233dd5fe10000000a155106/frameset.htm

Reward points if this helps

Regards

Pragathi.

Former Member
0 Kudos

Proxy generation converts non-language-specific interface descriptions in WSDL into executable interfaces known as Proxies. Depending on the target programming language, you choose one of the following:1. Java Proxies. or 2. ABAP Proxies.

We can interface to XI through proxies. From WAS 6.20, proxy generation feature enables application systems to communicate with XI using proxies. Proxy generation enables you to create proxies in application systems. Proxies encapsulate the creation or parsing of XML messages and the communication with the relevant runtime components required to send or receive the messages.

There are two types of Proxies.

1. Java Proxies.

2. ABAP Proxies.

Java proxies are used when java applications needs to send and receive data and ABAP proxies are used when ABAP applications needs to send and receive data.

Proxy Generation

http://help.sap.com/saphelp_nw04/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm

ABAP Proxy Runtime

http://help.sap.com/saphelp_nw04/helpdata/en/02/265c3cf311070ae10000000a114084/content.htm

To activate ABAP proxies

/people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies

Detailed step-by-step solution for ABAP proxies in XI

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

ABAP Server proxies

/people/siva.maranani/blog/2005/04/03/abap-server-proxies

Debugging of Inbound ABAP proxies

/people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation

File to R/3 via ABAP Proxy

/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy

How to push data from BI to XI using proxy

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e698aa90-0201-0010-7982-b49...

How to push data into BW from XI using proxy

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21...

Reward points if helpful..

Regards,

Soumya

Former Member
0 Kudos

Hi Suman,

check the below link.......

http://help.sap.com/saphelp_nw04/helpdata/en/ba/f21a403233dd5fe10000000a155106/frameset.htm

Reward points if useful.......

Thanks,

Madhu

Former Member
0 Kudos

Basically proxies are used for adapter less communication & main purpose of it is to bypass adapter engine.

Proxy generation enables you to create proxies in application systems. Proxies encapsulate the creation or parsing of XML messages and the communication with the relevant runtime components required to send or receive the messages. The proxy runtime controls these processes and can itself be controlled in application programs by means of additional methods.

Since the communication between the sender and receiver is decoupled, you can use proxies to exchange messages with various different communication parties, and also by using adapters. However, this section of the documentation only discusses the programming model for the proxy runtime.

There are two types of Proxies.

Java Proxies and ABAP Proxies.

Java proxies are used when java applications needs to send and receive data and ABAP proxies are used when ABAP applications needs to send and receive data.

1. Proxies can be a server proxy or client proxy. In our scenarios we require proxies to send or upload the data from/into SAP system.

2. One more thing proxies can be used if your WAS ? 6.2.

3. Use Tcode SPROXY into R/3 system for proxy use.

4. To send the data from R/3 system we use OUTBOUND PROXY. In Outbound proxy you will simply write an abap code to fetch the data from R/3 tables and then send it to XI. Below is the sample code to send the data from R/3 to XI.

Follow the fallowing Blogs..

How to create proxy.

http://help.sap.com/saphelp_nw04/helpdata/en/14/555f3c482a7331e10000000a114084/frameset.htm

How to Activate Proxy.

/people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies

ABAP Server Proxies (Inbound Proxy)

/people/siva.maranani/blog/2005/04/03/abap-server-proxies

OutBound Proxy (Client Proxy)

/people/sravya.talanki2/blog/2006/07/28/smarter-approach-for-coding-abap-proxies

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

File to R/3 via ABAP Proxy with good example

/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy

http://help.sap.com/saphelp_nw2004s/helpdata/en/48/d5a1fe5f317a4e8e35801ed2c88246/frameset.htm

Synchronous Proxies:

Outbound Synchronous Proxy

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/abap%2bproxy%2boutbound%2bprogram%2b-%2bp...

Inbound Synchronous Proxy

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/abap%2bproxy%2binbound%2bprogram%2b-%2bsa...

Note: reward points if solution found helpfull

Regards

Chandrakanth.k

Former Member
0 Kudos

Hi,

Wrote By Chandra

Note: reward points if solution found helpfull

You all guys are not even reading my Post & Copying & pasting the Content what ever you have

Regards

Suman

Former Member
0 Kudos

hi suman gupta,

if u really want answers to be good then" DON'T GIVE US ANY LINK FOR US TO SEE QUESTION "

give the error message ....

hope u understood......

regards

chandra

Former Member
0 Kudos

Heyyyy,

DON'T GIVE US ANY LINK FOR US TO SEE QUESTION

This i provided is Screen shot Info

If i didnt give any screnshot for reference, you cant able to understand the problem.

Regards