Concept of an Application

I am trying to understand the concept of the Application. Assume I deployed a web application MyAppTest (http://www.myapptest.com) to the Application Server.
1)When the first user launches the http://www.myapptest.com from a Browser, to access the Application Server, will that starts the loading of the web.xml, struts-config, and many other files? OR those files have already been loaded long before the user's accessing?
2)When the second user from a different computer, do the same (launch http://www.myapptest.com), will it, too, starts the loading of the web.xml, struts-config, and many other files? OR just a session is created?
Thanks.
Eugene

Eugene, it is clear that you are referring to a J2EE application or a J2EE web application, where the later is often packaged inside the former. (So this question is better posed at oc4j forum.)
Instead of your assumption "I deployed a web application MyAppTest (http://www.myapptest.com)", I would assume that "I deployed a web application MyAppTest at (http://<myHostName>:<myPort>/<myRootContext>)". Deploying an application would never change your host name. Do not mention that you are using url redirect or rewrite.
> 1) When the first user launches the http://www.myapptest.com from a Browser, to access the Application Server, will that starts the loading of the web.xml, struts-config, and many other files? OR those files have already been loaded long before the user's accessing?
The pre-loading of web.xml is determined by the "load-on-startup" of your web application in *-web-site.xml. Whether struts-config will be loaded at the time your web application is loaded is determined by the existence of the element <load-on-startup/> of servlet "org.apache.struts.action.ActionServlet" in the web.xml, which usually does exist.
Anyway, if they are not loaded yet, a request will certainly start loading them.
> 2) When the second user from a different computer, do the same (launch http://www.myapptest.com), will it, too, starts the loading of the web.xml, struts-config, and many other files? OR just a session is created?
Of course no reloading of the web.xml, structs-config if they are loaded. Whether a session will be created is determined by your code.
I would not speculate about "many other files"; you have to be specific.

Similar Messages

  • Caching concept on iphone applications

    Hi
    Anybody know the answers for these questions.
    1) Cache is possible in iPhone applications.
    2) I have uitableview and i have to implement paging concepts. So i need to get the value from webservices and put in cache. so when clicking on prev/next button i have to fetch data from cache.
    Is it possible
    Thanks
    mindus

    Try searching for NSSearchPathForDirectoriesInDomains in your documentation viewer and read the associated guides.
    You can also use something like "~/Library/Application Support/Xxx" as your directory and use tilde expansion to get the actual file path. Create this the first time and then use as you wish.

  • How can we reset the session data in SAP ISA B2B application.

    com.sap.isa.isacore.action.IsaCoreInitAction$StartupParameter this action class providing the special feature to store all data passed to it in the request as parameters into the session context and make them available for all other actions.
    1. But in the inner class they had defined private parametrized constructor.
    2. Action class is defined as final.(there is no chance to override the method)
    3. There is no setter method (only getter() is available).
    4. Creating a new Z_ class that is reflecting in entire application.
    5.They had hard coded the Session attribute name in Action class.
    6. Application is expecting a session object with the same attributes.
    Is there any chance to create a new object for this class or any where any chance to reset the session data. Am using the Multiple_SoldTO concept in my application. My back end ECC .Please help me.
    Advanced Thanks
    PC.M
    Edited by: pmudigonda on Jul 6, 2011 1:21 PM

    I am not sure about your requirement, but yet.. Did you check UserSessionData object? It encompasses all the session variables.

  • Concept of use.

    Hello,
    Let's say I have two queues one is for Queries, second for Updates, and I want to simulate workload balance algorithm with following steps:
    {Query} is loaded from CSV,analyzed and converted to {Query,ClassifiedSpeed} with SVM classifier.
    {Update} is loaded from CSV, analyzed and also classified to {Update,SomeParam} but without SVM.
    I'm aggregating {Query,ClassifiedSpeed} by ClassifiedSpeed value in range 30 rows, mayby range unbaunded...
    I'm updating order of {Update,SomeParam} by SomeParam, just to optimize update for single table in SQL
    Now I want to pick row with update or query by some rules, execute it on database ( inside Bean ) and when it's {Query} i want to
    compare {ClassifiedSpeed} with real execution time, that's why I need to communicate with Classifier bean once again.
    Anyway I'm a bit lost with concept of that application.
    I know how to create almost every step on that list, but I'm not sure how control channels and processors.
    For example: I have Queries A, B, C, A, C, C, D ( timeline -> )
    That gives me input channel ( grouped and counted set, ordered by Count )
    {Query,Count,ClassifiedSpeed}
    C, 3, Fast
    A, 2, Slow
    B, 1, Fast
    D, 1, Slow
    Now i get updates which are only ordered by some extra param:
    {Updatem, SomeParam}
    U1, TABLE_FOO
    U3, TABLE_FOO
    U2, TABLE_XXX
    the thing is that when I connect both streams into one bean via processors, collect length of queries for statistics, and retrain
    SVM if percent of classified event's is lower then expected. So I need to be able to say to processor of aggregates Queries:
    Give me best aggregated row, the same to Update: Give me set of updates ( list of events in input here, I know how to handle that ),
    but CEP application is based on evens starting from flow order. I need to have working buffers which should be able to give me some
    data only when I want.
    What Is also important for me: I need to collect "Quality of Data" it's relation between on timestamp and correlation of single rows in
    both queues. It's like: Give me number of rows starting from timestamp of Single Query, which are older and affects the same table'
    I'm not sure how can I count it when I aggregate queries for processing.
    Some extra quesion: Is there possibilty to aggregate ids of queries in CQL? I know that I can do that type of things in SQL (eg. mySQL GROUP_CONCAT )
    From data :
    101, AAA
    102, BBB
    103, CCC
    104, AAA
    105, AAA
    106, CCC
    it's possibile to get two columns, where "|" is just separator of ids in single string parameter
    AAA,101|104|105
    BBB,102
    CCC,103|106
    Bye.

    Ok. I'm one step closer to understand how can use CEP. I spent 15 minutes on reading 12th chapter ( it's 4.30 AM ;) ) and I think I know how to store results but it still seems to be a bit mad solution for me.
    Let's go back to example, which is closer to my task :
    SELECT Query, QueryHashCode, QueryOrderNumberInStream, COUNT( QueryHashCode ) AS CountOfDuplictesInQueue
    FROM Stream[RANGE 20.../ still not sure/ ]
    GROUP BY QueryHashCode,Query, QueryOrderNumberInStream
    ORDER BY CountOfDuplictesInQueue DESC, QueryOrderNumberInStream ASC;
    .. bean processing.
    Classification here of before first select.
    Query,
    QueryHashCode,
    QueryPredictedSpeed ( 1 - 3 ),
    QueryLength ( 0 - 5000 ),
    CountOfDuplictesInQueue ( 0 - 1000 )
    Data :
    Query = "SELECT * FROM foo ";
    QueryHashCode = 312321; //. Query.hashCode();
    QueryPredictedSpeed = 3;
    QueryLength =18;
    CountOfDuplictesInQueue=2
    Now I'll use processor to count something similar to :
    SELECT Query, ( QueryPredictedSpeed /CountOfDuplictesInQueue + 0.001*QueryLength) AS some_order
    FROM foo [ .. ROW 1 ]
    and here is new issue :
    When I put it into cache I'll have to define timeout etc. and keep just one row in cache because new rows can modify order ( COUNT () )
    so it's a bit sick stuff for me to build few components structure for one row?
    1. When I Group few rows in CQL are they going to be removed from stream? I guess Yes.
    2. I think that processor will input data into stream in loop so it's also doesn't make sens when we are overwriting row which is not processed.
    3. Cleaning cache each time is madness for me ;)
    R.

  • RFC destination with CIF application case !

    Hi,
    Can someone explain the difference between
    Assigning a logical system to a RFC destination  and
    u201CAssigning a logical system to a RFC destination with CIF Application case" (there are 4 of them in all as i see - AC, RL, RQ, DG, AC- refers to availability check)
    e.g I have 2 entries in the system landscape settings.
    1)     Logical system u2013 RFC destination
    2)     Logical system- application case AC u2013 RFC destination.
    Even if I remove the 2nd entry, the relevant APO ATP FMu2019s are called  (just a negative testing to see what goes wrong without application case) but am clueless about this concept of CIF application case. Why such a provision to begin with. The context help says. some transaction need to have synchrious RFC and hence the need but i see the same even without his entry.
    Regards,
    Loknath

    Hello Loknath,
    If I understand your query correctly,
    1.Assign logical system to RFC destination is OK for you.
    2.Assigning the RFC destination to a specific CIF application is used in the following case,
    You have a system/service user set up for communicating with the R/3 system thru CIF & this is assigned to the RFC destination assigned to the point no:1
    & for debugging purposed you need a dialogue user, so you may assign this dialogue user to a different RFC destination & assign it here in the customizing (Assign RFC to application cases) to the application Debugging..so that while the particulat application is called (Debugging...CIF cockpit...etc)the corresponding settings from the different RFC destinations will be used.
    I could not understand your query, where u relate some ATP stuffs with this CIF topic...
    Thanks,
    Mahesh

  • Python Server/Client Application Development

    Hey All!
    I am writing a basic proof of concept server/client application for a project I am working on.
    My goal is this:
    1) End user launches client.
    2) Client connects to server.
    3) User selects one or more files to send to server.
    4) Server saves a copy of each file.
    5) Server terminates connection.
    5) Server processes each file.
    6) Upon completion of the processing server sets a "processing completed flag."
    7) Client periodically checks with server for "processing completed flag."
    8) Client securely reconnects
    9) Client downloads processed files.
    I have no background in programming servers/clients so this will be a learning experience for me and the workflow described above may change as I learn more about how this all works. Currently my hope is to first implement a system that will stay connected while the files are processed and once I have a better understanding as to how that works I can add more complexity to the system.
    I will be writing this in Python 3.3 and the server will be hosted on a server which will (for now) be running Arch.
    This thread will act as a sort of development journal but feel free to comment or post suggestions. I will for sure have questions as I go along too!

    brettski wrote:Turns out the best way (so far as I can tell) is to go integer -> string -> byte and then byte -> string -> integer..
    Do you mean regular, non-byte strings? That cannot possibly be the best way to do it. It would be like using Russian as an intermediary language for translating Spanish to French.
    Maybe the following will set you on the right path:
    http://stackoverflow.com/questions/6187 … -in-python
    http://stackoverflow.com/questions/4445 … int-python
    Looking further, this is probably the right way to do it:
    some_int = 57
    bytes = struct.pack('i', bytes)
    sock.send(bytes)
    See http://docs.python.org/3/library/struct.html for details.
    As for threaded servers, you may find some useful examples here.

  • Steps to make a swing application work Faster

    I have developed a Accounts Project using Java Swings. Which has a lot of database Concepts but the Application is working slowly even in my Pentium 3 Configured Machine. If any one out there could help me pls. Urgent.

    The MyFactory class should manage the pools of components. If you request a JTextField, this factory should:
    - Look for a JTextField in the pool
    - If there is a JTextField on it, factory should give it to the application and remove from pool
    - If there isn't, factory should instantiate one and give it tp the application
    - When the application doesn't need the JTextField anymore, it should give it back to the factory, and the factory will put it back to the pool if the pool is not full of JTextFields, probably reinitializing some properties (text null, for example).
    This is only an aproach, you can test several others. What it seems more hard is giving the components back to the factory, but maybe you can build a JTextField subclass and do it automatically (perhaps rewriting removeNotify or something).
    Do some test before deciding, but if in your application runtime you create components frequently, maybe it can help your performance. Let us know.

  • What is the logic for the behavior of LV9 when opening vi references?

    I recently started using LV 9 and I can't figure out what the rationale is for the LV 9 behavior when opening references to vis. The way I understand it, LV9 looks up vis using the absolute path on the disk where they came from when opening references, even if they are in memory. If just a vi name is given, LV9 tacks on the path of the referring vi on disk when trying to open the reference. So, as far as I can see, either an application opening references to vis needs to specify absolute paths to the location on disk and be modified whenever a dynamically called vi's location on disk is changed, or a dynamically called vi has to be saved in the same directory as the vi doing the calling or in a rigid and inflexible directory structure.  
    Example:
    I am trying to use a 3rd party library whose vis open a reference to a vi that I create, the name of which is obtained from those in memory using a name pattern. The library vis get the name of the vi I created and try to open a reference to it. Previously this worked because LV looked in memory for "my.vi" when opening the reference but this fails with LV9 because it apparently looks for, e.g., "D:\VI\3rdparty.llb\my.vi", not "my.vi". So, as far as I can see, I have to save my.vi in 3rdparty.llb in order to use it. And, if I want to use 3rdparty.llb in another application, I have to save other vis to 3rdparty.llb or create a new copy elsewhere and save to that copy for the new application. A similar situation would occur if I passed the name of my vi to the 3rdparty.llb vis - either I would need to pass an absolute path and modify my application if I ever want to move my.vi, or save it in 3rdparty.llb.
    Another example:
    I have a large application built into an executable that calls up to ca. 60 vis  using references.  Previously I could just specify the path to the executable, and I could easily open references to my vis. Now  (if I try to use the LV 9 file structure), I can't figure out the paths I need to open references. Either I have to specify the absolute path to the original location in my development directories, or I have to store all my source vis in some particular directory structure. If I want to reuse my vis in other applications (which I do) things would get pretty complicated. Likewise if I want to optionally open references in other vis than my top level vi (which I do), it seems well nigh impossible.
    Basically I am struggling with the concept that an application remembers the directory structure where the source files were located, and/or depends on a particular directory structure of the source files to work. Maybe I'm missing some tricks that would make things easier, but someone will have to explain to me why these are good things. 

    I appreciate the responses and explanations. I've certainly learned
    some things. I have extensive experience using LV but over a fairly
    narrow set of
    applications so I'm certainly not aware of many of the possible
    techniques.  I clearly don't use LV in the same way as what appears to
    be the mainstream for LV programmers.
    I have some additional
    comments on the various responses:
    "But
    with VI libraries and LVOOP this had the problem that multiple VIs could
    end up with the same name..."
    I'm not clear what this means exactly. My first response would be
    that it doesn't seem like a good idea in general to use different
    portions of code with the same name in a single application. I'm
    surprised this is even possible.  I don't think LV will even let me
    build from a project in which it finds name conflicts for vis.  
    "In addition to what Rolf wrote, it should be
    pointed out that LV should NOT be looking for files if you built your
    app correctly. Each VI maintains a relative path to all VI it calls and
    it should know exactly where to find them (assuming they're there).
    I think this illustrates one thing I was talking about. The
    assumption appears to be that the organization of your source files is
    an essential ingredient in the application that is built, which is a
    foreign concept to me. My project file knows where all my vis are, the
    applications build correctly, and, using the 8.x and previous file
    structure for my exe, they work, and have for some time.  As far as I'm
    concerned the main point of using a project that identifies my source
    files is to be able to pull in code from different places - if I want to
    use a different version of one of my dynamically called subvis, from a
    different location, for example, I tell the project file to use the new
    version and rebuild.  In your scenario, as I understand it, I'm not sure
    why a project file in which you identify source files is even needed, 
    if LV already knows everything about the components of the application
    you're building.  As I mentioned, my primary application uses ca. 60
    dynamically called vis. Most of these control different subsystems of a
    large distributed hardware control and data acquisition system. All of
    these are used sometimes when the application is used, but pretty much
    never all of them at once - typically something like 10-30 of the
    user-interactive vis are run at once. There is some communication
    between them using globals, queues, and semaphores and such, but for the
    most part they are independent and I test them separately. Until the
    application is built and used, there is no need to run the entire
    application  including all subvis, and I never do it. When I build my
    application, the app builder finds all the vis I specify and constructs
    the exe file including all the vis I've told it about. Before LV 9 it
    never occurred to me that I might actually have to worry about being
    able to find vis inside the executable. 
    "However as tst has mentioned having an
    executable search for VIs is a VERY VERY bad idea as it can break your
    entire app if it happens to find the wrong VI at some point."
     I don't really follow this point at all. Where are these vis
    masquerading as the ones I want that will break my application? The only
    vis on the machines where my applications are used are there because I
    put them there inside the executables. I certainly would never use
    different vis with the same name in an application - as I said above, I
    don't even know if it is possible, and don't want to find out.  Search
    paths to find components like shared libraries are a common thing. It
    doesn 't seem like a stretch for the run-time environment to define a
    default search path like "somewhere in the exe file containing the
    application".
    I don't want to make a mountain out of a mole hill here, as I said
    before, I am happy as long as NI supports the 8.x file structure, but if
    nothing else I have definitely learned to appreciate how different
    executables built w/ labview are from executables  constructed in other
    systems. 

  • How to activate Purchase datasource without deleting setup table for others

    Hi Gurus,
    In developement system purchasing datasources 2LIS_02_HDR, 2LIS_02_ITM and 2LIS_02_SCN are active and deltas are also running for these.
    Now acccording to the requirement We need to activate other datasources as well like 2LIS_02_CGR and SGR .........
    To so this do we have to run the setup table again or any other option is there for this??
    As this step would take lots of time in Production and for this downtime would be required which is not feasible.
    Please suggest some solution.
    Thanks in Advance,
    Uday Shankar.

    Hi,
    We will do the setup (Filling and Deleting) concept based on application component it's not based on DS .S you don't have other way.
    Regards
    Ram.

  • Best practice for securing confidential legal documents in DMS?

    We have a requirement to store confidential legal documents in DMS and are looking at options to secure access to those documents.  We are curious to know.  What is the best practice?  And how are other companies doing it?
    TIA,
    Margie
    Perrigo Co.

    Hi,
    The standard practice for such scenarios is to use 'authorization' concept.You can give every user to use authorization to create,change or display these confidential documents. In this way, you can control access authorization.SAP DMS system monitors how you work, and prevents you from displaying or changing originals if you do not have the required authorization.
    The below link will provide you with an improved understanding of authorization concept and its application in DMS
    http://help.sap.com/erp2005_ehp_04/helpdata/en/c1/1c24ac43c711d1893e0000e8323c4f/frameset.htm
    Regards,
    Pradeepkumar Haragoldavar

  • Soap Fault Handler

    Hi
    I have written a prrof of concept page in Application Express Builder to call a web service.
    It all works OK as far as it goes; the page process gets the data and the report section displays the data. The success and error messages defined in the page process are displayed too.
    However, I found in the documentation that the error message section on the process definition is for unhandled errors (Soap faults). I need to get at the 'detail' in the soap fault.
    Where do I define the handler and are there any tips on how to code it?
    Thanks

    Hello Nick,
    Contact BEA Support and ask for CR182310_81sp2.jar
    This should solve your problem.
    For information the fix is included in version SP4
    Regards
    Nohmenn

  • In which case we need a class with all methods defined as abstract ?

    In which case we need : A class with all methods defined as abstract (or should we go for Interface always in this case)

    The concept of interface and abstract class overlaps sometime, but we can have the following thumb rule to use them for our specific need:
    1) Interface: This should be use for code structuring. They standardize your application by providing a specific contract within and outside. If you think abstract class also provide structure, then reconsider as it limits the structure re-usability when there are many super-classes to inherit from. Java allow multiple inheritance by interface and not by Abstract class.
    2) Abstract Class: This should be use for code-reusability. Interface doesn't have any code so can't be used for code-reusability.
    Actually we can use both to provide the best.Taking a refernce to J2EE framework, the "Servlet" is an interface. It laids down the contract/structure for any code to be a servlet.
    But the "GenericServlet" class is an abstract class which provides implementation of some of the methods defined in the "Servlet" interface and leave some method abstract.
    Thus we see that the "Servlet" interface standardise the structure and the "GenericServlet" abstract class gives code re-usability.
    Original Question:
    In which case we need a class with all methods defined as abstract ?To this question, as all methods are abstarct we don't have option for code-reusability. so why not add standard structure concept to your application. So if there is not any restriction on making the field variable(if any) as final, we should go with the interface concept.

  • Connection Pooling in OCCI Vs Multi-Threading.

    Hi,
    I am working on an application in which I am using OCCI( Oracle C++ Call Interface)  and multi-threading concepts.
    My application is having different clients( Ex: Client-A, Client-B) and I am offering a set of operations( functions that trigger the Stored Procedures of DataBase ) which are common to all the clients.Each Client can send asynchronous requests of any number.So, is there any chance of using single connection( not connection pooling) to the Data Base for all the clients to manage their requests ?
    Note: Multi-threaded requests are also allowed from each client.
    How can I co-relate multithreading and Connection Pooling in OCCI?
    Can I you multi-threading without Connection Pooling? If so how?
    Will the connection pooling is needed if there is no multi threading concept in my application?
    Please help me on this. Very urgent.
    Thanks in Advance..:)

    Connections are resources that the application uses and a fewer connections can be used by multiple threads if the threads are not always busy with the database activity only, and are doing other work too. This sharing (pooling) can be implemented by the application or the application can leverage the connection pooling features offered by OCI/OCCI (recommended).
    Be aware of connections vs sessions and sharing them (refer to :
    OCI Programming Advanced Topics
    OCCIConnectionPool is to pool connections and OCCIStatelessConnectionPool is to pool sessions. Please see the differences in the above link and apply as appropriate.

  • IPhoto and Aperture... working together?  Tips please?

    Hi there, I'm a new Mac user. I moved over from the PC where I used Adobe Photoshop and ACDsee image viewer. I wanted to get the Aperture experience so I now have Aperture 2.
    The 1st part of my problem is, a lot of my photos are already "in" iPhoto '08. I imported them before I got Aperture 2.
    The 2nd part of my problem is that I don't really fully understand how iPhoto '08 works. I can't seem to wrap my brain around the notion that it's primarily a database. I have all my photos carried into my computer via iPhoto, but I immediately copy them over to my external hardrive, rename them, then import them BACK into iPhoto. Is that the scenic route, or what? But right now, it's the only way I can really get a grip on how the whole process will work to my benefit of understanding. After the pictures are back in iPhoto I then "understand" them to be existing in 2 separate places; one on my external hard drive, the other on my internal drive where iPhoto stores them (wherever the heck that is!).
    This brings me to my ultimate problem. I don't, at all, understand how Aperture and iPhoto would collaborate together to allow me to edit the pictures in Aperture, while still allowing iPhoto to present them to me in a "photo viewer" type of way.
    I don't know how to work with BOTH programs at the same time; Aperture AND iPhoto '08.
    I want to use Aperture to edit my pictures but I still want to use iPhoto to view my pictures. I think iPhoto is a neat little program, and would really like to keep using it. I'm just recently exploring iWeb and the two really work well together.
    Would anyone have any good tips for a beginner?
    Thank you so much
    YahYah

    Hi and welcome to the Mac!
    Alright. Before you do anything else, you need to stop, sit down and - as William said - watch the tutorial. In fact, you need to watch all the Aperture tutorials. Second, Aperture is database. Repeat after me: +Aperture IS a database. Aperture manages my pictures... I don't touch them, move them or copy them.+
    If you're worried about that well, don't be. Although it appears like a monolithic file in the Finder, there is no weird compression going on that makes pictures unreadable. You can always get to a photo through the Finder if need be. But I've never had to.
    With Aperture you've bought into the mother lode in terms of photo management. So please understand this: Aperture HAS to be the master here. Believe me, it'll make your life a lot easier further down the road. There are all sorts of ways to integrate Aperture in the iLife workflow. In fact a lot of iPhoto 08's (fun) functions have made it into big brother Aperture 2. My advice to you would be to use Aperture for ALL your importing, cataloging and editing and then use iPhoto on a per need basis. You can import select pictures from your AP library into iPhoto without duplicating the files by going into iPhoto's preferences/advanced and unchecking "Copy items in the iPhoto Library". This means you'll be able to drag photos from the Aperture library panel into iPhoto without duplicating anything. IPhoto will simply link to your AP library package. Things you need to be aware of:
    • read up on Aperture previews. Any picture that has a preview can be shared amongst any iLife app (iWeb included). To create an iWeb photo page for instance, you simply open iWeb, choose your template and drag the pictures you want from the media browser. Not much more difficult than iPhoto.
    • read up on import strategies. Your process as described is quite convoluted and will only lead to duplicate files all over the place. It could also generate serious problems eventually.
    Using Aperture to only do editing is like buying a Ferrari to drive in a school zone. You absolutely need to grasp the concept of the application, how it integrates with the rest of your computer life and what it can do for you. I know it may seem daunting at first and you might be tempted to revert to your old ways of doing things. But don't. You'll be a lot happier in the long run AND you'll also be making the most of your recent purchases. Trust the Mac young jedi....

  • Looking for APEX tutoring in NJ (with pay) - urgent -

    Hi,
    I'm a newbie to APEX. I can get a simple form up and running fine. But the project is more than a simple form. I have not got a chance to get training yet. I'm looking for an experienced APEX developer in NJ to tutor me with pay. I'm using APEX 3.2 with Oracle 11g database via Embedded PL/SQL Gateway (which probably is not so relevant). A brief description of the project is as follows:
    Login -> Home
    |
    V
    Form 1 -> Search, then display the items that were entered (maybe a dynamic display) based on the search criteria. Click on the item to faciliate "Update" or "Deactivate" (similar to "delete"). On the top of the page, there's a "Add" tab to facilitate insert.
    Form 2 -> ......
    Form 3 -> ......
    The same or similar logic for the other Forms (total about 10 Forms, with Reports added later). This is some of my rough concept, the overall application flow/wrapper can be discussed, if there's other alternative or I'm not on the right track.
    Please let me know PROMPTLY.
    Thanks much,
    Helen

    Why are you repeating a prior posting you made today (Looking for APEX tutoring (with pay) in NJ - urgent - Posting the same item more than once will cause headache and issues with the folks that frequent here..
    If you have a need for tutoring, as you have asked, you have been sent three viable solutions to follow (two different responders in the area willing to help for $$ and one response involving working through the tutorials on Oracles APEX page and buying one of the better APEX books.. I Would HIGHLY Recommend John E Scott's book, http://www.amazon.com/Oracle-Application-Express-Experts-Voice/dp/159059827X ..
    Keep the questions coming, folks here will help when they can..
    Thank you,
    Tony Miller
    Webster, TX

Maybe you are looking for

  • Imac refuses to aoto-sleep

    Since I upgraded to Tiger, the machine will not auto-sleep, regardless of the energy saver preferences set in system preferences. Any ideas on a solution -chat with an agent seem unable to solve it.....

  • Port Replicator (45K1610), x301, and resolution help

    I have a x301, a port replicator with model number 45K1610, and a Dell 22" wide screen monitor.  When I connect the monitor directly to the laptop I can get the max resolution of 1680x1050 out of the monitor but when I plug the monitor through the po

  • Photoshop Elements 11 Trial Direct Download

    I am running windows 7 Professional. I have downloaded the PSE11 trial direct download files to a new folder on my desktop. Now I want to install the program and I cannot find the .exe file to start the install. All that's in the folder are two files

  • How can I trigger audio on mouse hover

    I know,  I know, sound is annoying on webpages but Im building a site that makes it easier for people who cant read to be able to understand the information better, i.e. making it more a accessible. Ive tried using the Javascript method but I couldnt

  • SMF Manifests for Apache & MySQL

    I recently started checking up on SMF since the need for service control became bigger. That and the options for added security when it comes to the privilege system. I dug up a manifest for apache somewhere but simply disliked it because it used the