cancel
Showing results for 
Search instead for 
Did you mean: 

problem in proxy?

Former Member
0 Kudos

hi experts,

iam working on Inbound proxy for the HR area and i have to do lot off validations,accually before creating the proxy i have done all the codding in report program using lot off perform statements now when i copied all the code into the proxy method its not allowing to use PERFORM's in the proxy method. How to reslove this problem iam not an ABAP person and can u guide me without changing perform statement can i run the code in the proxy method.

thanks and regards,

phani.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Phani,

you need to call function module from proxy. create a function module with the code you have wirtten already and call tht function module in proxy pass the import and export parameters to the proxy as required.

Regards

Sreeram.G.Reddy

Former Member
0 Kudos

Hi

Try This

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

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

Thanks

prabhu_s2
Active Contributor
0 Kudos

or if u donot want to change the existing code then u try to call the report program using submit stmt where u will send the parameters accordingly

prabhu_s2
Active Contributor
0 Kudos

perform stmt are invlied in method as method are of OOPS concept. so replace all perform with methods created by u