How to organize the structure of multipanel application

hi,
I need to create a multi panel application where must be active only one panel, so my connection to DB have to be passed to an active panel only. So, how can I pass my connection from one panel to another if my panels are created as separate projects with separate application workspaces and are joined to main project as jar libraries.
thanks

reg231 wrote:
how to read the keystrokes of other application[How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html]

Similar Messages

  • How to organize  project structure  for big application architecture

    Hi all:
    We prepare to construct a medium erp project using JHeadstart,
    so we have some application system like human resource, accounting, inventory, ...
    What's the best suite to organize application project architecture ?
    we have this issue about application architecture:
    1.how to fulfill large scale application and must to share some common view object and entity object in all application, May we to break the application down into multiple BC4J packae in same project or separate each subsystem in each project folder?

    You can definitely organize your applications into as many packages as makes sense for your overall design.
    You can create and deploye packages of BC4J components in simple *.jar archives and then uses features of JDeveloper to import those shared packaged of components in a read-only mode in projects that need to make use of them.

  • How to create the user on Internet Application Server(IAS) control console

    Hi All,
    My Client is asking me for How to create the user on Internet Application Server(IAS) control console 10.1.2( 10g release 2).
    If anyone have the document for How to Create the User on Internet Application Server (IAS) console 10g release 2 , then please send me the document and help me out from this Concern.
    Regards,
    Yadav@intelli.
    Edited by: 851080 on Apr 8, 2011 6:31 PM

    Are you using OID? Can you provide more details about your iAS environment?

  • How to organize the import statements in FXML Files?

    Hello,
    I'm a user of NetBeans IDE and it can organize the import statements in *.java files. Now, I'm using JavaFX and editing the *.fxml files as well. I want to know how to organize the import statements in *.fxml files?
    Thanks a lot.

    You should use Scene Builder, it will make all these import statements for you.
    Moreover, it will greatly simplify the writing of your FXML files, since you only have to Drag&Drop JavaFX objects on the scene. Then, it automatically generates FXML files.

  • How to use the structure in the EXIT_SAPMM06E_013 function module

    Hello Experts,
    Please guide me how to use the structure defined in function modules under  table tab in the driver program for smart form to fetch the data. Please post some sample code if available.
    Best Regards,
    Sandesh.Sreyamsh

    Can you please elaborate little bit more what is the actual requirement?

  • How to define the Structure and FCC parameters for EDI file format.

    Hi All,
    I have a  EDI file(FTP)-->XI-->IDOC
    the source file content is as follows
    PR H01PHUPS         
    FH   SHP  0.0.5    
    H1   S0022323                            
    W6   7752508853                     D
    PT   1Z58R7070341111111           
    PT   1Z58R7070342222222           
    PT   1Z58R7070353333333          
    N1ST ZZ 142222                            
    N3ST 8827 D OLD
    N4ST MARCY                        
    N1WH ZZ 2070                              
    N3WH 401 QUALITY
    N4WH HARRIS
    DTENT20111206
    DTSHP201112061754
    N9LL BN20700033333333                               
    N9NT
    CD   CP      UPS
    IT026
    P1GD    VN A1111 
    PD   Product ID 1                   
    QTORD000000000000010CA
    QTSHP000000000000010CA
    AM U  000000000000000000M
    AM X  000000000000000000
    LTLT 1112811111                                       
    AM G  000000000000000000
    AM N  000000000000000000
    AM TAX000000000000000000
    AM SVC000000000000000000
    AM COD000000000000000000
    ST   00000000100000000010000000000000000000000000008500LB
    Can any body share me how to declare the structure in DataType.
    The first two characters in each record is constant , so this would be the keyfields right?
    ex:- PR,FH,H1,W6,PT,AM,N1,N3,N4......
    In Comm channel the FCC parameters
    i need to go for fieldFixedLengths?
    Thanks&Regards
    Sai_SHA

    Hi.
    if you need to convert an EDI to XML you need to use an Adapter specific (e.g Seeburger) because PI doesn't support EDI files.
    Also if you use a FCC , this configuration is for  two level Header and Detail.
    Check this.
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/frameset.htm
    Regards
    Luis Ortiz

  • How to organize the content of MANIFEST.MF

    Most of the jar files contain a file named META-INF/MANIFEST.MF, and it provides some information about the class in the jar files, but when I execute the code below, I can't output all of the jar file name in the eclipse project's classpath.
    import java.net.URL;
    import java.util.Enumeration;
    public class TestClassLoader {
    public static void main(String args[]) throws Exception {
    Enumeration<URL> en = TestClassLoader.class.getClassLoader().getResources("META-INF");
    while (en.hasMoreElements()) {
    URL metaInf = en.nextElement();
    System.out.println(metaInf.toExternalForm());
    So I want to know how to organize the content of MANIFEST.MF file to output the file name

    getResources doesn't do what you apparently think it does. The resource path still has to be an exact match, but getResources allows for the possibility that the same resource path may occur multiple times on the class path.
    You could use it to access all the MANFEST.MF files on the classpath but you'd need to full resource path "META-INF/MANIFEST.MF"
    The code you've written doesn't access the contents of the manifests, of course. To access the contents of manifests use java.util.jar.Manifest objects.

  • How to Organize the columns in the dynamic internal table?

    Hello Folks!
    How to Organize the columns in the dynamic internal table? i tried passing the parameter COL_POS to the fieldcatalog, Which is not working.

    Organize in What order ? What is your way to output ?
    If you use ALV, you need to create fresh FIELD CATALOG for your dynamic table and then assign the column position.
    Regards,
    Diwakar

  • How to find the structural difference between two tables

    Hi all,
    How to find the structural difference between two tables .
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for 32-bit Windows: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    Thanks,
    P Prakash

    you could try something similar to this, for each table pair that you want to compare:
    SELECT 'TABLE_A has these columns that are not in TABLE_B', DIFF.*
      FROM (
            SELECT  COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
          ) DIFF
    UNION
    SELECT 'TABLE_B has these columns that are not in TABLE_A', DIFF.*
      FROM (
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
          ) DIFF;that's assuming, column_name, data_type and data_length are all you want to compare on.

  • How to find the structure fields data in database tables?

    how to find the structure fields data in database tables?

    Your question doesn't appear to be Web Dynpro ABAP related. Please only post questions in this forum if they are directly Web Dynpro ABAP related.  There are several other more general ABAP related forums.

  • How to check the dependency of Timesten Application version 11.2.1 for OEL 6U4

    How to check the dependency of Timesten Application version 11.2.1 for OEL 6U4

    Hi Chris,
    THank for your reply.. My requirement is I am planning to upgrade my Server OS from OEL 5U8/5U3 servers to OEL 6U4. And we are using timesten application 11.2.1 version as of now. So wanted to check if the same version of TImesten can we install them on OEL 6U4 . if we can install it successfully what are the dependent RPM packages we need to consider for installing the timesten application and will there be any issues using the application? .
    Is timesten 11.2.2 is the officially supported and stable version on OEL6U4?
    And also can you suggest me if I want to check other applications dependency like rhino-2.3 and postgres 8.1.23 version how I need to check if this applications versions are certified to run on OEL 6U4.
    IT would be great help if you can suggest me on this.
    Naveen

  • How to change the direction of my application ?

    apex 4.0 , db11gxe , firefox 24 ,
    hi all,
    how to change the direction of my application from left to right to right to left of vice versa ?

    newbi_egy wrote:
    sure i did , i found nothing ,
    provide me with a link if you have one
    thanks
    Hi,
    That's strange.
    Search works just fine for me
    https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=rtl&rankBy=relevance&contentType=all&con…
    Regards,
    Jari

  • How to read the keystrokes of other application

    how to read the keystrokes of other application
    suppose if i create on text doc those modifications should be recoreded
    how to do that.

    reg231 wrote:
    how to read the keystrokes of other application[How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html]

  • How to organize the context object through out the application process

    Hi,
    Here in my application is using the following steps for a process.
    - Login
    - Search
    - Update
    - Logout
    In those above steps, Login, Search, and Update actions are touching to database/LDAP every time. In each time, Im creating new Context object, I think this is a bad approach. When I hit the login, I need to get the connection object and use that for rest of the actions(search and update).
    So can we organize the single context object through out the application? And where do we need to close the Context object?

    Don't worry about it. The provider will reuse connections behind the scenes. They're not tied directly to Contexts.

  • How to organize the intrument library?

    Hi,
    I moved all my JamPacks to an external HD, and everything works well, but do I manage instruments libraries?
    There are lots of similar folders for each jampack, do I have to manually organize all the files and create just one Instrument Library folder?
    Many thanks for your advises!
    Chester

    This question was posted a few months ago. I found it yesterday as I was looking for the same info. But after a talk with an Apple support person, and some experimentation, I figured some things out.
    My instrument folder was all in one place, but perhaps Chester's installer put some things in various places. Still, I think the following info may be useful.
    But before I start, I should mention that none of the following procedures are officially supported by Apple. So it's probably a good idea to make a back-up image of your drive(s) before you start doing this. That way if something gets messed up, you can restore it. Also, make sure GarageBand is NOT running while you do any of the re-arranging.
    As you may know, Apple's instruments are located here:
    SystemDrive/Library/Application Support/GarageBand/Instrument Library
    This entire folder can be moved, but the next time you launch GarageBand it will ask you to locate this folder.
    There are three folders inside that folder: Plug-in Settings, Sampler, and Track Settings. Inside the Sampler folder are two folders: Sampler Files, and Sampler Instruments. Sampler Files has folders each containing the actual samples (audio files) that are played by the instrument. The Sampler Instruments folder has the .exs files that contain the key-maps, settings, etc. that tell the sound generator how to play the samples. Meanwhile, back in the Track Settings folder is another folder called "Software" which has all of the category folders which contain the instruments (.cst files) that are listed in the GarageBand software track info list.
    If you want to delete Apple instruments, you can look at the folders inside the Sampler Files folder. Take for example the folder called: 12-string Acoustic Chords. You would then go to the Sampler Instruments folder and look for the .exs file that goes with it (in this case it is called "12-string Acoustic Chords.exs"), then look in the Track Settings/Software/CategoryFolder to find the "12-string Acoustic Chords.cst" file. You can then delete all three.
    IMPORTANT NOTE: These software instruments are used by some of the AppleLoops (the MIDI type). I haven't found out what happens when one of these loops can't find the instrument it needs to play it's loop. I believe it is the dependance between loops and software instruments that is why Apple does not support "managing" instruments-- even though the library can get quite large!
    Incidently, I have never found out where the MIDI type of Apple Loops are stored.
    Also, instruments that have been added by the user can just be deleted from within GB using the "Delete Instrument" button near the bottom of the info pane.
    To move instruments into different categories, just move the .cst files in the Track Settings/Category Folders from one category folder to another.
    Oh. Of course, make sure that GB is not running when you do your file moving/deleting, etc.
    It was helpful at one point to delete the GB preferences to reset some main library category things. But you may not need to do that.
    manage sampler instruments
    manage garageband instruments
    manage GB instruments
    delete garageband instruments
    arrange re-arrange rearrange

Maybe you are looking for

  • "broken assets" error message when saving project as disc image

    I've seen this question asked before but I've been unable to find a solution that works. I am using iDvd6. After creating my project in iMovie, I shared it with iDvd. I then added a slide show and some music. Before burning to disc I "save as disc im

  • IPod Touch 5th Gen. Music Library is screwed up

    I have an iPod Touch 5th Gen. 32 GB that runs on IOS 8.1.2: One of the artists in my iPod library is categorized under two different letters but they are not even in the right order and the list navigator thing on the right with the letters isn't wor

  • BLOB Column

    I have a table with the following structure..... CREATE TABLE "LFEE_UPLOAD" "UPLOAD_ID" NUMBER, "DDO_ID" VARCHAR2(12 BYTE), "EDT" TIMESTAMP (6) DEFAULT sysdate, "LUDT" TIMESTAMP (6) DEFAULT sysdate, "FILENAME" VARCHAR2(50 BYTE), "TYPE" VARCHAR2(100 B

  • GetXMLString(Node) Question

    Hi, I'm trying to create one document that will contain the results of multiple queries. For example <MY_ROOT> <QUERY1_RESULT ID=1> <FIELD1>stuff</FIELD1> <FIELD2>more stuff</FIELD2> </QUERY1_RESULTS> <QUERY1_RESULT ID=2> <FIELD1>stuff2</FIELD1> <FIE

  • OC-genie not working as i expected after bios update

    Hey guys, I have an P55-GD65 with an i7 860. It ran stable with oc genie on 3.55Ghz but after an bios update ocgenie only clocks to 2.98Ghz. Whats wrong, or what did i do wrong? Greetings.