Transfer of data from a third party application to SAP R/3 using PI

Hi experts,
I have a scenario where am supposed to transfer data from an application already developed to SAP R/3
Just wanted to confirm if the following approach is right
SOAP>PI>SAP R/3
we would have an RFC defined on SAP. this would be exposed as web service on PI which means i define the outbound interface to be exposed to as web service. Source system calls up the webservice.
Issues
1. Authentication mechanism to be used
2. type of adapter to be used between source system and PI. Assume either of SOAP or WS adapters would work
Valuable inputs are appreciated
Regards,
Kalyan

1. Authentication mechanism to be used
Check this help section to know about the authentication mechanism:
http://help.sap.com/saphelp_nw70/helpdata/en/fc/5ad93f130f9215e10000000a155106/content.htm
Check the Inbound Security Checks and the Security Parameters section.
2. type of adapter to be used between source system and PI. Assume either of SOAP or WS adapters would work
SOAP adapter should suffice...WS may not be needed.
Regards,
Abhishek.

Similar Messages

  • Access data from a third party warehousing tools in BEx WAD

    Hi,
           I would like to know whether it's possible to access data from a third party warehousing tools ( For eg: Cognos) in BEx Web Application designer. Any help would be appreciated.
    Thanks

    Hi,
    BEx Web Application designer is only integrated to BIW server. So We can not access data of other tools unless the data is stored in the BIW server as the data in any data target. 
    With rgds,
    Anil Kumar Sharma .P

  • Hey good day. i recently made a back up on my phone. then i took some pictures and videos. i accidentally restored the phone. some pictures and videos including pictures from my third party application were all gone. can i still have those back?

    hey good day. i recently made a back up on my phone. then i took some pictures and videos. i accidentally restored the phone. some pictures and videos including pictures from my third party application were all gone. can i still have those back?

    No. If you restored the device to an older backup, then the device was brought back to that date and time, which was before those photos were taken. When you restored the device, it deleted everything off the phone and replaced it with the earlier information.

  • Realtime data integration with Third party application

    A customer wants to send data to a third party application when a user modifies some information on a business object (ie PO Amount, Employee Name etc). How can you trap this change as close to realtime as possible within SAP?

    In addition to Senthil's reply, it may also be possible to hook into a workflow event, provided such an event is raised.  Whilst I prefer the change pointer approach outlined by Senthil, it does enforce a delay between the "application event" itself and change pointer processing.
    To see if a workflow event is raised, in a non-production system, use transaction SWU8 to activate the workflow trace.  Next perform the update that you wish to trap.  Finally, use transaction SWU9 to display the workflow log.  Hopefully you'll see a workflow event raised for your update (for example a CHANGED event).
    This will allow you to perform either synchronous or asynchronous processing immediately (the norm is for workflow processing to be triggered immediately but asychronously).
    It would be great if all SAP objects supported a common event model, with BADI's for standardised events for create, change, etc.  Maybe one day, but not today...
    Cheers,
    Scott

  • How to call the RFC's from the third party applications or Non SAP applicat

    Hi,
    For calling RFC's from the wedynpro , SAP has provided the modeling concept.
    In the same way, if i want to access or call the RFC 's from the third applications or Non SAP applications what is the procedure and what is the methodoligy.
    As per my knowledge, we need to expose those RFC's as webservices . Then we must be able to acces in hetrogeous environment from any third party applications..
    Please revert back soon, It is very urgent.
    Regards
    Vijay

    Ayyappa Raj,
    Thanks for the reply.
    Please let me the detailed information for implementing.
    AS you said . I need expose the RFC's as webservice. This point is clear to me.
    2) Use tthe JCo to connect and create client proxy.
    Can u please elabrate the above point?
    If u have any steps created in the document or url to refer. Please forward it to me.
    Please forwar the document to this id "vijay00" in yahoo.
    AS the sdn is not allowing to give  the maill id i have given only the id details in yahoo.
    I am new to this procedure.
    Regards
    Vijay

  • How to import  Third party application through SAP in ABAP

    Hello,
    This is regarding importing third party application or non sap application through SAP or through portal...
    is there any way to do the same?
    actually our organization is having one independent application developed on .NET platform. we need to connect that in mY SAP R/3. so pls suggest me some proper way to achieve this one.
    regards,
    jigar
    [email protected]

    You can connect to SAP from a .Net application using the .NET connectors. Please find the help below
    http://help.sap.com/saphelp_nw2004s/helpdata/en/e9/23c80d66d08c4c8c044a3ea11ca90f/content.htm
    http://www.microsoft-sap.com/overview_sap_connector.html
    http://www.sapgenie.com/interfaces/netconnector.htm
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • How to get the updated data from a third party database in office 365 list

    Hello - I am trying to access a third party software database to create a dynamic Dashboard in SharePoint, and my approach is :-  
    Sync the 3rd part database in list (should get sync in list whenever new data is added to the 3rd party database) or if possible syc the data from CSV file to sharepoint list.
    I need to get that data into Giant chart or Dashboard
    any help will be highly appreciated.
    Thank you!

    There are many options available in SharePoint Online office 365 for connecting to External data e.g. external lists, Business Data Web Parts etc. Please check these urls for more details -
    Introduction
    to external data
    Use
    external data in workbooks in SharePoint Online
    Overview of Business Connectivity Services in SharePoint 2013
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Error to transfer the data from work area to application sevrer file

    Hi,
    I tried to write a file in Application server.
    I tried the below code
    DATA: p_file type char255 VALUE '/H:usr/sap/ccms/test.txt', delimiter TYPE char255 VALUE ' '.
    OPEN DATASET p_file FOR OUTPUT IN TEXT MODE encoding default.
    LOOP AT itab into wa_itab.
    TRANSFER wa_itab TO p_file.
    ENDLOOP.
    CLOSE DATASET p_file.
    I am getting the below error ,
    "WA_ITAB" cannot be a table, a reference, a string, or contain any of these objects.
    Can anyone let me know ,what is the issue?
    Reagrds,
    Priya

    Hi,
    Well, the message is clear enough you cannot transfer a structured variable as is...
    You could do something like:
           LOOP AT gt_itab ASSIGNING <rec>.
             CLEAR l_text.
             DO.
               ASSIGN COMPONENT sy-index OF STRUCTURE <rec> TO <field>.
               IF sy-subrc = 0.
                 IF sy-index = 1.
                   l_text = <field>.
                 ELSE.
                   CONCATENATE  l_text l_tab <field> INTO l_text.
                 ENDIF.
               ELSE.
                 EXIT.
               ENDIF.
             ENDDO.
             TRY.
                 TRANSFER l_text TO g_file.
               CATCH cx_sy_conversion_codepage INTO l_oref.
               CATCH cx_root INTO l_oref.                     "#EC CATCH_ALL
             ENDTRY.
           ENDLOOP.
    Or, set all components of your table as CHAR.
    Hope it helps,
    Kr,
    m.
    Edited by: Manu D'Haeyer on Sep 27, 2011 12:48 PM

  • Handling load of data in PI - third party systems to SAP R3(Idocs)

    Hi,
    Request your help in addressing the below issue:
    PI (PI 7.0) is receiving a huge load of messages from third party systems at one point of time and it is creating Idocs and dispatching the Idocs to SAP R3 system.
    Since the load that is being received by R3 is more than the work processed available in R3 system, the Idoc processing is being set as a background job which inturn is creating spool requests in R3 system and this is leading to spool overflow issue.
    Is there any possiblity to control the dispatch of Idocs from PI system, say, the Idocs should be queued up in tRFC of PI until the work process in R3 system would be available.
    Please suggest any other possible resolutions to resolve this issue.
    Thank you.
    Regards,
    Subbu

    >>Please suggest any other possible resolutions to resolve this issue.
    Modify idoc occurences and send individual idocs could solve your problem
    Check Michal blog
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change
    Idoc packaging suggestion given in this thread
    Re: XI/PI: Receiver IDOC adapter packaging
    Edited by: Baskar Gopal on Mar 25, 2011 12:52 PM

  • Import Suppliers from third party application

    I was wondering if anyone is aware if you can automatically import Suppliers from a third party application.

    HI,
    If you are planning to import customer from your legacy system or any other data base..there are some ways..
    do specify wht exactly u want to do..
    regds,
    tarak

  • BAPI for Sales Order Creation from Third-party Application

    Hi,
    I need to create a Sales order in a SAP system from a third-party applications. Please provide the list of BAPIs/Interfaces that are involved in creation of Sales Order.

    Hi,
    Check this link, explains step by step.
    http://abaplovers.blogspot.com/2008/02/bap-sales-order-create.html
    Thanks,
    Krishna

  • Selective Transfer of Data from MacBook to MacBook Pro (both Intel)

    Just got a new MacBook Pro. Needless to say, I'm feeling very lucky and excited.
    I already activated it and have been using it. Nice!
    Can anyone provide suggestions on how to selectively transfer data from my old MacBook to the new MacBook Pro. Information on each computer is provided below.
    Data From (old computer)
    Model Name: MacBook
    Model Identifier: MacBook4,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 3 MB
    Memory: 4 GB
    Bus Speed: 800 MHz
    Boot ROM Version: MB41.00C1.B00
    SMC Version (system): 1.31f0
    Serial Number (system): WQ827FDE0P1
    Hardware UUID: 414D4BBF-EB7E-5A86-9AA3-B2C9BE31C9AA
    Data To (New Computer):
      Model Name:    MacBook Pro
      Model Identifier:    MacBookPro6,1
      Processor Name:    Intel Core i7
      Processor Speed:    2.66 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache (per core):    256 KB
      L3 Cache:    4 MB
      Memory:    8 GB
      Processor Interconnect Speed:    4.8 GT/s
      Boot ROM Version:    MBP61.0057.B09
      SMC Version (system):    1.57f17
      Serial Number (system):    C02CQ0Z0DD6Y
      Hardware UUID:    ABC70E84-F9B2-5EB3-8109-80A2229DE8D2

    Turn off both computers. Connect a Firewire cable between the two computers. Boot the old computer into Target Disk Mode. Boot the new computer normally. Upon startup you should find a disk icon for the old computer's hard drive on the Desktop of the new computer. You can access it like you would any normal disk drive.
    You can use Migration Assistant if you wish to transfer the entire Home folder, third-party applications and support files, and preferences from the old computer. MA cannot be used to make selective file/folder transfers.
    If you have a Time Machine backup of the old computer you can do selective restores from the TM backup using the TM application.

  • Third Party Applications? What exactly are they?

    Right,
    I've read alot about the Blue Screen that appears when Upgrading to OSX Leopard. I am intending on upgrading tomorrow when my external hard drive arrives so I can Clone my 10.4.11 onto the external hard drive and upgrade the cloned version first but would like to know if I can check in advance for any of these' Third party App's'? and what exactly are they?
    Regards,

    A third party application is anything not made by Apple. It can also include products that Apple purchased fairly recently (some of those "Pro" apps) that weren't coded to Apple's specfications and haven't been well tested. Apple doesn't and shouldn't test their software with third party applications. It isn't their job to test other people's software. They probably make exceptions for things like Office and Photoshop, but that is a short list.
    Most third party applications will be fine. The ones you have to worry about are those that ask for your password when you install them. They can then install any sort of incompatible software.
    After you clone your hard drive, verify that you can boot from the external drive and all your data is there. If so, don't upgrade the external drive. Boot using the 10.5 DVD and immediately run Disk Utility and re-partition your internal hard drive to wipe it out completely. Then install Leopard. Do not use Migration Assistant. Re-install all your 3rd party applications that are 10.5 compatible. Be very careful about copying over from backup anything in a Library/Preferences folder. You can copy any preference file from a third party application back over - those are safe. Anything from Apple may have been upgraded. Only copy over the Apple files that you absolutely have to, such as your Mail folder and Address book file, for example.
    It sounds like a lot of work but it will only take a couple of hours.

  • Logoff third party applications

    Hello,
    We have integrated a couple of SAP-independent third-party applications into SAP EP (NetWeaver 2004s SPS11) by use of appintegrator. Some of these applications are located in different domains as the portal itself. These applications have usually logoff URLs. How can I achieve an automatic logoff from all backend applications when logging off from portal? I have read something about DSM Termination, but this seems to work mostly for SAP Backends.
    Thanks for your help and any ideas.
    Elmar

    Hi Sonja,
    Yes, you are correct . The DSM terminator only works in case of SAP backend systems which are following the domain rule. This is as the DSM terminator calls a certain component in the backend to ensure the log off.
    The Enterprise portal is not aware by default of the third party application sessions that exists. you need to write a custom portal service, which keeps a tab on the external application sessions open and also which initiates a close of session on the 3rd party backend. As you have guessed that this particular method might require a modification of the application integrator component to suit the need and communicate with the Custom Portal service mentioned.
    cheers,
    Shantanu .

  • Partner Profile type : Receiving Data from an 3rd party sys & Posting IDoc

    Hi all,
    My scenario is Receiving Data from a third party system and sending it to a R3 system as an IDoc...
    It is a B2B scenario.....
    So please tell me what should be my Scheme for the indentifier that i will be mentioning in the sender party...
    Should it be ALE#KU or ALE#LS.........
    it is working fine with ALE#KU...i m getting an error if i define it as ALE#LS......
    Is there an extra setting that should be done for configuring it as ALE#LS or , it is not possible configuring using ALE#LS
    Thanks in Advance,
    Sushil H.

    Hi Sushil,
    I have a similar problem and opened a thread: Unable to convert the sender service ABC_Service to an ALE logical system
    i was able to do it without specifying any identifier ...and mapping the sender information in the message mapping,,,,
    Can you please tell me:
    1) What value you specified in the mapping for sender (was it 3rd party/ PI/ R3)? Did you disable the other fields like RCVPRN/ RCVPOR etc?
    2) Did you make any change in the receiver channel for IDOC (in identifier section)?
    It will be very helpful to me if you reply.
    Thank you,
    Pankaj.

Maybe you are looking for

  • Need assistance in Web Analysis Report

    Hi All, I am using HFM as the data source for reports and using Hyperion 931 components. I have a requirement in Key Performance Indicators reports (KPI) 1) Need to have a custom column of current year Actuals Vs Plan data 2) Need to have a custom co

  • Problem viewing videos with 5th Gen 30 GB Video

    My iPod video is older, got it back in 2005. It used to play videos just fine, but now when I try to play something, it jams up. Just a black screen with a play indicator and a battery indicator, but no movie. You can't menu back and have to soft res

  • My ipod touch front camera ist working since i update it to IOS7 i think is a bug or something. pls try to fix it because this **** is taking me crazy

    my ipod touch front camera ist working since i update it to IOS7 i think is a bug or something. pls try to fix it because this **** is taking me crazy

  • Color in ALV

    Hi ! I have made a ALV report. On the output screen, whenever the user clicks on the material name then, ME1P alike my custom report comes up with material purchase history report. Now, in this report the requirement iis :- 1). The respective P.O. No

  • Pie SVG chart question

    Depending on number of different values, often most important values are shown with light colours which are not so brightly shown. Of some minor values are shown with dark good seen colours. How to put exact colors on some serious values...or how to