Accessing an APEX page with a URL ...

Greetings:
Our users are going to receive emails with an embedded link in the body. When they click on the link, it should open up a public APEX page. I have created the links the way I think they should be. Here is an example:
http://domainname/pls/apex/f?p=200:NMCI_NIPR_ACCT:::NO:F200_CICO_ID,F200_LINK_KEY:5,V618GH823RMAW5FO9SECG3ANHSYJRW
The page has an alias of NMCI_NIPR_ACCT. My parameters reference application items, and they are defined properly. However, when I copy this url into the browser, I get the following message:
Unexpected error, unable to find item name at application or page level.
Error ERR-1002 Unable to find item ID for item "V618GH823RMAW5FO9SECG3ANHSYJRW" in application "200".
Can someone tell me what is wrong with my URL syntax?
Thanks,
Stan

Hi Stan,
I think you may have your parameters in the wrong spots?
The APEX URL takes 9 Parameters.
The page items must be in the 7th position (comma separated), and the values in the 8th position.
You are missing one ':', so therefore you are trying to feed the item names into the 6th position, and the values into the 7th position, where the Page Item names should be.
This is the reason for the "Unable to find item ID" error.
Try this:
http://domainname/pls/apex/f?p=200:NMCI_NIPR_ACCT::::NO:F200_CICO_ID,F200_LINK_KEY:5,V618GH823RMAW5FO9SECG3ANHSYJRWAlternatively I found a good resource which may help:
http://www.oracleapplicationexpress.com/tutorials/55
Amanda.

