Multiple DC  within an Application or mulitple Applications?

I have two functions
1-Group Report
2-Individual Report
The group report contains a link to the individual report.  Users will have access to both of the functions but they are housed in different parts of the portal's navigation (Group in MSS and Individual in ESS - they want a button on the person in the group report that pops them over to the individual report in ESS).
Should I create these reports in different applications or in the same application but within different DCs?  What is the logic used to determine when to do one over the other?
Regards,
Diane

Hi Diane,
Technically, DC contains the WD Apps. Not the other way round.
You can develop a DC with 2 Apps or 2 different DCs.
The breaking up of DCs should go by functionality.
As you are mentioning abt MSS and ESS, these will be in different SCs. So you should create 2 different DCs (obviously 2 different apps).
-Aarthi

Similar Messages

  • Multiple forms in multiple windows within application

    hi,
    our user wants to be able to open more than one form in multiple windows within the application and have them within the application window at the same time. we are planning to use open_form instead of call_form to do this. however open_form does not let me specify the query mode, so i guess will have to do that manually? what does Oracle recommend as a best practice for applications - to support mutliple windows or not? if yes, as call_form or open_form?
    thanks.

    Yes using open form you will have to manually (in code) switch into Query Mode.
    We recommend Open Form over call form as it is more memory efficient, of course there are situations when the behaviour of Call Form is useful but generally I'd encorage the use of open.

  • Can I programmatically copy vi within llb AND build an application?

    I previously posted the question how to programmatically work (copy, delete) on files within llbs and got two answers to use the librarian vis in vi.lib > utility > libraryn.llb
    That works really good but only till I try to build an application. The application builder seems to use the librarian vis also and complains that it cannot build an application with vis that are currently in use...
    Any idea how to solve that?
    Cheers, Daniel Troendle

    Make a copy of all the VIs used by the librarian and save them under a
    different name (making sure to link the sub-VIs to the new name of course.
    Awkward, but it should work.
    Shane
    D. Troendle schrieb in Nachricht
    <[email protected]>...
    >I previously posted the question how to programmatically work (copy,
    >delete) on files within llbs and got two answers to use the librarian
    >vis in vi.lib > utility > libraryn.llb
    >
    >That works really good but only till I try to build an application.
    >The application builder seems to use the librarian vis also and
    >complains that it cannot build an application with vis that are
    >currently in use...
    >
    >Any idea how to solve that?
    >Cheers, Daniel Troendle
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • Cache database results within any of your software applications?

    Have you had to cache database results within any of your software applications? What are the advantages and pitfalls developers should be aware of when caching database results.
    plz reply....
    ........thnks.

    We have cached the database results in client side cache (partially in arrays and in files on OS as well). But this caching is restricted to purely STATIC data (which undergoes no change under any circumstances).
    Our application relies a lot on static data and we managed to reduce 10% of network bandwidth with this implementation.
    We tried using client side cache for not-so-static data but had lot of issues related to refresh of the same so we reverted that change.
    On a side note, this does remind me of the client result cache available in Oracle 11g.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28279/chapter1.htm#FEATURENO06989
    See if it helps you.

  • Gnome3: Multiple Application Icons in Applications Tab

    For some reason I am getting two of some applications in the applications tab.  This doesn't happen to all of them, just a select few, and I would like to know how to fix it.  I would also like to mention, that I can't right click on anything, any ideas?
    Last edited by jayd3e (2011-05-24 03:53:43)

    jayd3e wrote:For some reason I am getting two of some applications in the applications tab.  This doesn't happen to all of them, just a select few, and I would like to know how to fix it.  I would also like to mention, that I can't right click on anything, any ideas?
    Here is a very recent thread which discusses the same issue - https://bbs.archlinux.org/viewtopic.php?id=118328
    Please do a quick search in the forum (and also on the web) before submitting a new post.

  • Can't download any CS6 applications from the Application Manager.

    This is the specific problem that's happening: http://i.imgur.com/rN1u4.png
    Is this going on with anyone else? Thanks in advance for the help.

    Rvargas,
    You can follow the suggestions from the Adobe knowledgebase document as below:
    Source:http://helpx.adobe.com/creative-suite/kb/troubleshoot-creative-cloud-installation-download .html
    Remove or uninstall Adobe Application Manager
    When you download and install a Creative Cloud product, a program called Adobe Application Manager is installed on your computer.  Adobe Application Manager performs multiple functions within all of the Creative Suite products.  To completely remove Adobe Application Manager, uninstall all of the Creative Suite products.  Upon removal of the last product, the Adobe Application Manager is uninstalled.
    Important:  Adobe offers a Cleaner Tool, which removes the database entries but not the physical files associated with the installation.  Run the program uninstallers to remove all components.
    Remove Creative Cloud on Mac OS
    Double-click your hard drive.
    Go to Applications > Utilities > Adobe Installers.
    Run all of the Adobe uninstallers to remove all of the Adobe Creative Suite products.
    Remove Creative Cloud on Windows
    Click Start > Control Panel.
    Click Programs and Features.
    Select a Creative Suite application and click Uninstall.
    Repeat step 3 for all Creative Suite applications.
    Hope that helps.
    Mandhir

  • Multiple selects() within a single VM

    Is anyone aware of any contention issues when running multiple threads within a VM where each thread has it's own select statement?
    I have an home grown app server that allows me to run multiple applications within a single VM. The applications are unrelated however they sometimes communicate with each other via TCP. All of them are very network intensive ( 500 messages a second where each message is around 200 bytes ). These apps are usually single threaded where the main thread is a select() loop.
    Therefore, each application is a single threaded select() loop but there are multiple applications running within a single VM.
    I am seeing performance issues when two apps running within the same VM try to send messages to one another via TCP. When the two apps are running on different boxes one app can send about 10,000 messages a second to the other app. However, when the apps are running within the same VM ( localhost TCP connection ) I can only transfer about 1000 messages a second.
    Are 2 selectors running within the same VM a problem? Is it synchronized within the VM so that only one select can fire at a time?
    I am running on a dual proc RH3 box with plenty of memory.
    Any ideas?

    Works for me, though I'm trying on Windows. Test program below. I get >10,000 replies and responses per second over loopback with both "java SelectPingPong both" (one VM) and running client and server on separate VMs.
    Does this program get only 1000 messages/s on Linux? What VM version?
    import java.util.*;
    import java.net.*;
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.*;
    public class SelectPingPong
        private static final int MESSAGE_SIZE = 200;
        private String server_name;
        private Selector selector;
        private HashMap clients = new HashMap();
        static class Client
         ByteBuffer buf = ByteBuffer.allocate(MESSAGE_SIZE);
         long connect_time = System.currentTimeMillis();
         int number_of_messages;
        public SelectPingPong(int port, String server_name)
         throws IOException
         this.server_name = server_name;
         selector = Selector.open();
         ServerSocketChannel server_channel = ServerSocketChannel.open();
         server_channel.configureBlocking(false);
         server_channel.socket().bind(new InetSocketAddress(port));
         server_channel.register(selector, SelectionKey.OP_ACCEPT);
        public Socket connect(String host, int port)
         throws IOException
         SocketChannel channel = SocketChannel.open();
         Socket socket = channel.socket();
         socket.connect(new InetSocketAddress(host, port));
         configureSocket(socket);
         channel.configureBlocking(false);
         channel.register(selector, SelectionKey.OP_READ);
         clients.put(channel, new Client());
         return socket;
        private void configureSocket(Socket socket)
         throws IOException
         // Let's say we have a request-reply protocol with modest requirements
         socket.setReceiveBufferSize(1024);
         socket.setSendBufferSize(1024);
        public void mainLoop()
         while (true) {
             try {
              selector.select();
              for (Iterator iter = selector.selectedKeys().iterator(); iter.hasNext(); ) {
                  SelectionKey key = (SelectionKey) iter.next();
                  iter.remove();
                  if (!key.isValid())
                   continue;
                  if (key.isAcceptable())
                   acceptClient(key);
                  if (key.isReadable())
                   readFromClient(key);
             } catch (Exception e) {
              System.out.println(server_name + ": error in selector loop: " + e);
              e.printStackTrace();
        private void acceptClient(SelectionKey key)
         throws IOException
         ServerSocketChannel server_channel = (ServerSocketChannel) key.channel();
         if (server_channel == null)
             return;
         SocketChannel channel = server_channel.accept();
         if (channel == null)
             return;
         configureSocket(channel.socket());
         channel.configureBlocking(false);
         channel.register(selector, SelectionKey.OP_READ);
         clients.put(channel, new Client());
         System.out.println(server_name + ": got a new client; " +
                      clients.size() + " clients");
        private void readFromClient(SelectionKey key)
         throws IOException
         SocketChannel channel = (SocketChannel) key.channel();
         Client client = (Client) clients.get(channel);
         ByteBuffer buf = client.buf;
         int count;
         try {
             count = channel.read(buf);
         } catch (IOException e) {
             System.out.println(server_name + ": error reading, closing connection: " + e);
             clients.remove(channel);
             channel.close();
             return;
         if (count == -1) {
             clients.remove(channel);
             System.out.println(server_name + ": client disconnected; " +
                          clients.size() + " clients");
             channel.close();
             return;
         if (buf.position() == MESSAGE_SIZE) {
             if (++client.number_of_messages % 10000 == 0) {
              long now = System.currentTimeMillis();
              System.out.println(server_name + ": " + client.number_of_messages +
                           " messages in " + (now - client.connect_time) + " ms");
             buf.flip();
             // RFE write without blocking
             writeFully(channel, buf);
             buf.rewind();
        public static void writeFully(SocketChannel channel, ByteBuffer buf)
         throws IOException
         while (buf.remaining() != 0)
             channel.write(buf);
        private static void startClient()
         throws Exception
         SelectPingPong client = new SelectPingPong(6667, "client");
         Socket socket = client.connect("localhost", 6666);
         // Send initial message
         ByteBuffer buf = ByteBuffer.allocate(MESSAGE_SIZE);
         buf.put(new byte[MESSAGE_SIZE]);
         buf.flip();
         socket.getChannel().write(buf);
         client.mainLoop();
        public static void main(String args[])
         throws Exception
         if (args.length == 1 && args[0].equals("server")) {
             SelectPingPong server = new SelectPingPong(6666, "server");
             server.mainLoop();
         } else if (args.length == 1 && args[0].equals("client")) {
             startClient();
         } else if (args.length == 1 && args[0].equals("both")) {
             new Thread() { public void run() {
              try {
                  SelectPingPong server = new SelectPingPong(6666, "server");
                  server.mainLoop();
              } catch (Exception e) {
                  System.err.println("error in server");
             } }.start();
             startClient();
         } else {
             System.err.println("usage: SelectPingPong [client | server | both]");
    }

  • Multiple apps within WebLogic

    Hi
    Can multiple applications (i.e., multiple jar files representing
    distinct functionality) run within the same WebLogic server
    instance ? I believe J2EE supports such a model ...
    thanks
    -john

    This isn't an issue. The only consideration is will you be asking a
    single WL instance to do more than it's capable of?
    Jason
    Original Message <<<<<<<<<<<<<<<<<<On 2/19/00, 7:11:13 PM, John Mani <[email protected]> wrote
    regarding Multiple apps within WebLogic:
    Hi
    Can multiple applications (i.e., multiple jar files representing
    distinct functionality) run within the same WebLogic server
    instance ? I believe J2EE supports such a model ...
    thanks
    -john

  • Oracle Application Server 10g (Application Running)

    Dear All Sir/Madam
    It is my humble request that please tell me how to run Application on Application Server 10g.
    I developed my Application in Oracle developer suit 10g (build internet appliacation), and I am using *10g database*.
    Now please tell me the complete procedure who to configure oracle application server 10g on linux.

    Hello Ghulam,
    Notice that you can deploy different kind of applications within the Application Server framework, e.g. JEE applications, PL/SQL applications, Forms Applications etc. Based on what you initially mentioned, it seems that your have developed a Forms application. The above document reference refers to Application Server 10.1.3, which was a JEE / SOA release. You are probably better off with the [url http://download.oracle.com/docs/cd/B14099_18/web.1012/b14032/toc.htm]Forms Deployment Guide.
    One note : Application Server 10.1.2.x is soon to be desupported. Consider to move to version [url http://www.oracle.com/technetwork/developer-tools/forms/downloads/index.html]11.1.2 !
    Thanks,
    EJ

  • When to use WEb Dynpro application and Portal application in NW dev studio

    I would like to know what is the difference between
    webdynpro application  and EP Application using PDK.
    Are they comaparable  ...Which one has an edge over the other specific to any applications.
    I want develop an application related to e-commerce using the SAP R3 as backend for an industiry(where in a registered user can place an order and query on the staus of order. All the data will be stored in R3 ).
    I am planning to dev this using NW dev studio , but have an appehension about which application is useful for this kind of application either webdynpro or EP application .
    can anybody explain which one has edge over the other ( Webdynpro or EP applcations in context with NW Dev studio) and why.
    thanks
    PK

    Hi,
    <b>Webdynpro</b> is used when requirements ask for a prototype using minimal time n effort.
    Highly skilled programmers are not necessary to write a webdynpro application
    It uses dynamic controls without reloading the page.
    <b>Portal components</b> esp Abstract portal component provides a lean method to write HTML command to web client
    Large interactive components requires more programming.
    <b>WebDynpro</b> is a highly declarative, tool-based programming model. It minimizes platform-dependent "plumbing" code for building UIs and maximizes declarative metadata describing huge portions of a typical application in a platform-independent way.
    Web Dynpro follows a "top-down" approach in order to consistently support multiple runtime platforms.
    In Web Dynpro you just have to drag & drop the UI components.
    <b>Portal components</b> has followed a "bottom-up", programming-driven approach to Web development.
    Regards,
    Pooja.

  • How To Deploy Application In Oracle Application Server

    Hi All,
    We have devloped an application in whic we have used tomcat server .
    Now we want to deploy that application in Oracle application server.
    technolgy used: J2ee
    : Shark work flowserver
    database:Oracle(XE)
    Platform: windows XP
    IDE:Eclipse (ganymede)
    Web server:tomcat(6.0)
    Thnaks and regards,
    DK.

    I think you put the questionin the wrong forum, this is all about Oracle SOA Technology, and deployment is a task within SOA.
    I have created a deployment guide/tool for Oracle SOA products (see my blog, includes java deployment).
    Put your question in :
    Oracle Application Server - General (AS General Forum)
    Marc
    http://orasoa.blogspot.com

  • The application (all adobe applications) has unexpectedly quit

    Hello everyone,
    I have a problem with my Adobe Cs3 Design Premium package. I don't know if i have the correct forum section.
    I now managed to install this software correctly on mac osx but when i try to start one of the application they will all give me the very same error message!
    "The application (all adobe applications) has unexpectedly quit
    A crash report has been generated. To provide us with the best chance of fixing this problem, please select Continue to add a detailed description that includes the steps required to reproduce the crash."
    Adobe will use this crash report to help find a future solution to this problem.
    I had 512mb but upgraded it later to 2gb. Mac OSX is installed on a pc machine.
    Does anyone know this issue? and what can i do about it?
    I really appreciate any help,
    Jasper Bakkker

    Hi Hugo
    1. Do You have upgraded QuickTime to v.7 if not don't, else downgrade to
        6.5.2
    2. Do You have enough free space on Your hard disk eg 20Gb recommended
    3. Do You start Your projects from within iMovie with the function
      Share/Export to iDVD. I don't. I use the ref. movie in the project
      folder/icon and close iMovie so that only iDVD is running
    4. Do You do other thing during DVD-processing. Don't.
    Yours Bengt W

  • Building a standalone Mac application with an application builder running on Windows?

    I created a user interface which communicates with a cRIO System via TCP/IP. The user interface should run on multiple hosts consisting of windows PC's and Mac's. My LabView development system is running on Windows. So my question: is it possible to build a Mac application with an application builder running on Windows?
    Thanks for your help!

    Only if the Mac is running windows. Otherwise, you need a Mac version of LabVIEW and the app builder for that.
    p.s. You spelled LabVIEW incorrectly.

  • Replicate All Service Application into two Application Servers

    Hi All,
    I want to replicate all the service applications into another application server in order to configure HA.
    we are having two servers having single farm.
    Please Help..!!

    Install SharePoint on server 2
    Join Server 2 to the farm
    Activate the services on server 2.
    http://technet.microsoft.com/en-us/library/ee704549(v=office.14).aspx
    Most service applications can be run on multiple servers (and are designed to). The exception is the User Profile Application Synchronisation Service, which can only run on one server in a farm at a time.

  • Error while copying a page from one application to another application

    Hi All
    I am using Oracle Apex 4.0
    I getting the error ORA-06502 Pl/Sql Numeric error character string buffer too small when i copying a page from one application to another application.
    Thanks & Regards
    Srikkanth.M

    I'm having the same issue. How did you solve this?

Maybe you are looking for