cancel
Showing results for 
Search instead for 
Did you mean: 

File to Proxy

Former Member
0 Kudos

Hi all,

Here i generated Proxies for Inbound Interface..

Next

can anyone tell me how to proceed..

thanx,

krishna.

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

if problem is solved , mark it as solved

Former Member
0 Kudos

Hi all,

In this Interface(File to Proxy) iam trying to create an HTTP Connection to R3 but when testing it is giving status that

ICM_HTTP_CONNECTION_FAILED

I am creating HTTP connection (SM59) in XI to connect to R3.

My doubt is what would be the Logon details means here i can give any id that is having access to R3 or anything else.

Any suggestions

thanx,

krishna.

justin_santhanam
Active Contributor
0 Kudos

Krishna,

You can give the login credentials with the same as you are logging in to R/3.

What is the error code u are getting. Also can u check the system details are correct.

Best regards,

raj.

Former Member
0 Kudos

Hi Raj,

While testing the connection it is showing 401 status.

Any suggestion

thanx,

krishna

justin_santhanam
Active Contributor
0 Kudos

Krishna,

The error code 401 is for unauthorization error, can u check whether the login credentials are correct?

Best regards,

raj.

Former Member
0 Kudos

Kumar,

Try giving the user PIISUSER and its password if you are on 2004s else XIISUSER and its password if you are on 2004.

---Satish

Former Member
0 Kudos

After Generating the Proxy, save/activate it,

go to the Class Builder Write the code to store the incoming data into database

tables of R/3

and activate the file adapter by putting file in the concern location

this is the sample code which we written

METHOD ZII_II_MIIA_EMPLOYEE_DETAILS_S~EXECUTE_ASYNCHRONOUS.

*Internal Table Declarations.

DATA : EMP_TABLE TYPE ZII_DT_EMPLOYEE_DETAILS_TA_TAB,

ZEMPLOYEE TYPE TABLE OF ZEMPLOYEE_DETAIL.

*Work Area Declararions.

DATA: WA_EMP_TABLE LIKE LINE OF EMP_TABLE,

WA_ZEMPLOYEE LIKE LINE OF ZEMPLOYEE.

*Assign employee data from the inbound interface to internal table.

EMP_TABLE[] = INPUT-MT_EMPLOYEE_DETAILS_SC005-EMPLOYEE[].

*Assign each employee data to ZEMPLOYEE.

LOOP AT EMP_TABLE INTO WA_EMP_TABLE.

WA_ZEMPLOYEE-EMPLOYEE_ID = WA_EMP_TABLE-EMPLOYEE_ID.

WA_ZEMPLOYEE-EMPLOYEE_NAME = WA_EMP_TABLE-EMPLOYEE_NAME.

WA_ZEMPLOYEE-DESIGNATION = WA_EMP_TABLE-DESIGNATION.

WA_ZEMPLOYEE-PHONE_NUMBER = WA_EMP_TABLE-PHONE_NUMBER.

APPEND WA_ZEMPLOYEE TO ZEMPLOYEE.

CLEAR WA_ZEMPLOYEE.

ENDLOOP.

*Update the databse table ZEMPLOYEE_DETAIL with the employee data

MODIFY ZEMPLOYEE_DETAIL FROM TABLE ZEMPLOYEE.

ENDMETHOD.

If u want complete walk through, go through this blog , this is really very helpful

<a href="/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy walk through regarding file-to-proxy sceanrio</a>

give the reward points if helpful

udo_martens
Active Contributor
0 Kudos

Hi Krishna,

for Inbound-Proxys: Send a message to corresponding Outbound-IF

for Outbound-Proxys: Call them (button "pattern") in a ABAP program

Regards,

Udo

Former Member
0 Kudos

Hi

if you have created the proxy, just configure the ID and test your scenario

Good luck:)

regards

krishna

Former Member
0 Kudos

Hi

Check these following links

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

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

/people/ravikumar.allampallam/blog/2005/08/14/choose-the-right-adapter-to-integrate-with-sap-systems

Message was edited by:

DavaPrasath T

former_member529475
Active Contributor
0 Kudos

Hi Krishna

Check this weblog for all the configurations for proxy:

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

Also check this for some help:

/people/sap.user72/blog/2005/12/08/integration-builders-through-proxy-server-part--1

/people/sap.user72/blog/2005/12/13/integration-builders-through-proxy-server-part--2

Refer this blog for File to Proxy scenario:-

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1847. [original link is broken] [original link is broken] [original link is broken] [original link is broken]

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

Cheers..

Vasu

    • Reward Points if found useful **