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

Similar Messages

  • Oracle Quality Itegration with Third party application

    We are trying to build the interface between EBS Oracle quality and third party application for Non conformances and dispositions.  Currently there is no business events or public APIs available for publishing  quality data out from EBS to third party. Please suggest the latest trends available for Integration of quality with external application using service base integration.

    Hello Sandeep,
    have you looked at these docs for Fusion Apps Financials / ERP Cloud?
    - Implementing Tax -- http://docs.oracle.com/cloud/latest/financialscs_gs/FAITX/toc.htm
    - Using Tax -- http://docs.oracle.com/cloud/latest/financialscs_gs/FAUTX/toc.htm
    The "Implementing Tax" contains a chapter about integrations with 3rd party providers. Is this what you are looking for?  If not, could you clarify what you mean by "integration with 3rd party applications"?
    Thanks,
    Oliver
    Fusion Apps Developer Relations
    https://blogs.oracle.com/fadevrel

  • SharePoint 2013 on-premises integration with third party email account

    the Email sending issue from SharePoint is causing too much time waste 
    First let me explain how our SharePoint is deployed
    Sharepoint version : 2013
    Deployment type : on-premise
    Authentication : from Domain controller also hosted locally 
    domain name ; say domain.com this domain.com is same as our website address hosted on godaddy
    SharePoint computer name on local DNS :  sharepoint.domain.com
    OS and IIS : 2008 r2 , IIS 7.5 
    Network firewall : 25 26 ports  opened for sharepoint , both incoming and outgoing.
    Server firewall : turned off
    Email configuration Attempts by IIS 6.0 
    We tried following setting on IIS 6.0 SMTP local server properties
    In General tab
    qualified name was shown as : sharepoint.dts-solution.com
    IP assigned : sharepoint server IP  , advanced putted two entries of IP with ports as 25,26
    In Access tab
    Authentication : selected as Anonymous 
    Connection : All except below list : empty list
    Relay : only the list below , one entry as 127.0.0.1 and other is local static IP of SharePoint server
    in Delivery tab
    outbound security : Basic authentication : accessed user in AD and given the right password, also checked with annonymous -not working 
    outbound connection: all default values and port = 25
    Advance : fully qualified domain name = sharepoint.domain.com , DNS test showed success, rest every check box unchecked 
    On sharepoint central management settings
    Outbound email = sharepoint.domain.com
    from and reply to address = [email protected] 
    IIS 7.5 SMTP settings 
    In IIS 7.5 sharepoint application we added SMTP settings as smtp server = godaddy out going smtp , user name as [email protected] , password = godaddy password , port : godaddy outgoing port  .
    Godaddy account 
    Our website hosted on godaddy with same name as domain.com
    open relay not possible on emails.
    Results
    After setting alerts on SharePoint sites and assigning tasks with alerts we receive email in queue folder but they never get forwarded. We just wish to use any of our email *.domain.com to send outgoing emails from SharePoint . Its been a while we have no
    success. 
    Tech Learner

    Hi,
    As I understand, you are using SharePoint 2013 integrating with third party SMTP server which provides email function.
    From SharePoint side, I'd suggest you refer to the link below to configure email integration:
    http://technet.microsoft.com/en-us/library/ee956941(v=office.15).aspx
    If you have already confirm that message is sent from SharePoint, while stuck in queue on SMTP server, then the issue might be related to relay on SMTP server. Since the issue is related to third party product, we do not have enough resource here,
    I'd recommend you contact their support engineer for more assistance:
    https://support.godaddy.com/help/category/154/email
    https://support.godaddy.com/help/article/3552/managing-your-email-account-smtp-relays
    Thanks for the understanding.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Best practices for apps integration with third party systems ?

    Hi all
    I would like to know if there is any document from oracle or from your own regarding best practices for apps integration with third party systems.
    For example, in particular, let's say we need customization in a given module(ex:payables) need to provide data to a third party system, consider following:
    outbound interface:
    1)should third party system should be given with direct access to oracle database to access a particular payments data information table/view to look for data ?
    2) should oracle create a file to third party system, so that it can read and do what it need to do?
    inbound:
    1) should third party should directly login and insert data into tables which holds response data?
    2) again, should third party create file and oralce apps will pick up for further processing?
    again, there could be lot of company specific scenarios like it has to be real time or not... etc...
    How does companies make sure third party systems are not directly dipping into other systems (oracle apps/others), so that it will follow certain integration best practices.
    how does enterprise architectute will play a role in this? can we apply SOA standards? should use request/reply using Tibco etc?
    Many oracle apps implementations customizations are more or less directly interacting with third party systems by including code to login into respective third party systems and vice versa.
    Let me your know if you have done differently and that would help oracle apps community.
    thanks
    rrb.

    you want to send idoc to third party system (NONSAP).
    what kind of system is it? can it handle http requests
    or
    can it handle webservice?
    which version of R/3 you are using?
    what is the mechanism the receiving system has, to receive data?
    Regards
    Raja

  • Interact with third-party applications

    Do anybody have a try to Interact with third-party applications when using CQ5?
    I have some questions when I do that, when I use ajax to get data from my custom application,it always return error message,below is my ajax code:
    function getMinisiteList(){
              var sendUrl="http://localhost:8088/innosite/minisite/home.json";
              $.ajax({
                        url : sendUrl,
                        type : "post",
                        dataType : "json",
                        success : function(data) {
              alert(data);
                        error : function(XMLHttpRequest,
                                            textStatus, errorThrown) {
                                       alert(XMLHttpRequest.status);
            alert(XMLHttpRequest.readyState);
            alert(textStatus);
    I think my ajax request is Intercepted by CQ,is it right? How can I do that? Can anybody answer me?
    thank you very much!

    Is this a cross-site request? In other words, is JavaScript above being executed on localhost:8080? If not, you are likely running into a cross-domain browser security restriction.

  • EP integration with third party BI tools

    Hi,
    I was looking for information and pointers on EP integration with third party BI tools like Business Objects etc.  Would be grateful.
    Thanks,
    Madhu

    Thanks. We have a full fledged Business Objects reporting environment.  My question is:  As a beginner in the EP space, I would like to understand how to treat the  Business Objects environment as one of the content providers for the Enterprise Portal?  Are there any documents or manuals that talk about the integration of EP with Business Objects?  I know the question is too broad, but any pointers would be useful.

  • I am going to update my iOS from 10.6.8 to Mountain Lion. What problems will I face with third party applications? Alberto

    I am going to update my iOS from 10.6.8 to Mountain Lion. What problems will I face with third party applications? Alberto

    Are my applications compatible with Mountain Lion?
         See App Compatibility Table - RoaringApps.

  • Configure sap xi with third party application?

    Hi fredz,
    Can any pls explain with technical details and steps how do i configure sap xi with third party application and what type of connectivity and interfacing communication channel is preffered?
    Is there any option to web-services for interfacing between <b>SAP system-SAP XI system-Third party Application</b>.
    Pls be specific if and only if u have done this scenario.
    Regards,
    Ameet
    Message was edited by:
            Ameet Jassani
    Message was edited by:
            Ameet Jassani

    Hi
    <br>
    This is a very generic question. There are some getting started guides available in the main XI section on SDN, and also some step-by-step guides in the wiki section. A quick search will get you tons of information.
    <br>
    The choice of connectivity and interfacing communication channel is really dependent on the capabilities of the third party system.
    <br>
    Also, to get good results on this forum, please read the <a href="https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement">rules of engagement</a>
    <br>
    Regards
    Manish

  • Integration of SSO with Third Party Application

    Hello Colleagues,
    I have requirement where I have to integrate SSO with a third party application.
    After some R & D I found out that there is some one class "SSO2Ticket.java" which can do that or help in verify the ticket.
    Since I am new to this area, I am not sure how do I go ahead with the execution of this java file.
    Can somebody help me with this.
    Also, is there any documents which talks about SSO integration or about the above mentioned JAVA file.
    Best regards,
    Arvind

    Which type of 3rd party application is this, and which SSO authentication methods does it support?
    If you can find a common one, then that will be good for you.
    Specifically for non-SAP systems re-using the SAP LogonTickets, I know that you can extract the user name from the ticket. I think SAP even provides some verification tools here for external applications to verify the ticket?
    Currently there is much excitement about SAML 2.0 which is also worth taking a look into as well.
    Cheers,
    Julius

  • EBP 5.0 integration with Third Party

    Hi
    We need to integrate EBP with a third part J2EE web based application
    INtegration touch point
    while creating free text requiistion(indirect material) user need to call the third party application, the thirdparty application will return an aditional value(based on the parameter passed by EBP) which needs to be passed back to the backend system
    Can anyone suggest an approach(BADI, BAPI extensions?) as how one should go ahead with INtegration
    Thanks in advance
    Sachin

    Hi Vadim
    Thanks a lot ,
    here is the functional need
    1. while creating a shopping cart in EBP , a user can either search an item from a catalogue
    2. if the item is not found user will enter a description for the Item
    3. this description needs to be passed to third part J2EE application which will return an additional (Custom)field
    4. SO i want to get that custom field returned by J2EE application and update it back to the respective PO which will be created
    5. ALso i need to include an UI interface which will allow user to select the value which needs to be returned , so user will explicitly call this J2EE application
    CAn i use the standard custom fields for updating the value returned(this will be a numeric value) by the J2EE application
    PLease let me know if there are any doubts
    looking forward to your answer
    Thanks in advance
    Sachin

  • Integration of third party application on Weblogic Portal 10.3

    Hi,
    Need help on how can we integrate a third party application running on HTTP with weblogic portal application.
    SCENARIO
    we have a separate linux box running an application using PHP, MySQL & Apache.
    We want to render this on portal using CPP (Content Presenter Portlets) or HTML/JSP portlets.
    One way I can think of is to use IFrame in HTML/JSP portlets & involve the URL of this application.
    Is there anyway to use WSRP?
    I read the documentation on WSRP - It says that even a non-portal application can be integrated but that application should be having portlets running.
    But this 3rd party doesn't have any portlets running.
    Can anyone help on the same?

    Iframe portlets are certainly possible and the simplest approach. You can also look at using Clipper portlets: http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14244/clipper.htm#g1108243
    Brad

  • How Bridge communicates with third party applications?

    Hi,
    Is it possible to communicate between Adobe Bridge and a third party application using Bridge SDK?
    I want to learn how Bridge can communicate with other application? Bridge SDK have samples that explain how Bridge communicates with other Adobe applications like Photoshop and Indesign. Can anyone guide me or provide me a sample where Bridge communicates with a third party application?
    Thanks.

    As an example, this shows one way of getting a list of selected files from Bridge via Photoshop using C#
    using System;
    using System.Collections;
    using ps = Photoshop;
    namespace getBridgeFiles
        class Program
            static void Main(string[] args)
                ps.ApplicationClass app = new ps.ApplicationClass();
                String Code = "var fileList;"+
    "if ( BridgeTalk.isRunning( 'bridge' ) ) {"+
    "var bt = new BridgeTalk();"+
    "bt.target = 'bridge';"+
    "bt.body = 'var theFiles = photoshop.getBridgeFileListForAutomateCommand();theFiles.toSource();';"+
    "bt.onResult = function( inBT ) { fileList = eval( inBT.body ); }"+
    "bt.onError = function( inBT ) { fileList = new Array(); }"+
    "bt.send(8);"+
    "bt.pump();"+
    "var timeOutAt = ( new Date() ).getTime() + 5000;"+
    "var currentTime = ( new Date() ).getTime();"+
    "while ( ( currentTime < timeOutAt ) && ( undefined == fileList ) ) {"+
    "bt.pump();"+
    "$.sleep( 100 );"+
    "currentTime = ( new Date() ).getTime();"+
    "}}"+
    "if ( undefined == fileList ) {"+
    "fileList = new Array();}"+
    "fileList = decodeURI(fileList.toString());";
                String RC =  app.DoJavaScript(Code, null, null);
                ArrayList list = new ArrayList();
                list.AddRange(RC.Split(new char[] { ',' }));
                for (int index = 0; index < list.Count; index++){
                    Console.WriteLine(list[index]);
                Console.ReadLine();

  • SAP IDM  7.0 integration with third party system

    Hi Experts,
    I know SAP IDM  7.0 can integrate with third party systems and create user ids on most of the third party systems.
    But I need to know regarding If it is possible to integrate with following systems
    1) Microsoft Exchange 2007 (  I know till exchange 2003 SAP  IDM support )
    2)  Microsoft  Active directory 2008 ( I know till Actice directory 2003)
    3) EMC  Documentum 6.5
    4)  ARIS 7.1.0
    5)  BlackBoard, Release 9.0
    6) Oracle 10g  ( Is it possible to create users at oracle level ? or at what level ? )
    7)  Sun Solaris Sparc  ( Is it possible to create users at  OS level )
    If you have information how on this please share. I know that  provisioning framework will have templates for most of the target systems. I want to know if they are available for above systems on SAP IDM 7.0 or if not have we can connect to them?

    Hi Matthew
    Your expertise in SAP IDM is indeed a great help!!
    >Can't see why not, it's all done via SQL commands. I've done similar things with MSSQL
    You mean that there will be oracle 10g drivers/oledb connectors in SAP IDM and in through SQL commands like "create user alfredo identified by alfredos_secret; " we can create user  in oracle database ?. As you said this should be possible.  What about creating user( user management ) in oracle 10g application  like dba or scot  and assigning the privileges in oracle application?
    >might need to do via UNIX scripts, but it can be done
    You mean that Unix scripts will be defined in SAP IDM and SAP IDM will execute these scripts in the Sun Solaris Sparc ?. It should be possible as you said. By the way how we will be able connect to Sun Solaris sparc ?  Is it via  the option "file " under the "Repositories" with repositories wizard  and later executing the file from SAP IDM ?
    Thank you once again for your expert answers on third party systems.

  • HRMS Integration with third party Project Management Tool

    Hi All,
    We have plans of procurring a third party Project Management Tool which needs to be integrated to existing Oracle Financials. Project Management Tool needs employee information for its functioning.
    a)Is there any API available for this purpose which exposes HR data to any third party tool?
    b)Can anyone suggest what should be the approach for such integration?
    Thanks in advance
    Regards,
    SA

    What 3rd party tool are you going to be using? You might get lucky and it might be something that Oracle has bought recently. Does this post mean you are using Oracle Projects? If so, you may want to post this question in that forum as well. At least you would limit the audience to projects oriented customers, so might get some better replies there than you will here. Food for thought.
    John Dickey

  • Integration of third party application like Payware and Bank Wizard

    Hi,
    We have a scenario in which we are trying to integrate SAP XI 3.0 with 3rd Party application like Payware and Bank Wizard. We wish to know how should we go about doing it.
    Payware has Payment Interface card which is used to communicate with SAP R/3. I am not aware how it does that. I wish to know how it can be integrated with SAP XI 3.0.
    In case of Bank Wizard any kind of input is welcome.
    If anybody can provide some inputs on the same it will be highly appreciated.

    Hello
        not sure about Payware, but [Unified Software|http://www.unifiedsoftware.co.uk] has an alternative to Bankwizard that can be easily integrated with SAP via XI/PI or as a simple web service proxy.
    See their [SAP Packaged Service|http://www.unifiedsoftware.co.uk/products/sap/bankvalidator.html] information, or the official [SAP Packaged Service|http://www.sap.com/uk/services/consulting/portfolio/index.html] catalogue (look for UK Bank Validator Packaged service, page 32)
    Hope this helps
         George

Maybe you are looking for

  • Image re-use in flex

    Hi, I am trying out FlexBuilder 3 and seeing if I can put together a first project. The layout is in module format, whereby the main application SWF loads modules as necessary. The problem I have is that I am trying to find a tidy way to re-use embed

  • Apple ID problem after changing of owner

    Hi, first time poster, so be gentle if I screw up the location of the topic and things like that. Here is the deal, I had a 3Gs for a year, then as iPhone4 got out I upgraded and gave the 3Gs away. However, even after a complete "reinstall" and forma

  • Dynamic table with inner table

    I have the requirement to create a table, where certain table cells contain an inner table and table cells of the master and inner table need to have different background colors. Any suggestions which component I should use (af:table, h:panelGrid, h:

  • Witholding tax problem

    Hi All, I am confusing with withholding tax calculation. I could not understand its rounding can become big problem. The wht is 7.8% but the WT amount is rounded up.Pls give advice. Rgd John

  • Flash videos and menu boxes jump up and down, what would cause this?

    After installing Firefox 4, all flash videos and menu boxes jump up and down. I have removed and reinstalled the flash plug in to no avail. This does not affect the playback, just the border of the video or menu box. Other browsers do not do this. Ju