Similar Messages

  • Accessing an APEX page, from an external application, passing a parameter

    Hi,
    We are tring to allow users access to a suite of reports we have developed within an APEX application, from an external source. Ideally we want to embed a URL that when activated, would access the APEX page, but would populate the APP_USER so the full functionality of the report can be fully utilised (region access etc). I have tried serveral options, such as:-
    f?p=193:4.::NO:193::APP_USER:MR036668
    i.e App no 193, page 4 and trying to populate APP_USER with "MR036668" but get the folowing error:-
    Error ERR-1002 Unable to find item ID for item "APP_USER" in application "193".
    Can anyone help?
    Thanks
    Mark

    Hi ,
    Please try this
    Please open your application in APEX then go to shared component then create application item which is named as global item referenced by all the pages
    F193_USERNAME
    f?p=193:4:1903218616592015::::F193_USERNAME:Markieb1888
    otherwise
    you can pass LIKE THIS
    f?p=181:1:1914838104983187::NO::P111_USERNAME,P111_PASSWORD:Matt,Baker
    please let me give some more details to help you.
    thanks
    Mark
    Edited by: Websoft on Sep 9, 2009 6:17 AM

  • Term-Driven Page with Friendly URL doesn't work with a page in another Site Collection

    Hi all,
    It appears that the Term-Driven Page with Friendly URL does not work when it is referencing a page in another Site Collection. When I set my Managed Navigation to use a term that points to another Site Collection page, the link shows in my navigation, but
    gives the error:
    "Sorry, something went wrong"
    This does not happen if I link to a page in the same site.
    Kelly
    Personal Blog: http://thebitsthatbyte.com

    i got similiar (i am not sure whether the same) issue recently:
    I have a site collection (address http://spserver/) which use managed navigation, and term-driven page with friendly url. The address of the term-driven page is set as /pages/teamsitehome.aspx . A friendly url takes the form such as http://spserver/menulevel1/submenu1
    I create a new site collection http://spserver/sites/newsitecollection and i want it to have the same navigation menu as the other site collection. Since i cannot use the same termset for the two site collection, i have to create a new term set
    for the new site collection, "pin term with chidrem" or "reuse term" to the old term set. The friendly url in newly created site collection and term set takes the form such as http://spserver/sites/newsitecollection/menulevel1/submenu1, and still
    points to /pages/teamsitehome.aspx. Notice that the term-driven page here in the new site collection still points to the old site collection.
    Actually, it works! I mean, when i click the navigation menu, friendly url http://spserver/sites/newsitecollection/menulevel1/submenu1 appears in the browser address. And SharePoint knows to load /pages/teamsitehome.aspx for this url. If this is a simple
    blank page, it just open fine here.
    However, my custom page teamsitehome.aspx calls TaxonomyNavigationContext.Current.NavigationTerm in its page load event, it should returns a valid NavigationTerm for the friendly url. But it returns null here. I traced the code to find that it calles
    internal static NavigationTerm GetNavigationTermFromTargetUrlGuids(SPWeb contextWeb, Guid termStoreId, Guid termSetId, Guid termId, bool includeInheritedSettings, bool enableExclusions)
    The passed in contextWeb points to http://spserver/ , since the term-driven page is in this web. But the termSetId points to the new termset. TermId won't be problem, since its the same in both new and old term set for pinned term. The combination of contextWeb
    and termSetId just make the output NavigationTerm null. I think its simply because the termset is not associated with this spweb.
    My workaround is create a copy of /pages/teamsitehome.aspx in new site collection. The term-driven page address is set to ~sitecollection/pages/teamsitehome.aspx in term management. This time, all works. Just because the contextWeb parameter i mentioned
    above now points to the root web at new site collection, where the term driven page resides.

  • Can only access certain man pages with sudo

    I can only access certain man pages with sudo. They aren't accessible as either root or normal user. I can't be a 100% sure but it would appear that the man pages I have problems with are those located in /usr/share/man. I can't see any differences in file or directory permissions with those located in /usr/man. Anyone else having this problem. Or have I commited another noobish mistake.
    man pacman is an example.
    Any pointers would be greatly appreciated.

    the filesystem and bash packages need to be updated after the pacman 3.1 release
    if you want immediate results add
    UNSET MANPATH to your .bashrc
    Last edited by dolby (2008-01-24 20:45:17)

  • TS3274 I can't access some web pages with safari like, forever 21, express. Even though I used to access them previously. Why?

    I can't access some web pages with safari like forever 21, express .com. Even though I used to access them previously

    Ashlee...
    Since the apps you mentioned require an internet connection try running the connectivity tests >  iTunes for Windows: Network Connectivity Tests

  • Pass parameter to apex page via the URL

    Hi, I need to pass a parameter into a page that will be used in a query inside a report region,
    e.g report region query is
    select link_id, page_id, menu_parent_id, link_text, link_url
    from portal_pages
    where page_id = :page_id
    So the page will display different links depending on what value is passed to the page in the variable.
    I know with normal URL syntax it would be something like
    http://www.domain.com/page.html&page_id=1 (where page_id is a hidden variable in apex)
    but how do I do this with an apex page like :-
    http://host:port/pls/apex/f?p=123:9 <what goes here ? and what goes in the page for it to work>
    Any help appreciated - noob to Apex
    Thanks
    Phil.

    If your item to be used in the url is P1_Page_Id, the
    url should be something like:<br>
    http://host:port/pls/apex/f?p=123:9:page_id:&P1_Page_I
    d.
    Thanks for comments, understand the syntax of the apex URLs now, got the item sorted in the page now, all working.

  • Access to a website with a URL ending on .exe does not work

    I need to access a website with a URL ending on .exe - Internet Explorer does not have any issues but with Firefox I only get the "file download" dialog box. Is there a setting where I can prevent this behaviour?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • JSF navigation rules sent me to different page, with same URL

    Hello everybody,
    Have a newbie question on JSF, if anyone can help me. I am using JSF for a web application, and i have a small problem.
    If i define a navigation rule, from one page to another, and i am having a button that should send me to another page,
    the browser URL remains the same, although the page content IS correctly changed.
    Thanks,
    Andrei

    You're welcome.
    Though I should have added that the advantage of the redirect after a POST request is that refreshing the request or navigating back and forward by browser history doesn't cause a re-submit of the POST request anymore. This way you avoid duplication of submitted data. This is called POST-redirect-GET pattern. Refreshing the request after a redirect (which is always a GET request) would only cause the redirect being refreshed, not the initiating POST request.
    The disadvantage of a forward is less or more obvious: the URL remains the same and it is not really good for the user experience. If one copypasted the URL in a new window (a new GET request), one wouldn't see the forwarded page, but the originating page. That's why I would recommend to avoid navigation cases and just use the same page to postback the POST request to. For normal page-to-page navigation within a website, I would recommend just using outputlinks and not commandlinks with navigation cases. It's all better for the user experience.

  • Can't access all internet pages with new wifi

    I just moved and my apartment complex has free Wifi. I can access most web pages but can't open for example fox.com, abc.com. A message says I am not connected to internet. I have to login to the wifi service and I am recognized. I don't know if it is my computer or wifi. Thanks

    Im willing to bet its the wifi. Reason being is I have had a similar experience with my old wifi router. I would get a dropped connection and i thought it was my macbook and PC. Turned out it was my router and once i upgraded to a Airport Extreme, everything has been fine and i have not had a single dropped connection. If its in an apartment complex, Im willing to guess they have a normal router from wherever its transmitting from and the router cannot handle the load. Perhaps someone is also trying to access the router not knowing passwords and this causes the router to lag and kick people off. Try bringing your computer to a friends house with wifi and try loading the pages there.
    Hope this was a little useful.

  • How do you save image to a separate page with a URL?

    Hi,
    I'm not sure how to phrase this, but sometimes you are on a forum or and somehow wants to show you their desktop picture. You click on the link they provide and it is a complete white page with just their picture and a URL up top.
    How is this done? I use Firefox and I'm guessing you right click open image in new window. I tried this with my Photobucket account but I didn't get the white page with just my photo. So I'm thinking there is something else you do instead.
    Thanks,
    S.

    Hi again S!
    If you use photobucket, make sure it is able to "hotlink", which is exactly what you're asking about. I am not sure whether photobucket allows hotlinks but it probably does.
    The easiest way to find the URL/address of an image you want, would be to open to an image at your photobucket (or any site) site > right click (while mouse cursor is over image) > choose properties... from this box you should see something that says "address/URL" and that's the exact location/URL/link of that particular image. You can test this by copying the address/URL open a blank browser window and paste address in address bar, image should be the only thing displayed.
    Good luck, Rick
    iMac G5 iSight 20" - 30G iPOD & Hot Pink Nano 4G - WD 500G FW -   Mac OS X (10.4.8)   - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620 Kodak P880

  • Orcladmin can no longer access Collaboration Suite pages with SSO enabled

    I can no longer use the orcladmin account to access Collaboration Suite pages when SSO is enabled. I have the plug-ins listed in OID and have set the one property to exclude orcladmin (and other admin level accounts) from being authenticated using the external authentication connector with ADS. And yet despite that orcladmin still can't authenticate. I can see in the OC4J log that the authentication in IE is falling back to NTLM authentication but is still failing. What the heck am I missing?

    Swipe between pages stopped working for  me as well completely out of the blue. I haven't installed anything / updated anything lately, and it just stopped working about an hour ago.
    My issue isn't with Mission Control, it's with my browsers:
    In Safari, if I try to swipe to go back a page, it freezes the entire page. I can't scroll anywhere.
    In Chrome, swiping to go back pages just doesn't work at all. But no freezing occurs

  • Linking to a page with a URL hyperlink

    Is it possible to create a hyperlink that links to another page in the same document using the "Link To: URL" option in the New Hyperlink window?
    Normally I'd just use the "Link to: Page" option but I want to upload a bunch of documents to Issuu and the only interactive object that seems to survive the conversion process is a URL hyperlink. I've also tried creating a button with a "Go To Destination" action attached but it isn't recognised by Issuu either.
    I can add buttons in Issuu after I've uploaded the documents but I was hoping there would be a way to do it in InDesign that works for both normal PDFs and uploaded Issuu files.
    I hope this makes sense. Let me know if it needs clarification.
    InDesign version: CS6 - 8.0.1
    OS: Win 7 SP1

    Issuu is an online digital publishing platform. Here's an example (not mine!). You upload PDF files to the Issuu website and they are converted to a proprietary format for viewing.
    The problem I'm having is that these converted files support URL hyperlinks but not any other kind of interactivity. I was hoping I would be able to use URL hyperlinks to other pages within the document if this was even possible.
    I'm trying to get some assistance from the Issuu help staff but I'm not really getting anywhere. Hence the post!

  • Accessing an Apex app via a url from an email

    We have an issue tracking application which sends emails out to the applicable users throughout the request life cycle as action is taken. We would like to include in each email a link to the application with the applicable request, and upon login the user would be taken directly to the applicable request instead of page 1 of the application.
    My question is how can set I this up so that the user goes from the email, authenticates via login, and then is taken directly to the request. We also have session state enabled, would we need to disable this?

    Ed - Just try it, it should work. Can you show an example of such a URL here?
    We also have session state enabled, would we need to disable this?
    Session State Protection? No, but the checksum type used in generating the link would have to be a "public or private bookmark" type. The checksum type can be specified in the call to apex_util.prepare_url.
    My advice is to get the generic deep-linking behavior working first, then work on getting the SSP checksummed URL pieces working.
    Scott

  • Different portal logon pages with same url.

    Hi all,
    Im doing portal logon page customization . My requirement is when a user give the portal link in his browser he should get the portal logon page according to the country language..for example if he opens the portal from india he should get English text and if he opens the portal from japan he should get the japanese text in the portal logon page.
    thanks
    Rajeev B

    Rajeev,
    Its possible to have the different logon pages for the same portal.
    Its also possible for the same ulr but different parameters.
    You can do customization on portal logon page.
    For example:
    Consider that the url http://myep:50000/irj/portal is currently using to access the portal.
    You can pass addintional parameter on this url and fetch them into logon page, display the pages based on the values that you have fetched.
    for example http://myep:50000/irj/portal/myparam
    Have a lot at this link,
    Displaying Different Login Pages Based On The Sales Organization
    Ram

  • Firefox loads only blank new tabs for all web pages, with blank url bar.

    After a minor automatic update (16.0.1 --> 16.0.2), firefox is now completely unusable.
    Any time I attempt to load a page, it only shows a blank tab labeled 'new tab'.
    The url bar for this page will be blank if I try to open it from a link or bookmakrk.
    The url bar for this page will be exactly what I typed if I manually typed a url.
    Right-clicking the blank pages does nothing: no context menu.
    The 'troubleshooting information' page DID load properly though; it's the only page I've been able to display at all so far.
    Restarting firefox did not fix the issue.
    Restarting firefox in safe mode with addons disabled did NOT fix the issue -- so please don't waste time trying to tell me it's the addons.
    Changing network proxy settings did not fix the issue.
    There are no connection problems: IE can load pages just fine from the same computer.
    I love mah firefox... but now it's dead... please help!

    Update: Solved:
    Firefox works properly after restarting entire computer.
    It's poor form to require computer restarts for minor browser updates... and even poorer to not say so when you do.
    (Some of us are running servers in the background that should not be interrupted.)

Maybe you are looking for