Out bound interface (SAP to other system)

Hi all
iam having scenario , where i have to select some data from SAP tables and i need to put this data in a File at application sever . From here , the data will proceeds to other system.
When our interface triggers it will undergo certain data mapping and translation rules. Once the data mapping is done SAP will generate data in a fixed delineated format which will then uploaded or read by the other system iterface. This part iam unable to understood?
tell me how i need to proceed for the above cases.
regards
venkat

Hi,
After u get the data u can check mapping and translation rules and then finally put the data in application server
use OPEN DATASET , tranfser the values and then CLOSE DATASET..
Check the below link..
http://www.sapdev.co.uk/file/file_uploadsap.htm
Regards,
Nagaraj

Similar Messages

  • Standard XML schema for Vendor data exchange between SAP and other system

    Is there a SAP standard way of XML schema that we exchange between SAP and other system? Please let me know.
    Thanks.

    See SAP Interface Repository (http://ifr.sap.com).
    My proposal is to leave old SAP connectors staff and use SAP Exchange Infrastructure. There is a support of industry XML standards in XI 3.0 like xCBL.

  • In-Bound & Out-bound interfaces list of GL, AP & PO modules

    Hi,
    GoodDay, I'm working with GL, AP & PO modules. Please let me know both In-bound and Out-bound interfaces list of those three modules.
    Regards,
    Ram.

    For 11i, these are listed at http://irep.oracle.com
    HTH
    Srini Chavali

  • Out bound interface

    Hi all
    iam having scenario , where i have select some data  from SAP tables to other system using Interface . So i need to put this data in a File at application sever . From here , the data will proceeds to other system.
    When our interface triggers it will undergo certain data mapping and translation rules. Once the data mapping is done SAP will generate data in a fixed delineated format which will then uploaded or read by the other system iterface. This part iam unable to understood?
    Give me how i need to proceed for the above cases.
    regards
    venkat

    Use fnd_profile.value (your_profile_name) in your code.
    Hope this answers your question
    Sandeep Gandhi

  • For inbound and out bound interface

    what is inbound interface and outbound interface.what is diff b/w inbound and outbound interface.
    thnx

    Hi,
    The interface through which data comes inside SAP is inbound interface on the other hand the interface through which data goes out of SAP is called outbound interface.
    Rgds
    Mayank

  • Need to send data as files from SAP to other systems.

    I need some code which will be useful to me. I fetched data from sap to internal tables. Now, the data needs to be sent to other systems (Informatica or so..) as files. Pl. anyone send me a sample code which i can use in my program.
    I will try to reward points to people who will be able to help me.

    Hi, Pl. find the required code which might be useful for ur question.
    Get the data for Userid(l_user) & password(l_pwd) & host string(l_host).
    DATA: l_slen     TYPE i,
          l_error,
          l_pwd(30)  TYPE c.
    CONSTANTS: c_dest TYPE rfcdes-rfcdest VALUE 'SAPFTP',
               c_key  TYPE i              VALUE 26101957.
    connect to ftp server
      l_slen = STRLEN( l_pwd ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = l_pwd
          sourcelen   = l_slen
          key         = c_key
        IMPORTING
          destination = l_pwd.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          text = 'Connect to FTP Server'.
    To Connect to the Server using FTP
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = l_user
          password        = l_pwd
          host            = l_host
          rfc_destination = c_dest
        IMPORTING
          handle          = w_hdl
        EXCEPTIONS
          OTHERS          = 1.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Get the path to which the data file needs to be moved (w_outfile).
      PERFORM download_to_ftp TABLES it_coacode USING w_outfile.
    FORM download_to_ftp TABLES it_tab
                         USING l_string TYPE char64.
      CALL FUNCTION 'FTP_R3_TO_SERVER'
        EXPORTING
          handle         = w_hdl
          fname          = l_string
          character_mode = 'X'
        TABLES
          text           = it_tab[]
        EXCEPTIONS
          tcpip_error    = 1
          command_error  = 2
          data_error     = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                RAISING invalid_output_file.
      ENDIF.
    ENDFORM.                    " download_to_ftp
    Pl. award points if it has solved ur problem.

  • HOW to update real time data from sap to other application?

    We have two option of passing data from sap to other system.
    1. web service
    2. through idoc.
    can anyone tell me advantages & disadv. of these two options.
    Which scenario shd we use web service & idoc.
    How is idoc triggerred.?
    Is it only through user exit?
    Kindly suggest any other ways for interacting with a 3rd party system which does not use a file.

    Dear Libin,
    IF you are using sap sytem as a sender then its better to use idoc's. Actually both systems (idoc and webservice) have there own advantages and disadvantages. Look up sdn for more info.
    My personal choice would be idoc since with webservices you would need special tools like xml spy or altova and the skill to analyze and run those tools.,, its a little tedious..
    Rgds
    joel

  • 1)    Is there North Bound Interface / API from SAP Solution Manager available for 3rd party integration?       i. The list of the modules that are being managed by SAP Solution Manager(s)      ii. The performance metrics of those modules/components at th

    1)
    Is there North Bound Interface / API from SAP Solution Manager available for 3rd party integration?
    i. The list of the modules that are being managed by SAP Solution Manager(s)
    ii. The performance metrics of those modules/components at the high level
    iii. The information about Early Watch Alerts (or situations to watch for)
    2)
    Is there a full SNMP interface for getting the above information from SAP Solution Manager?
    3)
    Is that understanding that SAP has SNMP support for forwarding alerts to a 3rd party system, correct?
    4)
    Does SAP has both free and licensed? If yes then what are the advantages of licensed over the open/free version?

    Mugunthan
    Yes we have applied 11i.AZ.H.2. I am getting several errors still that we trying to resolve
    One of them is
    ===========>>>
    Uploading snapshot to central instance failed, with 3 different messages
    Error: An invalid status '-1' was passed to fnd_concurrent.set_completion_status. The valid statuses are: 'NORMAL', 'WARNING', 'ERROR'FND     at oracle.apps.az.r12.util.XmlTransmorpher.<init>(XmlTransmorpher.java:301)
         at oracle.apps.az.r12.extractor.cpserver.APIExtractor.insertGenericSelectionSet(APIExtractor.java:231)
    please assist.
    regards
    girish

  • PI 7.31 (single stack) posting to RFC configuration gives this error: om.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: String index out of range: 0 (raised by system extern ...

    Getting cryptic error while trying to post to a custom RFC from PI 7.31 single stack.
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: String index out of range: 0 (raised by system <extern>|pidevhost)
    Does anyone recognize this error and/or know of detailed instructions for registering custom RFCs in PI 7.31. I could possibly have configured the target wrong but no error says so.
    This is a File-->PI-->RFC scenario. The file processing is super simple and a configuration I have used successfully before. I would assume I'd get a different error if it couldn't parse the file.
    Jody

    Not shure if you already did but try getting some details with XPI Inspector. Also increasing log level for this category might help. You also may wanna check authorization (even if this should show with a different error text) in ECC using ST01.
    My guts feeling is that there is something wrong with payload / signature of RFC.
    Cheers
    Jens

  • System.out.println in SAP J2EE Engine - Config Tool

    Hi everybody.
    I was having problems with viewing my System.out.println sentences in my NetWeaver's J2EE applications.
    It's supposed that I can't see the files because I have to assing a log archive for System.out controller in SAP J2EE Engine - Config Tool.
    The problem is that I can't find the place to modify the property of that controller!
    I've edited the log-configuration.xml file, but when I restart the server to reload the new configuration, the files I've added to this file, disapear.
    Any idea about this???
    Any answer is well accpeted.
    Thanks,
    Alberto.

    Nobody knows something about this System.out problem??
    Thanks!

  • How to detect ipaddresses of other systems in a given network Interface ??

    Guys ... I know only the Network Interface and I want to know the IPAddresses that have been assigned to the other systems on that Network Interface .. I m making an application on packet sniffing..
    I want to show the list of hosts on a given Network Interface or device when a User selects one..
    but I just can't seem to find a method ...
    I know this is kinda easy .. but plz help me out..
    eg:- The User selects Nvidia Ethernet device...
    then i want to display all the computers that are connected to the Nvidia Ethernet device ..
    in short , I want to know ip addresses of other systems on a network ........

    itssumitrai wrote:
    Well... yeah I m making use of jpcap ..
    and yeah just as windows generates a list of computers on a network , I wanna show
    the list of computers along with their Ip addresses reachable vi a network interface ....
    Certainly there would be a way to access that very information using the Windows OS API.
    And plz .. its pretty clear what i want to do .. just help me out instead of finding mistakes in terms ....Help...
    Unless you are the owner of that network then I suggest that you get permission in writing (pen and ink rather than email) before doing whatever it is that you want (unless you use the windows API).
    People have been fired, expelled and had civil/criminal legal proceedings against them for network scanning even when they thought they had permission.

  • 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

  • What makes an idocs go out of SAP to external systems.

    Hi Experts,
    I have created many idocs in sap. they are in status of 03 meaning ready to be
    transmitted. but they don't go out of sap, they still remain in queue in sm58.
    If i process it manually it is going. but it should be done automatically.
    what makes an idocs go out of SAP to external systems.
    It is very urgent issue.
    Can any body help in this. Valuable answers will be rewarded.
    Thanks & Regards,
    Satish.

    Hi Sathis,
    Same proble i was faced recently.
    The problem was occured because of error opening an RFC connection.
    you can see by yourself in the following way.
    Goto SM 59.
    Select your appropriate RFC destionation say if destination is assigned  'TCP/IP connection' or 'R/3 Connection', under that select ur destination and press 'TEST <b>CONNECTION'</b> if shows green mark there is no error in connection or it indicates with red there is error in RFC destination connection.
    Suppose if error is occured there is no basic communication setting done between these cleints, if it is case you would be go and talk to BASIS guy and he will make provides destination.
    if any furthore doubts feel free to mail me to [email protected] or reach me 09886869625
    <b><REMOVED BY MODERATOR></b>
    Regards,
    Vijay
    Bangalore
    Message was edited by:
            Alvaro Tejada Galindo

  • IDES and other Clients in one SAP ERP 2005 System

    Hello everybody,
    within a project for my master thesis i have to set up an SAP ERP 2005 System. This system should contain at least three clients. One of them should be the IDES client. Another client should be set up with an existing template. The third client should represent a smal company or at least i should set up some example process from the company (there is no need to map the whole company in the system). These processes should be realized with the SAP standard processes and they should just show how to map easy processes to SAP ERP. Neither the second nor the third client need to run in a productive environment, everything is just for training and testing.
    My main Questions are:
    I've already set up the SAP ERP 2005 System but without IDES. Can I still integrate the IDES Content or do i have to reinstall the whole System with a complete IDES Installation?
    Can I implement the second and third client in the same ERP System (where the IDES client is) or do i need different Systems for it? Even if there is no productive use for the clients we would like to have a Development and a Quality Landscape. Is this possible with the IDES client? Actually I have two fast machines for this purpose - one for quality and one for development.
    I would be very grateful for any hints.
    Thanks a lot.
    Regards,
    Martin

    Hi,
    You can use SAP IDES as Dev and Quailty.There is no diffrence in full sap or IDES .In IDES we have some pree configure Clients and full Ecc we have three client 000,001 and 066.
    So you can use SAP IDES as DEV.
    Your Question :I've already set up the SAP ERP 2005 System but without IDES. Can I still integrate the IDES Content or do i have to reinstall the whole System with a complete IDES Installation?
    Ans : you install diffrent mechine.We do't use any content.Do reinstall
    Thanks
    Pankaj Kalsayan

  • Response from RFC as Outbuund interface for other system

    I have scenario RFC -> XI -> RFC
    Is it possbile to get Response from receiver rfc, perform  mapping and send to other system without BPM?

    Hi Denis
    Certainly. You can do that without BPM.
    Please take help from the following links. (are for RFC->XI->SOAP scenarios, but you may well replace the receiver system (SOAP) with RFC.)
    /people/shabarish.vijayakumar/blog/2006/03/23/rfc--xi--webservice--a-complete-walkthrough-part-1
    /people/shabarish.vijayakumar/blog/2006/03/28/rfc--xi--webservice--a-complete-walkthrough-part-2
    Feel free to get back for more clarifications.
    -Cheers, Gaurav

Maybe you are looking for

  • Is it possible to obtain the last IP address from which the device has displayed a message from Find My iPhone ?

    Hello, a couple of months ago my macbook got stolen so when yesterday i recieved an email my message was displayed on it i was wondering if there is a possibility to get the last IP address used on that machine .So if there is such possibility could

  • Problem in BAPI for FB70

    Hi all, I have used the BAPI_ACC_DOCUMENT_POST to create the customer invoice.But, when i run the program it is giving the error as    Error in document: BKPF $ DEVCLNT250    Incorrect entry in field OBJ_TYPE: BKPF i am passing the entry as OBJ_TYPE

  • Log me in pro file transfer

    Just installed a new computer,I log on to log me in pro with no problem but I can't transfer files from one computer to another.... Any Suggestions? Thanks Marc B. 

  • Converting photo taken by Ipad into JPEG format

    I took a picture with my Ipad and I need to put it in JPEG format and  send it as an attachment to an email.  How do I  do that?

  • Shared Technologies interrupted error

    I have tried everything, cannot get around this error, any ideas?  Windows 7Pro, anti virus disabled, installing as admin Also just installed Lightroom 4 and Photoshop elements with no issues I uninstalled Elements and Lightroom.  Tried again to inst