cancel
Showing results for 
Search instead for 
Did you mean: 

Client Proxy--unable to edit Execute Asynchronous method !!!!

Former Member
0 Kudos

Hi All,

With Reference to the blog stated below

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

I tried to write code inside the Execute Asynchronous method. But I was unable to edit the method and it comes as can not edit Proxy Objects. Is there any steps to do to make edit option available for this method.

Regards,

Sundar.

Accepted Solutions (1)

Accepted Solutions (1)

Shabarish_Nair
Active Contributor
0 Kudos

Once you have generated the proxy activate it. once it is activated you can go into the method and start editing it.

Also ref:

Client Proxy -

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

Former Member
0 Kudos

Hi,

I've activated my proxy but still not able to edit it.

Regards,

Sundar

MichalKrawczyk
Active Contributor
0 Kudos

Hi,

read my reponse - everything is ok

Regards,

michal

Former Member
0 Kudos

Hi Michal/Shabz,

kindly look at the blog comments

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

I asked Sravya how she did it? adn she has replied. She is using a wrapper for the Proxy object.....

Guys thanks for the quick responses

Regards,

Sundar

MichalKrawczyk
Active Contributor
0 Kudos

hi,

that's why we wanted you to trust us

Regards,

michal

-


<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Answers (1)

Answers (1)

MichalKrawczyk
Active Contributor
0 Kudos

Hi,

you never write code in client proxies in the generated method

you can only do it for server proxies

if you want to use the client proxy you need to call it from your own

report (or function module)

Regards,

michal

-


<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Former Member
0 Kudos

Hi Michal,

But in the blog

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

it is stated that we can write code inside client proxy execute asynchronous method. i just thought of trying the stated thing.

regards,

Sundar.

Shabarish_Nair
Active Contributor
0 Kudos

in real time scenarios, the client proxy is called by a report(most of the times). See the link i mentioned earlier. In case of server proxies you can actually implement your logic in the method.

Ref:

Server Proxy -

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