How to integrate two applications in wda.

Hi experts ,
I have two applications in WDA .
I would like to integrate these two applications in the third one.
And wants to run third application so that i can see first and second applications view. How can I achieve it.
Thanks .

You can easily embedded one Web Dynpro component within another.  This is exactly what you are doing when you use ALV.  You can do the same thing with your components.  I suggest that you start be reading the help section on cross component usage:
[http://help.sap.com/saphelp_nw70/helpdata/EN/a7/1d8b412bb5b35fe10000000a1550b0/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/EN/a7/1d8b412bb5b35fe10000000a1550b0/frameset.htm]
At the risk of a little self promotion, the topic of component reuse and embedding is a central topic of the Web Dynpro ABAP sections of the SAP Press Book - Next Generation ABAP Development.

Similar Messages

  • How to integrate BRF+ application in WEBDynpro abap

    Hello,
    Can anybody tell me , how to integrate BRFPLUS application to Webdynpro components.
    is their any configuration or code is available for the same?
    Thanks
    Rakshar

    There is nothing really special about integration of BRF+ into WDA.  BRF+ modelled rules are exposed via an ABAP Class Interface and can be called by any ABAP coding.  From WDA, you would call these classes just like any others.  The above linked thread does point you to a tutorial I created on BRF+ where I do then call the rule from WDA.  You might also look at TechEd session CD269 if you have access to this year's materials.  In there we do an BRF+ exercise and integrate into a BOL Object/Gateway Service/FPM application.

  • How to integrate two plantfloor systems

    Can anybody help me that how to Integrate two plant floor systems

    Hi Rajkumar
    Please specify which plantfloor systems. Every plant floor system has their own interface or using the standard interface such as Webservice etc.
    So in future I would suggest you be specific in order for us the forum folk to answer your question correctly.

  • How to integrate two codes  ?

    A.java
    class A
         public static void main(String args[])
    System.out.println("hello");
         // code
    Format.java
    import java.util.*;
    class Format
    public static void main(String args[])
    System.out.println("hi");
    // code
    how to integrate two codes ?

    Please be a little more explicit about what you're doing, what you expect to happen, and what you actually observe - "integrate two codes" isn't very clear.
    Please post a short, concise, executable example of what you're trying to do. This does not have to be the actual code you are using. Write a small example that demonstrates your intent, and only that. Wrap the code in a class and give it a main method that runs it - if we can just copy and paste the code into a text file, compile it and run it without any changes, then we can be sure that we haven't made incorrect assumptions about how you are using it.
    Post your code between [code] and [/code] tags as described in Formatting Help on the message entry page. Cut and paste the code, rather than re-typing it (re-typing often introduces subtle errors that make your problem difficult to troubleshoot). Please preview your post when posting code.
    If you don't know where to start, here are some excellent resources:
    http://java.sun.com/docs/books/tutorial/
    http://java.sun.com/developer/onlineTraining/Programming/BasicJava1/compile.html
    http://java.sun.com/learning/new2java/index.html
    http://javaalmanac.com
    http://www.jguru.com
    http://www.javaranch.com
    Bruce Eckel's Thinking in Java
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java

  • How to integrate android application with oracle database using oracle mobile database server.

    Hi,
    I developed one web application using oracle database. I want to implement same web application in android. My problem is how to integrate android application with existing oracle database using oracle database mobile server. Can u please guide me how to install oracle database mobile server and how to integrate android app with existing oracle database..
    Thank you.

    In the Database Mobile Doc set there is an entire book that covers the Installation of Oracle Database Mobile Server.   Chap 4 of that book contains screen shots and all kinds of information that will help guide you through the installation.   We also have a doc on the different mobile clients.  Chap 2 of that guide covers installs and integration of an android app. 
    thanks
    mike

  • How to integrate the applications if we have muti-developers?

    Hi all :
    We want to develop a Education Appliation by JHS and we have 4 developers. Each develop a part of the Education Application. But how to integrate all applications that we developed (into a application) ? TKS~~

    Hello,
    Following post might be of interest:
    Jheadstart, JDeveloper and CVS and TeamWork

  • How to synchronize two applications system

    HI,
    I work witj Designer 9i, in a Non-versioned Repository. I create a copy of an application system on the same repository.
    I would like to know if there is some mechanism that will synchronize the two application system copies. What i want is how to automate the replication of any modification I made to the copy, in the original application.
    Thanks for your help,
    Malika

    Hi Roel,
    I want to do this because in our organization the repository is non versioned, and we want to make copies for the application system in purpose to sure that only Data modeler and DBA will access it. The developers can't update it. In the original application system we will replicate the changes and then developers go on with their Treatment modules.
    Thanks for your reply ,
    Malika

  • How to integrate wad application in portal

    Hi all,
    How to integrate multiple wad application in portal  instead of integrating  one application with one iview?
    We need to avoid creating  iviews for each wad application  .
    Is there any application like bex analyser  for WAD  applications?
    Regards
    Rajendra

    Hi Rajendra,
    U can create bw report iviews by using bex iview template in content adminstration role.
    Apart from that Upload the role from Bw system to portal in system admin-->role upload .
    Ask BW person to assign the reports to 1 role ,and u can easily upload the role to portal .
    Once u upload the role u can find tthe role in Content admin-->portal content >migrated content>roles--><bw role name>.
    open the role ,if u want to change the name then u can ,give entry point yes and assign the role to user.
    It should works instead of creating n number of Bex iviews.
    Surekha.

  • How to Migrate BSP applications into WDA

    Hi,
      We have some BSP application,is it possible to migrate BSP application into WDA or we need to

    There are no automated translation tools from BSP to WDA.  Although similar in structure (both MVC and Unified Renderer based), the technology implementation is very different. BSP uses MVC - and has Model and Controller objects. However these ABAP classes are in no way compatible with what Web Dynpro generates.  WDA also has the concept of Context which doesn't exist at all in base BSP (although CRMUI does have a context, this is just a wrapper around the BSP model class and isn't compatible with the WDA context either).
    The view becomes even more problematic.  Although the HTMLB, XHTMLB, and PHTMLB tag libraries are similar to the standard UI elements in Web Dynpro, the WDA versions are much more advanced. You probably could map most of the properties and tags to WDA, but not everything.  However the fact that in BSP you can inject any custom HTML and JavaScript becomes an issue because there is no way to do the same in WDA.
    Overall, you should just start from scratch and redesign the application as WDA.

  • How to combine two applications with different workspaces in APEX

    Hi,
    Can anyone help out in merging two applications with different workspaces in APEX 3.2 ?
    Thanks in advance,

    Hello Satya,
    >> I am Satya …
    Please take one more step to help us and update your forum handle to something friendlier than user123… Thanks.
    >> Can anyone help out in merging two applications with different workspaces in APEX 3.2 ?
    This is not a trivial task.
    You didn’t mentioned if both workspaces sharing the same APEX instance, or they are on two different instances (machines). I believe the latter is a pre-condition to a success.
    First you need to remember that importing an APEX component, like a single page, is possible only to the same application that it was exported from. This is still valid if you have the same workspace on two separate APEX instances – one is an import of the other (which makes it an identical copy). Still, the application ID must be the same, or you’ll get the following error: “This page was exported from a different application or from an application in different workspace. Page cannot be installed in this application.”
    You can’t simply manipulating the export file, if the two workspaces are sharing the same APEX instance, as all workspaces on the same instance shares the same APEX metadata files, and you’ll receive a “unique constraint violated” error messages. That means you can’t import one application into the workspace of the other, even if you are using a different application ID.
    As far as I can see, the only viable way of doing an application merge is to have two identical workspaces, on two separate APEX instances. The two applications should share the same application ID, although this parameter can be changed in the import file. You should export the page in one application – on the first instance – and import it into the other application – on the second instance.
    You should also make sure that the exported page ID doesn’t exist on the target application, otherwise it will be replaced by the new imported page. Also, if the imported page include references to shared components that are not defined on the second application, it might also pose a problem.
    As I said, this is not trivial. The benefits are mostly depend on the amount and complexity of the pages you want to merge. If they are not many, and simple, you should consider just re-creating them on the target application. If they are very complex, the merge might fail anyway.
    Regards,
    Arie.
    Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.

  • How to integrate two Siebel Applications into single app UI

    Dear All,
    Currently we have a Siebel application which is running with various Siebel modules. Like for example in one single application object manager we are having various screens and views related to various modules like UCM, Loyalty, Marketing etc.
    But due to some operational reasons, we would like to deploy few modules as applications on different machines.For example we will install a separate Marketing application on a server and loyalty on a separate server.
    How can we integrate all these applications installed in different different machines in a single App Object Manager to provide a single UI interface for the user.
    So even after segregating into different applications, we would like to have single app UI for user.
    Please suggest if it already being implemented in such a way anywhere.
    Regards

    Hello...
    Siebel offers many great options to help you implement your business needs. siebel bookshelf is very well documented...we can also connect you with a few great system integrators that could help you architect your siebel implementation? best wishes for this holiday season...
    Regards,
    Sylvia Fong Ny- GERMAIN SOFTWARE - Performance Monitoring Software for Siebel CRM
    21 Columbus Avenue, Suite 221, San Francisco, CA 94111, USA
    [email protected], http://www.germainsoftware.com

  • How to integrate two VIs (diffserv,​intserv)

    hi
     i need help in the to make  integration of two vi (DiffServ,IntServ) attached with this  email  as my topic is integration of differentiated services and Integrated services ..
    how i can integrates these two VIs
    thanks
    Attachments:
    Diffserv.vi ‏58 KB
    IntServ.vi ‏63 KB

    Thread duplcated
    Doug M
    Applications Engineer
    National Instruments
    For those unfamiliar with NBC's The Office, my icon is NOT a picture of me

  • How to make two Application Modules share the same entity cache?

    Hello everyone, I am using JDeveloper 11.1.2.3.0
    I have a little problem in my application through using two AppModules that contain also same ViewObjects. So to be clear one VO is declared in two AppModules. When I commit the view by using AppModule1 and then go to another page that uses the same VO but from AppModule2, I have to commit again, even through the row is previously stored in the database.
    I understood that this came because different AppModules use different entityCache for database communications.
    I am asking if anyone knows any option on how to sync the entity caches from the two appmodules, or how to make them use the same entity cache.
    Thank you

    You can make a copy of the app and give it another name, but it will use the same settings files no matter which you open. Settings aren't stored in the app, but in your Preferences.
    Firefox, being a Windows derivative, might have the capability to use "Profiles" where you'd set it up different for each profile. I don't use Firefox, so I don't know if that option exists.

  • How To Integrate ADF Application with Oracle Fusion Middleware Audit Fmwk ?

    Hi All,
    I'm having ADF/ADF Face Application (using Jdev 11.1.1.5) and want to integrate it with Oracle Fusion Middleware Audit Framework.
    I want to generate audit records by using oracle.security.jps.service.audit API and also want that Audit Policy
    for my Application will be visible and manageable through FusionMiddlewareControl (as well as othe admin tools)
    on the same way how it is for the OPSS services for example.
    Unfortunately i didn't find any detailed docs for the topics above. In the Oracle Fusion Middleware Security Guide,
    it is steated only that:
    "Stand-alone applications can be integrate d with the Oracle Fusion Middleware Audit Framework through configuration with the jps-config.xml file."
    , but nothing in details.
    Can somebody help with this, giving some more detailed info or links to the appropriate detailed documentation(if any) ?
    Thanks in advance,
    Krasimir

    deepak - why not link to the real documentation instead of that site that illegally publishes stuff?
    Krasimir - I had a look at this a long way back, and didn't explore it much further because I reached a dead end in trying to figure out how it worked. It seems to me that the function is there and may be used internally within Oracle, but that it's not documented well enough for we mere mortals of the public to use it.
    Have you tried opening an SR with Support? They won't know, but they will be able to raise it up and perhaps find someone who does know - be sure to reference this thread in your SR if you go that route.
    John

  • How to integrate multiple applications for single project as single appl

    Hi,
    I'm struggling to find out about that how to combine all the applications developed by my team members.
    We all created each application having many pages, how to combine all this pages to create as a single appl.
    Can anyone please tell me how to do it?
    Thanks,
    Sundar

    My solution still stands. Search the docs.
    This presentation might assist: http://www.sagecomputing.com.au/papers_presentations/ADF%20Architectural%20Patterns%20-%20LongBeach%20ODTUG%20minus%20pics.pptx
    CM.

Maybe you are looking for