Doubt using Proxy

Hi,
I had a small doubt, I want to implement a scenario where in if i post a xml file in the specific directory i need to get that xml data in a user defined table in R/3 sytem.
To do this can i use a proxy. By defining in SPROXY Transaction.
Thanks in advance

Hi,
That's a good idea to use proxy.
Your scenario should look like that:
File->XI->Proxy
Inside generated proxy just put the code which will add data to the table and handle all errors.
Please check this blog:
/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
Regards,
Wojciech
Reminder: please reward points for good answer

Similar Messages

  • SAP to non-SAP Communication Using Proxy Framwork

    Hi all,
    While searching for the connection option for the B2B collaboration between SAP and non-SAP business system, i found that there are two ways we can do it.
    One using Adapters and another using Proxy Framework.
    In our case We are on SAP Enterprise and non-SAP business partners are using I2, legacy system.
    They are not using Rosettanet PIPS, so I can not use RNIF or any other adapter for the inbound or outbound operation.
    My question is If we use proxy framework, what needs to be done at the non-SAP business system . Do we need to install proxy runtime and how does this proxy runtime will communicate with the application in non-SAP system.
    Thanks in advance

    Hi Ruby,
    You can use proxies for communicating with ABAP 6.20 systems and above and for J2EE applications.
    For B2B communication you would normally use an adapter for example plain HTTP, SOAP or RNIF ...
    An alternative is to install the XI PCK on the partner side. The PCK is essentially a standalone version of the XI Adapter Engine installed locally at the partner. This enables a scenario where XI communicates with the PCK over HTTP and then an adapter (file, JDBC ...) is used to communicate with the legacy system and vice versa.
    rgds Johan

  • How to use proxy settings for one website

    Hello,
    I have to access the only one website using Proxy settings and for others I don't need proxy to access. Is there a way to configure the internet settings to allow one website using Proxy... Please advise. Thanks!
    Regards,
    Aravin S

    I am also getting this "error".  The printer (8500 A910) connected to the web well enough that it went out and supposedly downloaded a new update, but then it was supposed to print a page showing the email address, but did not.
    So I go in and try to set up the eprint, and it tells me it cannot connect to the sever and I'll need to enter a proxy address and port number.  But my ISP's cable modems do NOT have any static IP address nor do they provide any sort of proxy service.  Everything works just fine with "automatic discovery" (DHCP) for every computer in the house.  No problems there.
    So, since  that's the case, of course I cannot look up some proxy address and port number in my web browser because they're all set up for "automatically detect settings".
    What's baffling is that the printer connected to something at HP to download the "update", and it went through a process that appeared to be what I'd expect it to do if it was updating its firmware.  But it won't connect to whatever it's supposed to connect to to have an email address assigned.
    Does HP supply a proxy server?  If so, what's its IP address or URL, and what port should a person set the printer to try to use?
    UPDATE:
    It appears that the HP site must have just been "down" for about six or seven hours while I was trying to get the printer to connect because it now connected and I got an email address asigned without needing to have any "proxy" stuff set up at all.  It's a shame that the printer does not simply report "HP Site down - try again later" instead of reporting that you need to use a proxy when that's impossible.
    "Now, on to the next problem which is that my emails to the assigned address are all bouncing with a "550 5.7.1 Command rejected" error!

  • Possible to send the 50,000 records at a time using proxy?

    Hi All,
    I am using the proxy to send the data form SAP to PI and then send it to Receciver by using JMS. Here i have a small issue.... is it possible to send the 50,000 records at a time using proxy? If not please suggest me how can i send bulk of records through proxy?
    Thanks
    Karthik.

    is it possible to send the 50,000 records at a time using proxy? If not please suggest me how
    can i send bulk of records through proxy?
    you can try this in steps...do not go for a BigBang testing :)....check how much your XI system can handle at a time...then you may need to tune the system parameters to accomodate more message size.....how to do this??...check the below document..section 3.9.2 (Special Cases)
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2016a0b1-1780-2b10-97bd-be3ac62214c7
    Regards,
    Abhishek.

  • Error while creating the sales order using Proxy

    Hi Folks,
    I am trying to create a Sales Order using Proxy via BAPI "BAPI_SALESORDER_CREATEFROMDAT2" :
    and i got this type of standard error message
    <Message>FB call: insufficient parameters</Message>
    few days back only i used the same bapi for creating the Sales Order and did it successfully...using the same parameters
    I don't have any clue about this type error .
    Kindly guide .
    Regards,

    Hi Nikhil,
    How refreshing the cache and restart the server will help ?
    basically i am testing the scenario at R/3 end only by generating XML template in SPROXY.
    My ECC 6.0 is on sp 12....I am not sure is it configuration related error or a bug ? as i have used the same code in ECC 6.0 with sp 09.
    regards,

  • Problem while connecting to site using proxy server in weblogic 8.1

    Hi All,
    I am able to connect to the site www.testtest.com when i am running the below
    program out side a bea weblogic server. but i couldn't able to connect to the
    www.testtest.com when i am accessing thru a progam that was running in weblogic
    server. i am getting the below exception
    Tried all: '1' addresses, but could not connect over HTTP to server: 'www.testtest.com',
    port: '80'
    I am using weblogic server 8.1. Pls help me out in solving this.
    import java.io.*;
    public class testurl
    public static void main(String[] args)
    try
         String username = "username";
         String password = "password";
         String proxy_internet_address = "111.111.12.12";
         String proxy_internet_port = "80";
         String urlString ="http://www.testtest.com/";
         java.net.Authenticator.setDefault(new SimpleAuthenticator(username,password));
         java.net.URL url = new java.net.URL(urlString);
         java.util.Properties systemProperties = System.getProperties();
         systemProperties.setProperty("http.proxyHost",proxy_internet_address);
         systemProperties.setProperty("http.proxyPort",proxy_internet_port);
         java.net.HttpURLConnection aConnection = (java.net.HttpURLConnection)(url.openConnection());
         aConnection.setDoInput(true);
         aConnection.setDoOutput(true);
         aConnection.setUseCaches(false);
         aConnection.connect();
         java.io.InputStreamReader insr = new java.io.InputStreamReader(aConnection.getInputStream());
         java.io.BufferedReader br = new java.io.BufferedReader(insr);
         String s="";
         String textString =null;
         while((textString = br.readLine())!=null)
         s = s + textString;
         }//end of while
         br.close();
         aConnection.disconnect();
         PrintWriter pw = new PrintWriter(new FileOutputStream("test.html"));
         pw.println(s);
         pw.close();
    }catch(Exception e){
         System.out.println(e.toString());

    I have a similar problem. I want to connect to a URL, but not using proxy. From outside BEA or in BEA 6.1 it works OK, but not in BEA 8.1.
    Did you get to solve your problem ?

  • Error occures while Sap R/3 sytem triggers XI message (using proxy class)

    <b>Error occures while Sap R/3 sytem triggers XI message (using proxy class)</b>
    1- I prepared message in XI side
    2- I used sproxy transaction in R/3 side and generate proxy class
    3- I used necessary methods in Abap program in R/3 side
    4- Somethimes, message does not work and generate error like below
    What must I do to solve this problem.  Thanks
    <u><b>Error message (Reported in SXMB_MONI in Sap R/3 side)</b></u><?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Inbound Message
      -->
    - <SAP:ErrorHeader xmlns:SAP="http://sap.com/exchange/MessageFormat">
      <SAP:Context />
      <SAP:Code p1="112" p2="HTTPIO_PLG_ICM_CONNECT_FAILED-Fehlermeldung beim Senden der Daten." p3="" p4="">HTTP.HTTP_CLIENT_SEND_FAILED</SAP:Code>
      <SAP:Text language="TR">Error during http send: Error code: 112 Error text: HTTPIO_PLG_ICM_CONNECT_FAILED-Fehlermeldung beim Senden der Daten.</SAP:Text>
      </SAP:ErrorHeader>

    Hi,
    Check thiss
    /people/krishna.moorthyp/blog/2006/07/23/http-errors-in-xi
    Error no 2
    Regards
    Aashish Sinha
    PS : Reward points if helpful

  • Dropped Frames consider using proxy mode

    The message:
    Many video frames were dropped during the last playback.
    The disk does not appear to be fast enough.
    Consider using proxy mode
    I am resonably new to FCP X so I cant tell whether this is new (after update) or if its a known problem and how to solve it. I have seen a couple of other posts that suggest its new.
    iMac
    Core i5
    2.7GHz
    8GB RAM
    Snow Leopard

    This is my pet checklist for questions regarding FCP X performance.
    FCP X 10.0.3 runs very well on my 2009 MacPro 2 x 2.26 GHz Quad-Core Intel Xeon with 16 GB RAM and ATI Radeon HD 5870 1024 MB.
    First, check that you have at least 20% free space on the Hard Drive that your System and your Media, Projects and Events are on.
    Check the spec of your Mac against the system requirements:
    http://www.apple.com/finalcutpro/specs/
    Check the spec of your graphics card. If it's listed here, it's not suitable:
    http://support.apple.com/kb/HT4664
    If you are getting crashes, there is some conflict on the OS. Create a new (admin) user account on your system and use FCP X from there - if it runs a lot better, there's a conflict and a clean install would be recommended.
    Keep projects to 20 mins or less. If you have a long project, work on 20 min sections then paste these into a final project for export.
    Create Optimised media - most camera native files are highly compressed and need a great deal of processor power to play back - particularly if you add titles, filters or effects. ProRes 422 takes up much more hard drive space but is very lightly compressed. It edits and plays back superbly.
    If you are short of drive space, use ProRes 422 Proxy - but remember to select High Quality when you export your movie.
    Hide Audio Waveforms at all times when you don't need them (both in Browser and Storyline / Timeline). They take up a lot of processor power. (Use the switch icon at the bottom-right of your timeline to select a format without waveforms if you don't need them at the moment, then switch back when you do).
    Create folders in the Project and Events libraries and put any projects you are not working on currently, in those folders. This will help a lot.
    Move your Projects and Events to an external HD (make sure it's formatted OS Extended - with journaled on or off) and run from there.
    The biggest single improvement I saw in performance was when I upgraded the RAM from 8 GB to 16.
    Andy

  • Using Proxy User Authentication in Sql Developer

    Hi!
    Is it possible to use proxy user authentication in SQL Developer? I'm thinking that if I'm clever enough, I can craft a custom jdbc URL that will allow my users to proxy authenticate into my Oracle 10gR2 database while using SQL Developer.
    Unfortunately, I'm not feeling all that clever. ;)
    Can anybody help me out here? Is it even in the realm of possibility?
    Thanks!
    Kevin Ferlazzo
    DBA
    VA Department of Juvenile Justice

    I found the possibility that proxy authentication of both accounts can be enforced:
    SQL> alter user appuser grant connect through personaluser AUTHENTICATION REQUIRED;
    I guess that this is the motivation for implementing the 2-session proxy connection method in SQL Developer.
    Regards,
    Martin

  • ABAP business system vs. 2 integration systems - using proxy

    Hi guys,
    is it possible to use one abap ECC with 2 PI systems and using proxy classes for both PIs?
    Thanks

    Hi Alakov,
    This is not possible. In a SAP environment, u can have one Integration Server (which is XI/PI) and the rest backend systems act as Application systems.
    These backend application systems point to a single Integration Server using rfc destination (create in sm59). for ex: ECC points to PI from sxmb-adm -> Integration Engine Configuration. Here you set the ECC/backend system as Application system and provide the rfc destn of corresponding Integration Server (ex: dest://INTEGRATION_SERVER_DX1)
    If you have to use 2 PI, then you have to switch between the connections all the time which is obviously not feasible.
    Souvik

  • How can i use proxy in firefox browser.

    i want to use proxy and its port. but i don't know how to use.so help me as soon as possible

    Type about:config in the address bar. Use the filter to search for proxy and then enter the info for each preference.

  • Not responding / crash while using proxy calendar

    Hi
    On one station the GroupWise Client crashes often while using proxy calendars. The user opens a calender trough proxy access and klick on somme entries (days). The error is not reproducable - restarting the client and do the same klicks won't crash again.
    Most of the crashes report this File: C:\PROGRA~2\Novell\GROUPW~1\gwclu.ocx
    Any help would be nice.
    grpwise.exe 11/16/2014 09:53:31 12.0.3.28451
    - GroupWise Unhandled Exception Report -
    - Generated on 4/1/2015 at 16:50:41 -
    Exception code: C0000005 EXCEPTION_ACCESS_VIOLATION
    Fault Address: 54BF63A8 01:000153A8
    File: C:\PROGRA~2\Novell\GROUPW~1\gwclu.ocx
    File TimeStamp: 11/16/14 09:54:20
    --------------Network----------------------
    Computer Name: PC-75
    User Name: gau
    --------------Hardware---------------------
    Number of Processors: 8
    Processor Type: Intel64 Family 6 Model 30 Stepping 5
    --------------Operating System-------------
    Platform: Windows NT
    Version: 6.1
    Build Number: 7601
    Other Information: S

    In article <[email protected]>, Interbit wrote:
    > Yes, one user, one machine. The machine was completely new installed,
    > still 2-3 isues per Week.
    So this rather points to the user. So the next question is what
    regular preventative maintenance do you have running?
    What I typically set of customers is
    http://www.konecnyad.ca/andyk/gwmnt5x.htm
    If you are already running the contents checks, then look at section of
    the resulting logs for that user to see what errors are showing there.
    Especially of note would be errors that are identical each time as they
    indicate there is something that needs a bit of direct effort.
    Also are there any error showing in the POA logs that coinside with
    these crashes?
    Is it always the same calendar? Are others proxying into the same
    calendar?
    Andy of
    http://KonecnyConsulting.ca in Toronto
    Knowledge Partner
    http://forums.novell.com/member.php/75037-konecnya
    If you find a post helpful and are logged in the Web interface, please
    show your appreciation by clicking on the star below. Thanks!

  • Proxies Vs. Adapters: When to use Proxy?

    Could somebody list out the scenarios where you would Proxy and where you would use Adapter?
    Use Proxy or Adapter: What is the best practice to develop my integration?
    An Example Scenario:
    Let's say I have data from legacy systems in legacy format in text files.  I have a standard to BAPI to call to send to R/3.  But, I need to do some lookups, code conversions etc. before I call the standard BAPI.  So, we write a wrapper ABAP fucntion, inside there we write lookup codes, and then call standard BAPI.
    Should I do this scenario using Proxy or regular RFC adapter?
    Thanks.

    Hi Sorna,
    You can do both but since you got the wrapper function it's going to be much easier (**and faster**) to use RFC adapter
    - RFC adapter will be maintained for a quite a long time and it's friendy to monitor
    on the other hand proxies are relatively new concept the will be used more extensively more and more in the future
    (that's what SAP says as least) but it can only be implemented with WAS 6.20 and above so not all systems will have that possibility
    monitoring features of the proxies are on the oter hand based on the local integration server (monitoring - TCODE - SXMB_MONI) on the R/3 system and most probably it will even be improved in the near future:)
    but that's just my opinion:)
    hope that you'll hear some more others
    Regards,
    michal

  • How can I set which projects use Proxy Media and not just change every project?

    Hi there
    I can see how to change ALL projects to use Proxy Media or Original/Optimised Media
    in
    Preferences>Playback
    But I'm switching between projects a lot and I only want to use Proxy Media on one project, so how can I tell FCPX to only use Proxy Media on that ONE project?
    Thanks

    Perhaps if apple didn't take back prores LT this wouldn't be as much of an issue.
    Pores LT was a great compromise between file size and quality. It produced a fine image for most peoples needs and was 30% smaller.
    Hopefully it will be returned soon. I can't imagine why it's not already there. Unless they want to charge for it, ... again..
    Have you tried capturing as full res, then change prefs back to proxy, open a new project and import the full res files?
    In FCP7 the render pref was separate from the capture pref. is that gone too?
    If my idea doesn't work, Surely someone will chime in with a creative work around to this.
    And hopefully it'll get fixed soon in an update.
    Best,
    g

  • Using proxy communication, is there any queues?

    Hi,
    I am going to use  proxy communication and i would like to know if there is any chance to have
    queues in  R/3 and in XI? I think that it will not happen as there is no adapter is that true?
    Thanks
    Antonis

    hi
    There are queues in xi side which we need to register in xi by using sxmb_adm
    check the below thread
    Queue Stucked - Exactly Once Async Abap Proxy
    Queue Stucked - Exactly Once Async Abap Proxy
    regards
    kummari

Maybe you are looking for