Masking Page number in Application web link

Hi,
Is there any way to mask page numbe(s) in Apex Application web link.
For example, http://<server name>/pls/apex/f?p=111 is the web address to access my Apex application and it defaults to home page, if I run this application. After that, if I navigate to any other page(example page number 200) within the application, Page number will appends to the above web-link as below
http://<server name>/pls/apex/f?p=111:*200*:3080776628071182::NO
Is there any way, can we mask page number/application number in application web-link.
Appreciate your help.
Thanks,Manik

Hi Manik,
The only way that I know to mask a page is to use a page alias. For example page 200 is page aliased as HOME.
So where ever you would call pagee 200 from a application liunk you would use HOME instead of 200. I am not sure how to mask the application number. I would have to test that out.
Cheers Mike

Similar Messages

  • Getting page number while JSP printing- link rel="alternate" media="print"

    <link rel="alternate" media="print" href="reportprint.jsp"
    This i am using for printing report.jsp. report.jsp contains more than 2000 records. I need to have the page number to put the column header in each page.
    What is the possible way to get the page number in reportprint.jsp??

    Hi Raghuveer,
    I am getting the same error...
    were you able to resolve it??
    Part of log file says...
    [Jun 28, 2010 12:47:28 PM BST]:1277725648271:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:stevux1213:10.145.81.43:-1:-1:STATEMENT:[fnd.wf.mailer.URLMIMETagListener]:oracle.apps.fnd.wf.mailer.URLMIMETagListener.tagFound(HTMLTagEvent) TAG {<META name="fwk-error" content="Error occured while processing the request">}
    [Jun 28, 2010 12:47:28 PM BST]:1277725648272:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:stevux1213:10.145.81.43:-1:-1:STATEMENT:[fnd.wf.mailer.URLMIMETagListener]:fwk-error detected
    All,
    can you please help?
    Thanks,
    S

  • Pages '13 not all web links not working in PDF

    Hi
    I am having a issue with a document created in Pages 2013.
    The document I have created is four pages long and on 1st page I have a hyperlink (text) to a You Tube page.
    On page 3 of the document I have another piece of text with a hyperlink to the same You Tube page which works fine inside Pages but when I export to a PDF the link does not work/translate as a URL link. Just a piece of undelined text.
    I have tried deleting the text and retyping it then turning into a hyperlink but does not work.
    Anyone else come across this issue.
    Thanks in advance.

    Thanks for that.
    Problem is when I export to Pages 09 the formating is thrown all over the place. So it takes just as long to reformat the document as it orginally took to create.
    Was just hoping someone may have come a work around.
    Thanks again.

  • Generalizing the return page number when linking to a page in another app

    Hello.
    I know how to link to a page in another app within the same workspace. However, my problem arises when the user tries to go back to the page in the first app.
    Is there a way to "generalize" the "return path". I do not want to hard-code the return page number within a "back link" element on the target page. I was wondering if there is some sort of substitution string I can use in the return http address that automatically "knows" what the returning page number is. Hope I'm making sense here.
    Thanks for any help/advice.

    Funky:
    I have tried some work but no success
    I don't know what you are asking of me. I have given detailed step-by-step instructions on how to implement what I suggested earlier on in this thread. Look at my postings on 9/13/2006. What part are you having trouble with?
    Could you be more specific?
    I'm afraid I am going to have to ask you the same question.
    if page is not submited (called through Tab)
    Apex standard tabs do submit the page and fire after-submit computations defined on the calling page before branching to the "current" page for the tab you click on.

  • Links Palette Showing for Page Number

    I can't find anything about this on these forums or in a Google search, so I'm not sure what's happening.
    We publish a dozen 300-page catalogs a year with several thousand images. Each catalog is comprised of sections. Once in a while (probably more often than not), instead of the page number on which it appears, one or more of the linked images shows < > in the page number column of the links palette. If we click on it (to show the image), nothing happens.
    Has anyone encountered this before? We're using CS4 for Windows.
    Thanks in advance,
    Lloyd

    Steve,
    I will as soon as we see one again, which shouldn't be long. We exported the section as XML from the "structure" pane then imported it as XML and those bad links were gone, which is kind of a band-aid for now. I'd like to know what's causing it, though.
    I'll attach a screen capture as soon as I can. Thanks.
    Lloyd

  • Dynamic page number references?

    Is there a way to have page number references dynamic, so that they automatically update if the pagination of a publication changes?
    I've read about generating a dynamic table of contents, so I will be doing that certainly.
    But what about page references that fall outside the TOC? For example, let's say there's a parenthetical reference in the text of a publication that says something like "see page 45 for details on XYZ." Can the page number here be somehow linked to its referent? Is there some way to tag an element (a heading, for example, or a text selection, or a frame containing a graphic) and then have a page number reference linked to that tag?
    Sort of like how anchors work on the web.
    Thanks.

    Great, thanks.
    p.s. I just did a search of the forum for "cross references" and the only result I got was this thread! Odd.
    I notice from the InDesign help documentation that cross references seem to be for indexing. Not sure if that applies to my situation--for example, if you mention a particular sidebar later on in the text and want to refer the reader back to that sidebar...how would you reference the sidebar dynamically so when it changes location, the page number reference changes accordingly?

  • Loading web pages from an application

    Hi All
    I've tried hunting on this web site for info about how to show an html page from an application. Unfortunatley I couldnt find anything.
    So how do I fire up a web browser, and load in a specified web page?
    I can get a URL pointing to a file on my system ie File:c:/MyDoc/Help.htm, but am unsure what I need to do next.
    Any advice welcome.
    Cheers

    From an applet? - I assume this is a java web app ...
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;   
    public class URLCheckBox extends java.applet.Applet implements ItemListener {
       Choice chqbx = new Choice();
       Label lblOutput, lblfalse;
       URL url; 
       public void init() {
           this.setLayout(new FlowLayout());
                   chqbx.addItem("URL link to ..."); // add URL names here eg: www.yahoo.com/
           chqbx.addItemListener(this);
           setFont(new Font("Arial", 0, 18));
           setForeground(new java.awt.Color(255,255,55));
           setBackground(new java.awt.Color(95,100,215));
           lblOutput = new Label("Link to other web pages: ");
           add   (lblOutput);
           add(chqbx_MMedia);
           chqbx_MMedia.setForeground(new java.awt.Color(210,210,255));
           chqbx_MMedia.setBackground(new java.awt.Color(50,50,95)); 
       public void paint(Graphics g) { // this just makes it look pretty!
          g.drawRect(2,2,216,196);
          g.setColor(Color.white);
          g.drawRect(4,4,212,192);
          g.setColor(Color.blue);
          g.drawRect(6,6,208,188);
          g.setColor(Color.white);
          g.drawRect(8,8,204,184);
          g.setColor(Color.gray);
          g.drawRect(10,10,200,180);
       public void itemStateChanged(ItemEvent e) {
           String URLstr = "http://";
           String selection;
           selection = (String)chqbx.getSelectedItem();
           String urlText =  URLstr + selection";
              try {
                 url = new URL(urlText);        
                 getAppletContext().showDocument(url);
              catch(MalformedURLException ignore){ }
    }

  • Page number of linked textframe in indesign document

    Hi,
      My indesign document has linked pages 1 - 10 (ie., linked textframes).  I want to take page number of selected text from 5th page., which textframe is linked textframe of 1st page.  When i use the following code for findpage, its returning the page no 1 instead of 5. 
    Kindly reply for me...
    var page = findPage(app.selection[0]);    // selection is a word/para
    function findPage(theObj)
        var thePage = theObj;
        if (thePage.hasOwnProperty("baseline"))
            thePage = thePage.parentTextFrames[0];
        while (thePage.constructor.name != "Page")
            var whatIsIt = thePage.constructor.name;
            switch (whatIsIt)
                case "Story" :
                    thePage = thePage.textFrames[-1].parent;
                    break;
                case  "Character" :
                    thePage = thePage.parentTextFrames[0];
                    break;
                case "Cell" :
                    if ( thePage.insertionPoints[0].parentTextFrames[0] == null)
                        // contents of cell is overset
                        thePage = tryHarderForCell(thePage);
                        if (thePage == null) return null;
                        break;
                    else
                        thePage = thePage.insertionPoints[0].parentTextFrames[0];
                        break;
                case "Application" :
                return null;
            thePage = thePage.parent;
        return thePage ;

    Hi,
      Thank u... Its working...

  • Web pages in Oracle Application 12.0.6

    Hello every one.. i am having a one problem.. i want to create the SSHR LOGGING report.. in which i want to show the list of employees how have visited the application... this is the following query :
    SELECT
    p.employee_number employee_number,
    p.first_name || ' '|| p.last_name Name,
    u.user_name Login_name,
    u.email_address,
    a.start_time login_dates,
    u.last_logon_date,
    tl.responsibility_name
    FROM
    FND_LOGINS A ,
    fnd_user u,
    per_all_people_f p,
    fnd_login_responsibilities s,
    fnd_responsibility t,
    fnd_responsibility_tl tl
    WHERE
    u.user_id = a.user_id
    AND A.START_TIME >'20-NOV-09'
    and s.responsibility_id = t.responsibility_id
    and t.responsibility_id = tl.responsibility_id
    and s.login_id = a.login_id
    and u.person_party_id = p.party_id
    and tl.responsibility_name in ('JBL Employee Self-Service','JBL Employee Self-Service (CE)','JBL Employee Self-Service (JAS)','JBL Manager Self-Service','JBL Manager Self-Service (Admin)','JBL Manager Self-Service (JAS)','Notification')
    and sysdate between p.effective_start_date and p.effective_end_date
    and nvl(p.employee_number,'1') = nvl(nvl(:p_emp_no,p.employee_number),'1')
    and to_CHAR(a.start_time,'RRRR/MM/DD HH:MM:SS') between :P_DATE_FORM AND :P_DATE_TO
    order by
    2 ,a.start_time desc
    Now problem with this is that.. its not showing the rercord of the person.. how have visited the web pages in Oracle Application R12.. like we have Leave Management web page in this 'JBL Employee Self-Service' responsibility.. please help me that how and by using what table in can view webpages visiting data as well

    Hi,
    Please see if the queries in these documents helpl.
    Note: 295206.1 - How to Count Total Number of Users Connected to ORACLE Application
    Note: 471673.1 - R12.0.6+ : Oracle Application Object Library Active Users Data Collection Test
    Thanks,
    Hussein

  • Is there a phone number where I can call someone? The phone number in your web page is missing a num

    Is there a phone number where I can call someone? The phone number in your web page is missing a number. it is listed as 1-800-426-570? One number missing. I just paid with my credit card online for photoshop and it is not allowing me to log in in order to download.

    If I click on the adobe.ly link Rajshree gave you, above, there is a phone number at the bottom of the Customer Support contact webpage.
    This is the number I see when logged in with an AdobeID associated with the US is:
    800-833-6687
    It is possible that you are somewhere else in the world and the webpage is smart enough to give a different phone number, so the number I see may or may not be applicable to where you are.
    It also may be advisable to use the Chat instead of the phone, because it may be easier to understand what someone is typing than trying to interpret their English through whatever accent they are speaking with.

  • Web link work around for Pages

    As of March 2014 Apple hasn't fixed the Export to PDF preserving web links bug!  Pages 5.1 build 1769.  This means that any PDFs you create from Pages won't have clickable web links past the first page.
    Here are the work arounds that I have found so far.
    In Pages keep your document to 1 page.  Web links on the first page are fine. 
    In Pages 5 choose File > Export > Pages '09 and then on your Mac if you have an older version of Pages '09 in your applications folder, open it and open your exported file.  Now when you export the PDF the web links will be there. If you don't have the older Pages '09 see the next solution.
    Use a free web tool like PDF Escape to recreate the web links.  PC like interface and you have to be careful to not leave the web page or you'll reset everything, but I found it was really helpful in copy/pasting the web links from Pages to PDF Escape.  Didn't seem to work with HTTPS links, but others were fine. http://www.pdfescape.com
    If anyone sees an inexpensive or free solution on the Mac App Store please share.  Adobe Acrobat Pro CC or CS will also work, but it is too expensive for most folks.

    i don't know about handling the multi tier issue but you can easily put an instance into the ServletContext that keeps track of the associations between users and sessions and can react accordingly.
    robert

  • Calendar Page displays No Response from Application Web Server

    Hi there,
    I have OCS 9.0.4 on a linux ES 2.1 box (single box install). The installation went fine without any errors. When I click the Oracle Calendar Administrator link on the OCS welcome page and sign on using SSO, I get "No Response from Application Web Server.
    There was no response from the application web server for the page you requested.
    Please notify the site's webmaster and try your request again later. " Any ideas what is wrong ? The calendar server started without any errors (and I restarted HTTP on the midtier). Also, when I access the calendar page thru "http://midtier:7778/ocas-bin/ocas.fcgi?sub=web", only orclguest can login successfully. Every other user gets "Calendar Server connection error. Contact your Administrator" .
    I appreciate every help.

    Hi!
    Try the following:
    a) go to the midtier:port/um/admin/UMAdminLogin.uix and log in as UMADMIN with the password you specified during the installation
    b) create a mail user (one that already has an account in the OIDDAS)
    c) give that mail user the domain admin right
    d) logout
    e) login to the collab suite main page (midtier:port/pls/portal) with this user
    f) you should see the collaboration suite portlets
    g) go to messages
    h) click on the administration tab
    i) go to calendar admin
    j) create a calendar account for this user
    Hope this helps
    cu
    Andreas

  • When I click on a web link and hold down ctrl the page will not open into a new tab, it is just opening in a new window. How do I correct this?

    When I use to hold down the ctrl key and left click on a web link, the page use to open into a new tab. For some reason this is not working anymore. Instead when I hold down the ctrl key and left click on a web link, the link will open into a new window. How do I fix this?

    I figured out how to correct it. Not sure what exactly was happening. But I started into private browsing and then turned it off. It's been working correctly ever since I did private browsing.

  • How to link a value in a cell to a page number?

    I have a series of diagrams that I'd like to create a table for showing the page it's on, and a description of it. during creation, i an simply store the value of the page number in an array, and use it when creating the table, however, if the diagram is moved onto another page, then the cell shows the wrong page number, and the table loses meaning. Is there a way I can link the page number shown in the table cell with that of the page number it's currently on?

    Excellent thank you. While I was creating this sample code, I kept seeing an undefined destination text with either PB or OV shown in the cross references. This was because the textframe inside the frame that contains the image wasn't set to the same geometricBoundaries as the container frame!
    #target indesign
    var doc = app.documents.add();
    // add new page with image
    var page = doc.pages.add();
    var imageGraphic = page.place(File('image.jpg'));
    var imageFrame = imageGraphic[0].parent;
    imageFrame.geometricBounds = [0,0,100,100];
    imageFrame.fit(FitOptions.fillProportionally);
    // add text frame to imageframe for hyperlink dest
    var tf = imageFrame.textFrames.add();
    tf.contents = " ";    // insert blank text
    tf.geometricBounds = [0,0,100,100];     // THIS IS VITAL otherwise the destination becomes invalid for some reason
    var destination = tf.paragraphs.item(0);    // find text / char destination
    var destination = doc.hyperlinkTextDestinations.add(destination, {name:"foo"});    // hyperlinktextdestination reference 
    var creditPage = doc.pages.add();
    var creditPageTF = creditPage.textFrames.add();
    creditPageTF.geometricBounds = [0,300, 100, 400];
    creditPageTF.contents = "...";
    var xRefForm = doc.crossReferenceFormats.item("Page Number");   // Default CS5 xref format that shows "Page 45" etc
    var sourceText = creditPageTF.paragraphs.item(0);
    var source = doc.crossReferenceSources.add(sourceText, xRefForm);
    var destination = doc.hyperlinkTextDestinations.item("foo");     // find text anchor by name from above
    var myLink = doc.hyperlinks.add(source, destination);
    myLink.visible = false;
    very confusingly, there seems to be two types of cross references for cs5, cross references for text, which are actually hyperlinks, and crossreferences for tocs i believe (which I know nothing about atm!)

  • 1. How can we search the Forum to see if a question has already been asked? 2. Can I send a Web Page and not just its Link?

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

