Monitoring/Chekcing the avalability of other system through SAP PI

Hi All,
Is there any mechanism /process, by which we can monitor the availabilitiy of other system through PI.
Other option would manually creating interface to send the probe message and wait for the response,then process the probe message.
Please share your idea/BOKs on this.
Thanks,
MK

Hi,
Few ideas:
1. SAP System: RFC communication channel is recommended and frequent dummy messages can be send to see if it is working.
Note: Monitoring by CCMS of Solution Manager is recommended.
2. Non-SAP System: Use File communication channel for FTP/Ping and monitor communication channel for any issue.
Regards,
Gourav

Similar Messages

  • Is there any way to get the server app other that through the app store. We do not have our system conneted to a network. I typical downloaded items on a non-apple system.

    is there any way to get the server app other than through the app store. The system that I need it on are not connected to the internet.
    We run a closed-loop network of apple systems and I tipically downloaded updates on a non-apple system that was on the internet.
    Any ideas?

    I did buy the server app, went to the app store to download it. This system I'm using for downloads is Snow Leopard 10.6.8, it shows that I can download it but only as an Install which says I need 10.8. I can't seem to find a way for it to just download as a package or .dmg file so that I can copy it to DVD/CD or flash drive.

  • First name is not transmitted to the other system through Idoc

    Hi all,
    Here customer is created in R/3 system & then transmitted to the other system through I doc.
    Issue is first name is not transmitted properly or is transmitted but nit correct value.
    I checked the segments of respective i doc in we05 there i could see right values. But in target system it is totally wrong or the word 'CONSTANT' is coming.
    what could be the reason & where i can find it out.
    Please help me
    Thanks
    JM

    Hi
    The issue should not be in SAP. You need to check with the middleware system which reads the data from SAP and triggers an IDOC and sends it to the other system.
    Regards

  • How to read and store the documents from other system to own system.

    Hi Experts,
    i need to read the document from other system (Say from other connected R/3 system) and then i need to save it in my system.
                     Please suggest how would i proceed?
    Any helpful suggestion will be rewarded with points.
    thanks
    Snehasish

    Hi Abaper
    I think I havent explained my problem well. Here I am explaining it again..
    I want to pull an  *.excel/ *.csv file through ABAP code.The target file that I want to access in my ABAP code is stored into another PC in the same Local area network under some directory say 'c:\temp\credit.csv'.
    I have the logon information of the target file's  PC.
    Please help me with code if anyone of you having.
    Thanks in advance.
    Rgds,
    Snehasish
    Edited by: Snehasish Das on Apr 29, 2008 2:18 PM
    Edited by: Snehasish Das on Apr 29, 2008 2:33 PM

  • How to take the data from sage system to sap r/3

    hi expects,
              how to take the data from sage system to sap r/3? which adapter is to be used?what is the format of data in sage system?how the scenarios will work ? please help me in solving this problem?

    hi rohit,
    the data transfer can be done by using SOAP adapter
    do chk this link
    http://www.sage.org/lists/sage-members-archive/2001/msg01718.html
    http://www.sage.org/lists/sage-members-archive/2001/msg01739.html
    thanx
    Sampath

  • How to find the roots of other system in the network

    With out using RMI can we find the other system drive information(the roots available) from local(my) system..?

    public class roots{
    public static void main(String args[]) throws Exception
    System.out.println("The Drives are:");
    File[] roots = File.listRoots ();
         for (int i = 0; i < roots.length; i ++) {
         System.out.println (roots);
    This displaying the local system roots. Here how can i implement remote-filesystem protocol such as SMB or NFS .?
    I am not aware of this implementation as i am beginner ...
    kindly help me

  • How to telent system through sap router

    Dears,
    Do you know how to telnet system through saprouter ?
    (ex. local pc > saprouter > telnet some system)

    Hello
    You can use SAPRouter for make a telnet connection between your client and remote host, but ssh is not supported by SAP (OSS note #37001).
    Example:
    In the saprouttab that use your SAPRouter add the entry:
    P <IP adress PC> <IP remote host> 23
    You can use SNC Encryption.
    Bye

  • Meter data aquisition system through SAP

    Hi All,
    Can anyone tell me the way to implement the MDAS through  SAP.
    Thanks in advance
    Edited by: Godadhar  Maity on Apr 8, 2010 7:22 AM

    got ans

  • To access the data from logical system to sap system

    Hi SDN SAPERS,
    I am getting a problem.
    So I need ur instant help.
    There is a  standart report named Rptcc106 having select-options logical system.
    And there is a check box and we have to click it named general idoc.
    But the issue is when I execute it should be retrive the data from logical system.
    The data are not in the logical system.
    It is a time management system blongs to sap hr.
    What are the time input and time output  a employee put in a punching machine the times should be update in sap hr.
    sapcdt45 is the standard report to time events.
    Regards
    Debasish
    [email protected]

    Yes, you can use regular TCP/IP or UDP communication for LAN communications. There is however no built-in support for much else then WebRequests, so if you want to use any other protocol you will either have to implement it yourself on top of TCP/IP or
    look for community projects that add said support (I'm currently not aware of any but it's worth looking around).

  • How to upload and Download the file in a system through java programing

    I am trying to upload a file as well as want to download the uploaded file in my system....I don't have any server an all.
    I want to implement this in my system only .
    I got this code but i don't know ,where i have to make the change and what are the parameters i have to pass.
    can any one help me on this code ....please
    here some piece of code
    File Upload and Download Code Example
    package com.resource.util;
    public class FileUpload
    public void upload( String ftpServer, String user, String password,
    String fileName, File source ) throws MalformedURLException,
    IOException
    if (ftpServer != null && fileName != null && source != null)
    StringBuffer sb = new StringBuffer( "ftp://" );
    // check for authentication else assume its anonymous access.
    if (user != null && password != null)
    sb.append( user );
    sb.append( ':' );
    sb.append( password );
    sb.append( '@' );
    sb.append( ftpServer );
    sb.append( '/' );
    sb.append( fileName );
    * type ==> a=ASCII mode, i=image (binary) mode, d= file directory
    * listing
    sb.append( ";type=i" );
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try
    URL url = new URL( sb.toString() );
    URLConnection urlc = url.openConnection();
    bos = new BufferedOutputStream( urlc.getOutputStream() );
    bis = new BufferedInputStream( new FileInputStream( source ) );
    int i;
    // read byte by byte until end of stream
    while ((i = bis.read()) != -1)
    bos.write( i );
    finally
    if (bis != null)
    try
    bis.close();
    catch (IOException ioe)
    ioe.printStackTrace();
    if (bos != null)
    try
    bos.close();
    catch (IOException ioe)
    ioe.printStackTrace();
    else
    System.out.println( "Input not available." );
    }

    At least that is what the code you posted suggests to me.It looks like that to me too.
    I believe that
    URLConnection urlc = url.openConnection(url);Will return you an FTP URLConnection implementation if you pass it a ftp:// url
    So for simple FTP ops, you don't need any external libs.
    Actually, looking at your code, this is already what you are doing, so I really don't get this:
    am not using FTP server..... i want to implement in my system only ....So How i will do.
    Can you give me any idea based on this code Can you explain a bit more what you need?
    patumaire

  • Calling the RFC from other system.

    Hi Everybody.
    I have two systems.One is ECC and other is SAP R/3.
    I have created one RFC in SAP R/3 system and I am calling this
    RFC fom ECC system.On click of one button,I have to show some
    fields from the RFC onto the screen of WDA .
    How can I achieve it ? Is there any code for that or some link
    available for that.
    Thanks In Advance.

    hi vaibhav...
             using rfc you will be calling a function module in r/3. so it will return some exporting parameters, bind it to the attributes that are created in the context or
           create a destination in ecc6 to call the r/3 system .u se service call and mention that destination while creating it.
    ---regards,
       alex b justin

  • How read information from other clients (other systems) of sap

    Hi
    I have a requiremt to read the roles assigned to a user id in production system to the developemet system.
    So how i can get this production system information from development.
    Could please  please let me know how to call the remote function calls.,  How to go about this.
    guys could you please help me out in this.
    regards,
    Steve.

    Hi
    -A) Trx SM59:
    Choose R/3 connection and search the production system connection.
    If there isn'r basis t, u or your basis should create it.
    -B) Create a program using a RFC function module to pick up the user roles:
    CALL FUNCTION <FUNCTION> DESTINATION <DEST>.
    Where <DEST> is the name of the production system connection defined in SM59.
    The function <FUNCTION> has to be a RFC (Remote Function Call) like a BAPI.
    MAx

  • Doubt With Services in The portal for other modules of SAP

    Dear Experts.
    I don't know if this doubt I should post in the forum   ERP Employee Self-Service .
    In The portal SAP have service for E-Recruiting(E-RC), Employee Self-Service(ESS), Manager Self-Service(MSS), Learning Solution(LSO), that are services of HCM.
    My question is : SAP have solutions in the portal for the following components:
    Materials Management (SAP-MM), SAP-FI , and other components of ERP in the portal?
    Thank in advance for your help,
    Regards

    Hi,
    For close this post: Have the following question:
    There are is Business Package for the components of Materials Management (SAP-MM), SAP-FI ,
    in the portal?
    Regards

  • Mac Pro will connect to internet but not network with other systems

    I have an iMac in my studio reception and a Mac pro and Macbook in my office. All three systems can connect to the internet but the Mac Pro has stopped networking with the iMac. However the iMac can network with the Pro. I have an ethernet cable connection to the Pro (no wi fi card) and I have a wireless router on the iMac which has enabled me to connect the Pro to other systems through wi fi. I also have a PC laptop and the Pro can connect to it via wi fi. Everything was networking properly several weeks ago and as far as I am aware I have not changed any settings. Does anyone have any suggestions on how to resolve this annoying little problem.

    Hello there, WoodenToy.
    The following Knowledge Base article offers extensive troubleshooting steps for troubleshooting your issue:
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    http://support.apple.com/kb/HT4628
    Although the entire article is a great resource you may want to focus on the section entitled: "Symptom: My Mac does not connect to the Internet".
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Displaying sales order from other system

    Hi Experts,
    I have a requirement of displaying sales order from other system. I will be fetching sales orders through a RFC call and displaying it in an ALV. on clicking of the sales order displayed from the ALV, I need to display it from the other system.
    How can I go about this?
    Please help.
    Regards,
    Rohan

    rohan,
    you already have answered most part of your question.
    - displaying SO from other system through RFC:
    create a remote enabled function in that target system. call this FM from your current system. (for RFC calls check this: [RFC help|http://help.sap.com/saphelp_nw04/helpdata/en/22/0425f2488911d189490000e829fbbd/content.htm]
    displaying SO by double clicking in ALV:
    --ALV's comes with a event USER_COMMAND. in this event you can pass your subroutine and in your subroutine you can do your coding... take help from sdn searches like :About FM ALV user_command Event
    hope these helps
    Somu

Maybe you are looking for

  • My bookmarks don't show even though the bookmark bond is turned on.

    The bookmarks haven't been deleted. I've tried turning the bookmark bond on and off. Unfortunately it didn't work.

  • Game Center issues. Please help!

    I recently changed my Apple ID email to my gmail one because my other one got hacked. After switching it over everything ran smoothly except for my Game Center profile which would work occasionally, but now every time I try to sign out and sign back

  • Adding query string to files already within shared documents

    Am a Sharepoint newbie, so hopefully this is an easy one. Am trying to add a query string to some hyperlinks (of PDF files) that are already published in a Shared Documents web part. What's the best way to accomplish this? Can't seem to find an easy

  • [SOLVED]Can´t mount nfs shares!

    Hello, I am trying to get up a fileserver. I installed an old PC with Arch and configerd it over SSH. I followed the wiki over NFS and NFSv4. But everytime I want to mount a share that is in the physical map /home/jozef/shares/downloads, I get the fo

  • Missing or stollen I pods

    **Is there anyway to find out if someone stole my I Pod. I know where I left it at my house and then it ended up missing. Can It even be used on another computer? I thought it needed to be used at the same computer for it to work? Has anybody had any