Crossing of multiple applications in the same workspace

Hi all

I have a question about moving between pages. I have a side navigation bar with all the applications that are in the workspace with the following query in a report region:
declare
begin
  return(
    'select t.application_name,
            t.application_id
       from apex_applications t
      order by t.application_name');
end;
And for the reports attribute, I have hidden application id and a link on my field of application name and the url is the following:
f?p=#COL02#:1:&APP_SESSION.
My problem is that I don't want to force the 1 page reference in the url as not all applications begin on page 1. However, when I removed the reference on page 1, the link may go directly to page 0 instead of an actual page.
My next option may be to go in one of the views apex take page min to set the page number, but that sounds like a bad hack and I prefer to use something a little more elegant than that.

Can someone point me in the right direction?

Thanks in advance,
Ivan

Ivan,

On this basis:

f? p = COL02 #: 1 #: & APP_SESSION.

However, when I removed the reference on page 1, the link may go directly to page 0 instead of an actual page.

That the link attribute looks like then? I can't imagine how you could get to page 0.

Anyway, try this:

Select home_link in apex_applications

Scott

Tags: Database

Similar Questions

  • Page of the copy from one application to another application in the same workspace

    Is it possible to copy a page from one application to another application in the same workspace?

    If so could you tell me how its done?

    Thanking you in advance.

    go to any page in your target application and click on 'Create' > 'new page as a copy '. The rest of the process is driven by the magician.

    Denes Kubicek

    -------------------------------------------------------------------

    http://deneskubicek.blogspot.com/

    http://www.Apress.com/9781430235125

    https://Apex.Oracle.com/pls/Apex/f?p=31517:1

    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494

    -------------------------------------------------------------------

  • Button depends on the existence of another application in the same workspace.

    Hi all

    Is it possible to package a button on the existence of another application in the same workspace.
    What I'm trying to do, is to have a MAIN application and several other applications MODULE in the same workspace. Then a button on a form in the MAIN application which will redirect to a specific page in one applications MODULE. If there is no such thing as the application MODULE, which means not installed, then the button would be invisible.


    Concerning
    Hansen.

    PS. Is there a better way to implement the MODULES

    Hello
    >
    Is it possible to package a button on the existence of another application in the same workspace.
    What I'm trying to do, is to have a MAIN application and several other applications MODULE in the same workspace. Then a button on a form in the MAIN application which will redirect to a specific page in one applications MODULE. If there is no such thing as the application MODULE, which means not installed, then the button would be invisible.
    >
    Take at look at the view APEX_APPLICATIONS Apex. You can query this view to write your condition (Select returns at least one line) on the button.
    Something like

    Select 1 from APEX_APPLICATIONS where Application_id = 101
    

    See you soon,.

  • Navigate between two applications in the same workspace without sing again

    Hi all

    Version 4.1.0.00.32 of apex. Oracle DB version 10.2.0.3.

    I have two applications built in the same workspace, if a user can log on to two applications with the same user name and password. I'm looking to put a link on one of the applications to direct the user to the other app. Is there a way to avoid name of user and password to re-enter once the user clicks on the link? I noticed that the session ID is application + user. Not by the workspace + user.

    Thank you
    Sinan

    Change the properties of authentication scheme in both applications and set the name of the Cookie to be the same.

    As long as the session ID is maintained in the links, you'll be fine.

    Each application will allow authentication in your applications, but only after the relevant authentication will trigger.

    Scott

  • How to restrict access in EDITION of APEX Applications in the same workspace

    Hello

    I have a workspace that consist of several say application APPL1, APPL2, APPL3,... etc...
    This workspace has access to several... say developers Developer1, Developer 2, etc...

    How can we restrict access in EDITION of Applications for a particular user.

    for exp.

    Developer1 should be able to access/change only the APPL1 & the APPL2. He should not be able to modify APPL3.
    same way... * Developer 2 * should be able to access/change only APPL3. He should not have editing access to APPL1 & APPL2.


    Thank you
    Deepak

    Hello

    I think that's not possible. At least I don't have to see how it could be done.

    This is why there are work spaces. You must create a workspace clean to all applications for example.
    Then of course there was maybe still problem with the analysis of access privileges to the schema if for example all 3 applications use the same scheme of analysis.
    You must assign same pattern to all areas of work, and then all of the developers of the workspace that you can change database schema objects.

    BR, Jari

  • How to allow multiple applications read the same udp port?

    Hi all!

    When I try to open the same socket udp of two different applications, I have error 60:

    'Current address of use'.

    I know it's possible.

    But how to with labview?

    Thank you.

    Guy.

    I mannaged to solve the problem. I wrote a program in c# and using the udpclient class. I activated the socket option called reuseAddress.
    only imported the dll to labview.
    I was finally able to open the udp port that has been taken by another application. Note that this could be done if the transmission was a show, but it's enough for me.

  • Multiple application to the same project

    Hi all

    I wish I had 1 application runs as a service to start and another is a UIApplication to set the variable to the first application. How can I do this in the same project?

    I try to separate two project but when running, I got the below error

    Class 'com.mytest.phone.UserInfo' multiply defined.

    The linker error: "VerifyError" for MyTestSetting_BB

    Error starting MyTestSetting_BB: 'com.mytest.phone.UserInfo' multiply defined class.

    Two projects use UserInfo for storing data persistenly.

    Thanks in advance,

    POJ

    I'll just try to rephrase what Simon and Bika have already said, but otherwise it's maybe a little clearer.

    The BlackBerry smartphone does not load two classes that have the same name.  Of the same name, in other words the package and class name.  If you have a PersistentData class in the com.myorg.testapp1 package, as well as in the com.myorg.testapp2 package, then here is therefore not the same thing, even if the class name is the same.

    However for process objects in PersistentStore, the same class should be used.  So even though the two classes PersistentData in testapp1 and testapp2 were the same, the BlackBerry only would leave one of them extract the data.

    So to store data in PersistentStore which is used by the applications of two (or more), you should use a common (shared) class.  An easy option is to use standard RIM provided classes such as vector and String.  But that can make life a bit difficult.

    The simplest option is to share classes between applications.  This can be done easily in the JDE.

    Step 1: You create a project that is testapp1 and another is testapp2.

    Step 2: Then you create a third project of the library, which provides the object that will be stored in PersistentStore (and of course, this might have any other components shared as well).  Let's say this project is in the com.myorg.shared package.  Then com.myorg.shared we PersistentData class, she object that is persistent.

    Step 3: You are doing the project two testapp dependent on the com.myorg.shared library project, just the dependencies of the project

    Step 4: You import com.myorg.shared. * classes in testapp classes that use data from PersistentStore.

    I presume that you can do this kind of thing in Eclipse, but I don't him did not.

    Once you understand this, then you can create library files that are in independent work spaces, so that you can maintain testapp1, testapp2 and share completely separated.  But is not too far for this explanation.

    But in short, you do not add the same class for two projects, you make sure that the projects share the same class.  To achieve this, have three projects, two applications and a library.

    Hope it makes sense.

  • How to switch between multiple windows in the same application?

    Hello

    I use OS X Capitan version 10.11.13 and I'm trying to find an easy way to switch between multiple windows in the same application by using CTRL + alt or different keys.

    Here is what I feel...

    Let's say I have Outlook, Google Chrome, Safari, iTunes and apps 'about this Mac' open.

    I open the new message window in Outlook and another Chrome window. I have therefore 2 separate windows in Outlook and Chrome.

    With that, I'm unable to move the composition and the window main outlook which is so annoying. Let's say I want to read the emails by the prospect main window and transfer of the content of the compose window! The command + tab doesn't take me to the main window of Microsoft outlook! Even if there were the last visited / applications window. This constraint is not intuitive, unless it can be configured in the settings?

    Strangely, I can't switch to the "about this Mac" window.

    The work around is to use the function (F3) mission button and click on the window, that I want to use or click the "Outlook" application on the dock icon and choose the window in the list.

    Does anyone know how switch between different windows in the same application by using a key combination or one another method other than listed above?

    Thank you

    Avinash

    In general, an Application that can open multiple windows provides a "Windows menu" you can choose the window you want.

  • [Q] can Vision track multiple objects in the same area - objects that might cross?

    Hello

    Sorry for this long title, but this is my question.

    Can Vision track multiple objects in the same area - objects that could cross?

    Because I'm able to do, extraction of XY, but it seems that "IMAQ County objects ' don't follow framework after but framework opposed, but extract the coordinates XY always in the same way, as for example from top and whenever he sees an object, it retrieves the XY, but if the objects pass through (then it will extract XY without worrying that the objects was the earlier but just based on"scan from top to bottom").

    That's why I open this topic in the forum of Vision no part: http://forums.ni.com/t5/LabVIEW/Sort-XY-by-closest/td-p/2440428

    Thank you

    Sébastien

    Thank you for your response.

    My problem is that we work with very small insects and the shape/color is the same for all.

    Then the solution is: Let's wait for "IMAQ County objects 3 ' then .

    Thank you

    Sébastien

  • OAM - map multiple URLS for the same web application

    Is OAM, posible to map multiple URLS to the same web application? When the user access to a different URL, it passes to the same application but set up with different strategy?

    In this case, this is the scenario that describes ROISSAC - as he says OAM cannot protect the same resource with two different strategies.

    Perhaps you could do this at the level of the network - if the two companies access the application through different proxy servers, you can use different identifiers to host for the two WebGates on proxy servers. This solution is easier to apply when there is a physical separation of users (for example, the internal/external users) rather than different users coming through the same path.

    Kind regards
    Colin

  • IMac is not able to share multimedia files with multiple users on the same computer.

    We just bought a new IMac that we were very excited.  We have phones Apple and iPads, replacement and ten year with a new Mac old PC made since.

    Now, the trouble begins. For more than ten years Windows had several usernames on the same machine and have been able to have a shared folder only for music, pictures and video that my iTunes program and others could acsess and share from several user names. This kept all in one place for new photos families by me or my wife and our 30 gigabytes of music that comes from our CDs was available at bolt of us. Now in train to implement on IMac should be easy but is impossible.  after transferring the music to my login information, it cannot acsess all files on my login. I am not even able to share or provide his acsess. I can move the iTunes folder to my shared folder. She can get acsess now but iTunes says that the library file is locked. I worked with care from Apple on the phone for that sold, but they believe it will not be possible without creating two copies of the 30 gigabytes of music for each of us. who would take more hard drive when it failed too.  Sharing is not any help. These files were before iTunes. I'm not pay 30 dollars a month to store in icloudcor use a google reader slow to the Internet connection when everything's fine here. Apparently Applow programmers do not believe in sharing of multimedia files between two users on the same device, even if a PC does that very well. My choice here is so far have duplicates of all the photos, music and videos loaded on the disc for me and my wife, charge all the media for an external hard drive which for some reason any all Apple programs will share, or return the mac to another PC that will be able to make several connections with sharing music and photos. Apple if you are reading this you are 10 years behind on that. Not everyone is born in the last five years and bought their music on iTunes to be able to use home sharing. Home sharing cannot help this. your applications should be able to be told to use the media files shared without import copies to readers of the user. I am very disappointed. Someone else has any ideas for that?  I have pictures, not iPhoto. I have a week more to be able to return it. I'm not interested in making a fake account that is always connected to share or maintaining of me constantly connected. It should have been easy, I had to be happy to play with new software.

    Photos, iPhoto and iTunes libraries must appear on an external hard drive that is formatted as shown below to be used by multiple users on the same Mac:

    So get a properly formatted external HD and move your iPhoto/pictures of her as well as your iTunes library.  This way all your iMac users can access and use both libraries.

    An alternative to the external HD method is to partition your internal hard drive into two partitions, one for libraries.  It is formatted as shown above and be large enough to contain the libraries and allow the expansion of libraries.

  • Captivate 9 timeline weird behavior - multiple items on the same line

    I'm a 7 Captivate program migrate 9 Captivate.

    I opened 9 Captivate

    I opened the version 7 of Captivate

    Everything worked perfectly.

    All of a sudden the timeline behaves badly.

    Now when I try to change the stacking order, several objects are appearing on the same line. Some lines are empty.

    Has anyone seen this? I've included a screenshot.

    Articles 1, 2, 3 multiple items on the same line

    Point 4, lines are empty.

    Can someone provide advice?

    Thanks Lieve. I tried everything, except the reset of the workspace (don't think this!). The project was corrupt finally decided (he was not past in other projects).

    I ended up creating a new project and copied into the new project slides. It worked fine after that.

    GRR... an hour lost

  • Standard procedure to maintain two OWB application on the same database?

    I have several States. I want to deploy all the mapping of OWB States in a single server.

    My question is, do maintain us separate owbowner for each State? I need to create different workspace for each State. So, I can keep all the workspace in one owner owb? OR should I have each owner owb for every State?

    Please suggest.

    Hi Shrinika,
    I see no reason for the implementation of different 'States' mapping sepparate with workspaces.
    It is perhaps best to implement for each 'State' with sepparate project or the same module (in the same project) in the same workspace.

    At least in the case of multiple spaces of work/projects (for each ' State') you will have problem with integration of maps in unique processflow...

    Kind regards
    Oleg

  • How to prevent a user from opening multiple instances on the same computer?

    On site oldnavyweekly.com , there is a .swf which prevents users to open multiple instances of the site at the same time on the same computer. If you open the site and try to open it again in another window, it will not load. Cannot open the site again until the first window is closed. How did they implement this?

    My analysis, that is NOT:
    1. cookies - the block always takes place if you try to open it in Internet Explorer and also try to open it in Firefox at the same time.
    2 flash Cookies - the block always takes place if I disable flash cookies.
    3 IP Based Block - you are not blocked if you open the site on two separate computers with the same outgoing IP address. From my analysis, their server does not help in the block at all.

    It seems as if their .swf creates a sort of object throughout the global system which can be detected in other instances of the application on the same computer. How did they implement this?

    Thank you!

    use localconnection.  everyone has a localconnection to send and a receiving localconnection.  the lc reception closes the current application.

  • I use Thunderbird on multiple computers to the same gmail account but I have a laptop with little memory, so I need this laptop only to download a few files

    I use Thunderbird on multiple computers to the same gmail account. I have a small laptop with very little memory and it runs out of disk space when it downloads all my folders. I would only download some of my file on the laptop, but keep all the folder on my other computers because they do not have problems with disk space. When I unsubscribe records in 'manage folder subscriptions' then he cancels his subscription on all my computers, not just the laptop. When I go to 'Properties' on the folder and sets 'retention individual police' these settings are not applied at all. What can I do?

    All of the messages in each folder will appear in your message list. But this does not mean all the bodies of messages are downloaded, if you have properly configured the parameters of the disk. If what I described above stuck in your settings then Message body should be downloaded only 'on demand' when you click on each message.

    To confirm this install the addon glodaquilla, which has a column "on the disk" that indicates if a message is on the disk. If you want, after you have installed the addon set Thunderbird to work offline, so it does not download message body when you click in the list of messages.

Maybe you are looking for

  • Sticker with the product key Windows under the laptop is unreadable

    Hello Toshiba Help Center Please help me solve this problem Three years ago, I bought a laptop Toshiba with Windows Vista preinstalled. I also received a DVD with her recovery. I now want to reinstall Windows and completely format the hard drive - ho

  • Netflix streaming without wifi or hotspot?

    I just got a new Apple TV 64 G as a gift.  I want to use my new Apple TV and my iPhone 5s then in my RV to stream Netflix (without any WIFI).   However, I am one of those people who is still grandfathered in data unlimited by ATT and so using my phon

  • Error code c00d11ba. No sound in Windows Media Player on Windows XP.

    Original title: error code c00d11ba. No sound with windows media player.  Although when I turn the speaker on and outside button, I hear sound. my computer is checked for viruses daily.  I have all the updates.  I have windows xp 5.1 service pack3.1.

  • Invocation of world BB in question 10.2

    Hey all,. I don't know that there is a simple answer.  I've been using this code as a "visit developer page" to invoke the World of BB app to open my page of the seller: Invocation { id: devProfile query { invokeTargetId: "sys.appworld" mimeType: "te

  • BB10 webworks app broken after update OS

    My 10 Blackberry webworks app no longer works after the OS upgrade to the Version of the OS 10.1.0.4633 (4181 software version). I use BBUI. JS/CSS with my request. However, it still works in the Simulator with build 10.1.0.1483. At the opening of th