Maybe you are looking for

  • Creating Custom Validators for ADF in JDev 10.1.3.1

    Hi all, I'm trying to create a validator to solve a seemingly common problem - that is given 2 dates (startDate & endDate), validate that endDate cannot be earlier than startDate. In my case, both startDate and endDate are in the same form. From the

  • Horizontally centering flash .swf" and disallowing horizontal scroll??

    Is it possible to center a flash .swf file on a website, and then disable horizontal scrolling? I made my website in Flash Catalyst, and I made the width 1700px and the height 1200px. I made the width large because I wanted it to look good in the lar

  • Powerbook G4 HD Display Quality (prod wks 40-45ish)

    I didn't see the thread here yet on what many describe as the "Horizontal Lines" problem on the new 15" HD Powerbook G4s. There's a macrumors thread here: http://forums.macrumors.com/showthread.php?t=158751 As soon as I booted my machine I noticed th

  • Assignment to feature P0001 did not take place

    Hi Friends please help me the problem Generate Absence Quotas RPTQTA00 E00001012 Personnel number rejected as infotype P0001 is missing In PA30 When I have enter 0001 Organization Assignment Displayed Below menu bar displayed  Assignment to feature P

  • Trouble installing Captivate trial on Mac OS

    I tried installing the Captivate Trial, it seemed to work fine, but once all was installed it didn't work.  The icon of Adobe Captivate would bounce several times and then disappear or become still.  I checked to see if it was running in the backgrou