RFC Connection PLease Help

Dear Experts,
I am new to SAP world.
I am trying to configure remote monitor.
I have sys A and Sys B
using t-code sm59 in sys a I have defined RFC destination by giving all the details of SYS B except Gateway Host and Gateway Service.
When I test connection it is successful.
Now I used RZ21 to register Sys B for remote monitor from menu Technical Infrastructure. when i look at RFC destination list, the RFC destination what i defined earlier is not showing up. Can anyone tell me where I went wrong.
I appreciate you help. Thanks in advance.

.

Similar Messages

  • My iphone 5 only connects to wifi when i'm in the room which has the router. once i leave i get no connections. please help me.

    i have a iphone 5. i can only connect to the wifi when im in the same room as the router. once i leave my wifi does not connect. please help me fix this.

    Hello nishaanth,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning network issues:
    iOS: Troubleshooting Wi-Fi networks and connections
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • I suppose it is the problem with socket connection,Please help

    Hi,
    I'm trying to build a chat server in Java on Linux OS.I've created basically 2 classes in the client program.The first one shows the login window.When we enter the Login ID & password & click on the ok button,the data is sent to the server for verification.If the login is true,the second class is invoked,which displays the messenger window.This class again access the server
    for collecting the IDs of the online persons.But this statement which reads from the server causes an exception in the program.If we invoke the second class independently(ie not from 1st class) then there is no problem & the required data is read from the server.Can anyone please help me in getting this program right.I'm working on a p4 machine with JDK1.4.
    The Exceptions caused are given below
    java.net.SocketException: Connection reset by peer: Connection reset by peer
    at java.net.SocketInputStream.SocketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:119)
         at java.io.InputStreamReader$CharsetFiller.readBytes(InputStreanReader.java :339)
         at java.io.InputStreamReader$CharsetFiller.fill(InputStreamReader.java:374)
         at java.io.InputStreamReader.read(InputStreamReader.java:511)
         at java.io.BufferedReader.fill(BufferedReader.java:139)
         at java.io.BufferedReader.readLine(BufferedReader.java:299)
         at java.io.BufferedReader.readLine(BufferedReader.java:362)
         at Login.LoginData(Login.java:330)
         at Login.test(Login.java:155)
         at Login$Buttonhandler.actionPerformed(Login.java:138)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1722)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:17775)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:4141)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:253)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:261)
         at java.awt.Component.processMouseEvent(Component.java:4906)
         at java.awt.Component.processEvent(component.java:4732)
         at java.awt.Container.processEvent(Container.java:1337)
         at java.awt.component.dispatchEventImpl(Component.java:3476)
         at java.awt.Container.dispatchEventImpl(Container.java:1399)
         at java.awt.Component.dispatchEvent(Component.java:3343)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3302)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3014)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2967)
         at java.awt.Container.dispatchEventImpl(Container.java:1373)
         at java.awt.window.dispatchEventImpl(Window.java:1459)
         at java.awt.Component.dispatchEvent(Component.java:3343)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:439)
         at java.awt.EventDispatchThread.pumpOneEvent(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:131)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
         My program looks somewhat like this :
    1st class definition:
    public class Login extends Jframe// Login is the name of the first class;
    Socket connection;
    DataOutputStream outStream;
    BufferedReader inStream;
    Frame is set up here
    public class Buttonhandler implements ActionListener
    public void actionPerformed(ActionEvent e) {
    String comm = e.getActionCommand();
    if(comm.equals("ok")) {
    check=LoginCheck(ID,paswd);
    test();
    public void test() //checks whether the login is true
    if(check)
    new Messenger(ID);// the second class is invoked
    public boolean LoginCheck(String user,String passwd)
    //Enter the Server's IP & port below
    String destination="localhost";
    int port=1234;
    try
    connection=new Socket(destination,port);
    }catch (UnknownHostException ex){
    error("Unknown host");
    catch (IOException ex){
    ex.printStackTrace ();
    error("IO error creating socket ");
    try{
    inStream = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    outStream=new DataOutputStream(connection.getOutputStream());
    }catch (IOException ex){
    error("IO error getting streams");
    ex.printStackTrace();
    System.out.println("connected to "+destination+" at port "+port+".");
    BufferedReader keyboardInput=new BufferedReader(new InputStreamReader(System.in));
    String receive=new String();
    try{
    receive=inStream.readLine();
    }catch(IOException ex){ error("Error reading from server");}
    if(receive.equals("Logintrue"))
    check=true;
    else
    check=false;
    try{
    inStream.close();
    outStream.close();
    connection.close();
    }catch (IOException ex){
    error("IO error closing socket");
    return(check);
    // second class is defined below
    public class Messenger
    Socket connect;
    DataOutputStream outStr;
    BufferedReader inStr;
    public static void main(String args[])
    { Messenger mes = new Messenger(args[0]);}
    Messenger(String strg)
    CreateWindow();
    setupEvents();
    LoginData(strg);
    fram.show();
    void setupEvents()
    fram.addWindowListener(new WindowHandler());
    login.addActionListener(new MenuItemHandler());
    quit.addActionListener(new MenuItemHandler());
    button.addActionListener(new Buttonhandle());
    public void LoginData(String name)
    //Enter the Server's IP & port below
    String dest="localhost";
    int port=1234;
    int r=0;
    String str[]=new String[40];
    try
    connect=new Socket(dest,port);
    }catch (UnknownHostException ex){
    error("Unknown host");
    catch (IOException ex){
    ex.printStackTrace ();
    error("IO error creating socket ");
    try{
    inStr = new BufferedReader(new InputStreamReader(connect.getInputStream()));
    outStr=new DataOutputStream(connect.getOutputStream());
    }catch (IOException ex){
    error("IO error getting streams");
    ex.printStackTrace();
    String codeln=new String("\n");
    try{
    outStr.flush();
    outStr.writeBytes("!@*&!@#$%^");//code for sending logged in users
    outStr.writeBytes(codeln);
    outStr.write(13);
    outStr.flush();
    String check="qkpltx";
    String receive=new String();
    try{
    while((receive=inStr.readLine())!=null) //the statement that causes the exception
    if(receive.equals(check))
    break;
    else
         str[r]=receive;
         r++;
    }catch(IOException ex){ex.printStackTrace();error("Error reading from socket");}
    catch(NullPointerException ex){ex.printStackTrace();}
    } catch (IOException ex){ex.printStackTrace();
    error("Error reading from keyboard or socket ");
    try{
    inStr.close();
    outStr.close();
    connect.close();
    }catch (IOException ex){
    error("IO error closing socket");
    for(int l=0,k=1;l<r;l=l+2,k++)
    if(!(str[l].equals(name)))
    stud[k]=" "+str[l];
    else
    k--;
    public class Buttonhandle implements ActionListener
    public void actionPerformed(ActionEvent e) {
    //chat with the selected user;
    public class MenuItemHandler implements ActionListener
    public void actionPerformed(ActionEvent e)
    String cmd=e.getActionCommand();
    if(cmd.equals("Disconnect"))
    //Disconnect from the server
    else if(cmd.equals("Change User"))
         //Disconnect from the server & call the login window
    else if(cmd.equals("View Connection Details"))
    //show connection details;
    public class WindowHandler extends WindowAdapter
    public void windowClosing(WindowEvent e){
    //Disconnect from server & then exit;
    System.exit(0);}
    I�ll be very thankful if anyone corrects the mistake for me.Please help.

    You're connecting to the server twice. After you've successfully logged in, pass the Socket to the Messenger class.
    public class Messenger {
        Socket connect;
        public static void main(String args[]) {
            Messenger mes = new Messenger(args[0]);
        Messenger(Socket s, String strg) {
            this.connect = s;
            CreateWindow();
            setupEvents();
            LoginData(strg);
            fram.show();
    }

  • TS1368 I got an new nano for christmas and l put it in to the computer, l just got Windows 8 on my computer, l am unable to connect my new nano to my computer. l have deleted itunes and put it back on my computer and still unable to connect please help me

    I got a new nano l am unable to connect it on my computer, l have windows 8. I have deleted itunes and downloaded back on my computer, l still am unable to connect my nano to my computer.
    When l put my nano on the computer itunes saids "Accessing Itunes" it is not connecting.
    Please help me.
    Thanks

    Uninstalling and reinstalling iTunes has no affect on the media on the computer or the account it is linked to.
    If the media was purchased under another iTunes account, then it is permanently tied to that account.
    Using mulitple iDevices with one computer

  • My Wifi connection is fine and will connect to safari, but my apps wont connect, they say no internet connection, please help me

    Using my wifi, i can connect to safari fine, but my apps like; twitter, youtube, facebook and other apps that require internet connecton wont connect at all, i have tried resetting my network but that has not helped, please help me!

    go to settings date and time then set automatically ;D
    hope this helped you

  • Very slow connection, please help!

    Hi all
    I hope someone here can give more help than the BT call centre. 
    My speed has dropped dramatically over the last month. I have gone from getting around 3.5mbps-4mbps to now less than 0.5mbps.
    I have done the BT speed test and I have also copied the ADSL settings and status. I have pasted this below.  
    Can someone please advise me of any advice as I am stumped. I would consider myself pretty computer savvy but I am completly at a loss with this.
    This test is done using a wireless laptop whilst the Homehub was plugged into the test socket located on the master socket. The speed tests are identical to when I do this on a wired desktop and the Homehub plugged into a different socket. 
    BT Speed tester results
    Download speedachieved during the test was - 465 Kbps
    For your connection, the acceptable range of speeds is 50-500 Kbps.
    Additional Information:
    Your DSL Connection Rate :5376 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
    IP Profile for your line is - 500 Kbps
    ADSL line status
    Connection information
    Line state Connected
    Connection time 0 days, 0:14:26
    Downstream 5,376 Kbps
    Upstream 448 Kbps
    ADSL settings
    VPI/VCI 0/38
    Type PPPoA
    Modulation ITU-T G.992.1
    Latency type Interleaved
    Noise margin (Down/Up) 11.1 dB / 19.0 dB
    Line attenuation (Down/Up) 41.0 dB / 25.0 dB
    Output power (Down/Up) 19.8 dBm / 12.0 dBm
    Loss of Framing (Local) 0
    Loss of Signal (Local) 0
    Loss of Power (Local) 0
    FEC Errors (Down/Up) 351550 / 2
    CRC Errors (Down/Up) 224 / 2147480000
    HEC Errors (Down/Up) nil / 0
    Error Seconds (Local) 164
    BT have advised that the speed test is the maximum I can receive on my line but the homehub shows a massively higher speed. I'm confused. 
    Please help me!
    Many thanks
    Lee

    welcome to the forum
    you have a 5mb connection but your noise margin is a bit high at 11.1 as normal about 6.  the real problem is your profile is down at 500 instead of 4500 and this is probably due to the resets/disconnection which eithe you have done trying to improve your speed or the hub has done on it's own.
    if you stay connected 24/5 for 3/5 with no resets/disconnections your profile will rise to 4500.  you may find later that your noise margin drops to nearer 6 with a slight increase in your connection speed
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Christmas Connection - Please help - CABLE/Netgear

    I am buying my little brother a macbook for christmas.
    my parents who live in the same house have a mini mac and i just ordered them a Netgear RangeMax 802.11g Wireless Router so that my brother can get online with the same connection. I can walk my parents through setting up the wireless router over the phone but not really sure what I need to tell my brother to setup the connection for his system?
    As long as the router is hooked up right will the macbook automatically locate the connection from the netgear router?
    Please help.
    13 INCH mac book - Intel Core 2 Duo   Mac OS X (10.4.8)  

    He can click on the Airport icon, and should see the network listed. If it is encrypted, it will ask for the password once he click on the network's name. He enters the password, and Airport will connect.
    If it is unencrypted, Airport will usually pop up and ask if he would like to join the open wireless network.
    Core 2 Duo White MacBook - 2GB ram/ 160GB HD   Mac OS X (10.4.8)  

  • 40GB IPod Click Wheel Freezes iTunes When Connected - Please Help?!

    I have only had my ipod 3 months and it was given to me as a present so the ipod thing is quite new to me.
    Recently my ipod froze and after reseting as per instructions it showed a folder icon and apple support.com.
    I turned the ipod back on after that to find all my music files gone, i tried connecting my ipod back to my lap top to download the music again but iTunes just freezes.
    I have also placed my ipod in disk mode to completley restore it but i cannot do this if iTunes wont recoginze its there.
    I am completely lost and gutted that after only 3 months i have lost faith in the ipod already and just listen to my music through my lap top at home now.
    I left all my cd's back in england before i came to oz and have nothing to listen to in the car now.
    Can anyone please help?
    Thanks in advance

    I guess nobody else has had this problem?
    Does anybody know if you can e-mail apple direct to express how useless their services are or even to try to get an explanation from them of how to correct the problem before i throw their ipod in the bin?

  • I cant connect to iMessage  with my phone number and  I'm on wifi and i have a cellular connection please help

    Please help  me get iMessage with my number

    First, log out of everything including home sharing, imessage, facetime and appstore. Turn on airplane mode for a few seconds and retry turning on imessage.
    You can also try instead of airplane mode you can turn off your phone instead then retry imessage.

  • I get message when attempting to access many websites - unrusted connection, please help

    I have been accessing many websites via firefox for many years, but over the past3-4 days I have been receiving the message - untrusted website, with the technical details informing me that www.google.com uses an invalid security certificate because no issuer chain was provided. I have uninstalled firefox 31, and replaced it with No:30, but it has made no difference because the problem still persists in this version as well. I have tried going through chrome and yahoo to those same sites but I experience very slow dial up type speeds in pages both loading and opening through those other browsers, and I am now feeling very frustrated in going onto the net at all presently, and I've just upgraded my data usage through my provider www.slingshot.co.nz from 40 to 80 gigs per month, but this is now also feeling like a lost cause as well. I am hoping someone at firefox may be able to help resolve this very troublesome issue, although I have also read some other stories contributed on this same matter, but I do not know if they were ever resolved either. Please help because I am now at my wits end upon it and have nothing else able to do, including what to do with the trouble shooter I downloaded at your suggestion from firefox - Thankyou.

    Meanwhile, assuming the worst (malware), here are some suggestions for clean up.
    Open the Windows '''Control Panel''', Uninstall a Program. After the list loads, click the "Installed on" column heading to group the infections, I mean, additions, by date. This can help in smoking out undisclosed bundle items that snuck in with some software you agreed to install. Take out as much trash as possible here.
    In particular, be on the lookout for Browser Safeguard (or similar name) or Sendori.
    Then, in Firefox, open the '''Add-ons page''' using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable (or Remove, if possible) unrecognized and unwanted extensions.
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Finally, you can "mop up" remaining issues with the scanning/cleaning tools suggested in this support article: [[Troubleshoot Firefox issues caused by malware]].
    Any change?

  • Nokia BH 501, unstable connection please help

    Hi
    I just purchased the Nokia BH 501 stereo bluetooth headset. The sound quality is OK, but it has been very unstable espesially when I'm walking with my phone in my pocket it keeps falling out. I'm using it on a Nokia 6120 Classic. Is it anything I can do to improve the stability?
    Please help!

    Hi All,
    I am having the same problem. I have a 5310 Xpressmusic and I basically can't move at all with the bh 501. This is a very poor product as I bought them to use while exercising, usually walking, but it is the same on the train or whatever.
    It doesn't matter what pochet or whatever it is still the same problem - constant drop outs!
    Also the volume is not loud enough and it barely can cope with the sound of the tram (I live in Melbourne Australia) when I catch it to work.
    I am really very angry about this and have been putting comments that the product is lousy on technology evaluation sites.
    Have a look at http://www.cnet.com.au/mobilephones/accessories/0,239025938,339273962,00.htm
    and you will see many comments along the same lines.
    Is Nokia going to lift their game and tell and fix this problem for us or give our money back???
    FIX IT NOW - COMPLETE RIP OFF!!!!!

  • Nokia 6111, dont know how to connect, Please Help

    Ive just got a Nokia 6111, and have downloaded the PC Suite, what do I need to do to get a connection between my pc and phone, Bluetooth and Infrared wont work ( i dont think Ive got the thing on my pc to use them??) My pc is 5 years old, but it runs total broadband ok, so dont know if its that. Do I need to buy some sort of cable to connect them?
    Please, any help/recommendations would be gratefully accepted.
    Lethargicweevil, Have a nice day!

    Thanks very much. Will do.
    Lethargicweevil, Have a nice day!

  • Keep losing connection, please help

    I have the WRT160N router.  On both the wired and wireless computer I cant always open the internet, even thoue it says its connected.  Im also using the Linkys adapter, samething happens with this.  Any help please?

    You need to Upgrade/Flash your router's firmware if it is loosing the connection...You can download the Firmware from here , Follow these steps to upgrade the firmware on the device: -
    Open an Internet Explorer browser page.In the address bar type - 192.168.1.1
    Leave the username blank & in password use admin in lower case...
    Click on the 'Administration' tab- Then click on the 'Firmware Upgrade' sub tab- Here click on 'Browse' and browse the .bin firmware file and click on "Upgrade"...
    Wait for few seconds until it shows that "Upgrade is successful"  After the firmware upgrade, click on "Reboot" and you will be returned back to the same page OR it will say "Page cannot be displayed".
    Press and hold the reset button for 30 seconds...Release the reset button...Unplug the power cable from your router, wait for 30 seconds and re-connect the power cable...Now re-configure your router...

  • Can not see the schema under the new connection -- Please help

    The database is Oracle.  Recently I requested our DBA to do a database refresh, and here was she did.
    1. Drop the user (TDEV, schema owner) in Dev.
    2. Recreate the user, TDEV, with the same password, roles and tablespaces.
    3. Using Oracle export command to export data from production under schema owner, TPROD.
    4. Using Oracle import command to import the dump file from TPROD to TDEV.
    5. Both export and import were successful.
    Dev and Production are in two different databases.
    After the importing, using SQL*PLUS I logged into Dev database as schema owner "TDEV", and were able to select all tables.  I also verified there was no schema or user called TPROD in Dev database, and there is no TDEV in Production database.
    However, in Crystal Report, both 10 and XI, when I made the new ODBC (RDO) connection to Dev DSN and logged in as the schema owner user "TDEV", I noticed there is TPROD listed below, but no TDEV.  I tried to select the tables listed underneath TPROD, and got the following error message: "Query Engine Error: '42S02:[Oracle][ODBC][Ora]ORA-00942: table or view doesn't exist'"
    Any ideas or helps are welcome!!

    Try to create a brand new DSN connecting to Dev

  • JBO-26061, Error while opening JDBC connection, please help

    Hello
    I am new to JDeveloper suite.
    I tried to follow BC4J/JSP tutorial found in "JDeveloper Handbook" but every time I try to execute my starter page, I get the following error:
    Error Message: JBO-29000: Unexpected exception caught: oracle.jbo.DMLException, msg=JBO-26061: Error while opening JDBC connection.
    Connection test runs successfully in JDev itself and I had no trouble with creating BC4j components (entity object, view and application module), mapping fields etc. Bc4j.xcfg file looks OK as well as server.xml of OC4J server.
    I guess that OC4J server is unable to connect to database, but I cannot see why and what could be done about it.
    Any recommendations would be warmly appreciated. Please send cc to [email protected] as well.
    Thanks in advance,
    Kristjan

    Kristjan,
    BC4J has a tester that can be used to test applications. Right mousew click onto the Application Module and choose tester from the menu. Use setting as defaulted. If this can't connect, then obviously the database connection defined for the Application module is different from the one you are testing. Also, make sure the database password of the connection gets deployed (checkbox option in the connection dialog)
    Frank

Maybe you are looking for

  • ODP and ADO and a trigger - problem

    I have written a simple trigger to turn on tracing for a session based on the username: It works fine through sqlplus. The application works when run using JDBC and native(?) java. But when we use hibernate and ODP.net and ADO.net The session goes in

  • Can I really only use a CD once?

    I'm a real newbie, so bear with me. I just copied a file to a new cd then ejected it. When I put the cd back in to copy another file I got the message "The item "contacts" could not be moved because "untitled cd" cannot be modified." Can I really onl

  • Pricing condition deletion in CRM

    Hello! We're trying to delete pricing condition using CRMXIF_CONDITION_SEL_DELETE, but we are able to delete only a number of condition records at once. I've read the documentation  for this FM, but  i still can't understand how to delete particulary

  • How to rename seller name in iTunes connect

    HI, In app Store we see that App Name and exactly below that seller name i.e. the name of individual or company name how to rename this name in itunes store?

  • [help] Flash cache problem?

    Operating Environment: IIS6+ASP.Net 2.0+Flash Framework / Procedure: When running, Flash will run ASP.NET program. ASP.NET then extracts data from the database and generates a XML file for Flash. Flash reads the XML file and parse it into a readable