cancel
Showing results for 
Search instead for 
Did you mean: 

Client Proxy - Issues

Former Member
0 Kudos

Hi Masters,

I am trying to create the Cleint PROXY in BW system, I am facing the 2 issues..

1. I assigned the ZPack , and prefix: Z, and create the proxy, getting the error message: DDIC object TABL XXXXXX has package check errors., I think this issue was Package issue.

2. I assign the $TMP package, Prefix: Z and create the proxy, successfully created and actived. But I am not able to see the method: execute_asynchronous in my class ZCO_XXX.

Can any one guide me, how can i fix the issues??

Thanks,

SR

Edited by: Test12345678 on Jun 28, 2010 5:56 PM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Can you check for ZPack package you have added User Access?

If you have added that it will not give you error while creating proxy.

Which PI Version you are using?

Thanks,

Hetal

Former Member
0 Kudos

Thanks,

I checked the ZPack, noting added User Access, we are using PI7.0..

Can you please tell me what are the thing need be add to user access in SE21..

Thanks,

SR

Former Member
0 Kudos

Thanks a lot guys, I fix the one issue, to add the SAI_TOOLS to 'USE ACCESS TAB'..

But i am not able to see the Excute-Asyn method in my class...

Can any one help me on this....

Thanks,

SR

Former Member
0 Kudos

In PI7.0 you dont have Method execute Asyn but you have the method name created something similar to your interface name.Execute Asyn was only there in XI 3.0.

You can call your client proxy in abap code as follows:

TRY.

CREATE OBJECT w_obj "'"' of class name type .

**Handle exception

CATCH cx_ai_system_fault INTO w_sys_exception.

ENDTRY.

TRY.

CALL METHOD w_obj ->Method name "Interface name

EXPORTING

output = it_req. " data to be send to pi

COMMIT WORK.

**Handle exception

CATCH cx_ai_system_fault INTO w_sys_exception.

CATCH cx_ai_application_fault INTO w_app_exception.

ENDTRY.

Thanks

Sikha

Former Member
0 Kudos

Hi SR,

I hope you would have created the data and message types and message interface in your xi system. Also I hope you would have done the connections between your bw system and xi system. Please check this connections part:

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

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

Regards,

---Satish

Former Member
0 Kudos

Thanks Satish,

I did all the thing in PI, and i checked the connection looking good...

Any other ideas??

Thanks,

SR