Is it possible to get the URL from which user came to Apex Application?

Hi,
I have 1 web site which is created by Apex. And I have to create similar sites with slight differences. For example, even though the contents are almost same, each telephone # have to be modified.
So, if possible, I want to use only 1 web site and depending on the URL from which user came, change some information on the page. Is it possible?
And if it is possible, what if the user set Apex URL as favorite and visit it after some days?

Thank you Scott,
This is the one.
But I have another issue.
If a user comes to our page from their link directly, I can identify where he come from. But if he added our site to Bookmark and comes to our site through the link, is it possible to identify his original route?
If it is impossible, I will create other Apex Application and put each URL to the link in order to catch where the user is from.

Similar Messages

  • Is it possible to get the information from the complete forms send to different email account

    When i have a paid account is it than possible to get the information from the different forms send to seperate emailaddresses.
    Who dont have a account from formscentral but just need the information directly in there own inboxes?
    Because we're looking for a good and simple way to make qoustion & complain forms. But these need to go to different people in the company.

    You can have notifications sent to multiple email addresses, but each will need to have a FormsCentral account.  They can be free accounts.  What you do is create your form and set up the email addresses that you want the information to go to to be Co-authors or Contributors.  The co-author/contributor accounts will then need to log into FormsCentral, go to the Options tab and check the email notifications checkbox. 
    I hope this helps.
    -Jeff

  • Is it possible to get the image from the i pad when mirroring via Apple TV to fill the screen instead of appearing as a screen within a screen?

    When mirroring, is it possible to get the image from the ipad to fill the screen on the TV instead of appearing as a screen within a screen?

    Welcome to the Apple Community.
    No, the iPad has an aspect ratio of 4:3, a TV has an aspect ratio of 16:9, to fit one into the other is impossible without distorting the picture. If your TV has a zoom feature, you may be able to use this to fill the screen a little more to your liking, but this will result in cropping top and bottom.

  • What is the URL from which I can download Firefox 10 for Mac?

    I cannot use Firefox 11 for Mac because it does not yet support a security add-on that I require. So I want to downgrade to Firefox 10 for Mac in both the 32-bit and 64-bit versions.
    However, I have been unable to find the URL from which I can download these two versions of Firefox 10 for Mac. Yes, I tried putting various keywords into the search box: "download" "Firefox" "previous versions" "downgrade" etc. Still I couldn't locate the URL.
    Would you be so kind as to send me the URL?

    Just replying to help keep track of the thread. I have been looking also. I can find where to load version 3.6 - but not 10.0.2
    We are having printing problems with 11 that we never had with 10 :-(

  • What report is run in SAP to get the DATE on which Users are locked ?

    Hello,
    What report is run in SAP to get the DATE on which Users are locked ?
    I have tried with RSUSR200 ,-- last logon ,last password change , but i did not get a option to find the date on which are Users are locked .
    Can anyone suggest what report should be executed to get the date on which Users are locked and by whom ?
    As a alternate , i  am usig SUIM to get extract this data but i am looking for a report .
    thanks & regards
    Ganesh

    Hi Ganesh,
    You can try the below link where many of the options are described:
    How i can check at what date perticular user was locked and who lock it?
    Regards,
    Nilanjan

  • Help needed in accessing the url from which a swf file has been loaded

    Hi All,
    Can anyone help me out in finding the url of the swf file
    from which it has been loaded? The purpose of the url is, I am
    loading some flv files using relative path. I just want to achieve
    the same by appending the relative path to the parent swf url from
    where the parent was loaded.
    I am a newbie to AS3, So please don t mind if this is a silly
    question.
    Can anyone help me on this.
    Thanks in advance,
    Prabakaran Srinivasan.

    Hi,
    Thanks for the reply. I think the option you gave is only
    applicable when the AS3 class comes in the DisplayObject hierarchy.
    I want this information in an AS3 class which does not extend any
    of the Sprite or its super class hierarchy. Can you let me know the
    possibility of fetching the value from such a class which i
    specified???
    Thanks,
    Prabakaran Srinivasan.

  • How do I get the photos from my 3gs camera roll to my 4s?

    I really need to find out how to get the photos fromt the camera roll of my 3gs to my new 4s.Tthey are very important and its a lot of them, so email and text is not an option. Please help me figure this out. Thanks

    The best way besides email and text is to backup your iPhone 3GS to either your computer using iTunes or backup to iCloud.  Once the backup is made you will have to restore the 4S from either the backup in iTunes or restore it from the iCloud backup.

  • Get the number of concurrent users for a WD application

    Hi all,
    I need to implement a method which counts the number of concurrent users for a Web Dynpro application.
    Say I have a portal with X applications, is there API that can tell me how many users are working on specific application?
    I know that this line of code
    IWDClientUser currentUsers[] = WDClientUser.getClientUsers();
    will get me the number of users that are working on ALL Web Dynpro applications. Is there a way of getting it for specific application?
    I thought of using a text file/small DB table that set/get the number of users but I think it will cause overhead issues.
    Any ideas how to implement it?
    Thanks,
    Omri

    Hi Omri,
    Try using  WDServerState.getActualApplications() method.It returns array of actual running applications.Compare ur application name with the array elements and keep a counter for matching elements.
    String app[]=WDServerState.getActualApplications();
        for(int i=0;i<app.length;i++)
              view.getComponent().getMessageManager().reportSuccess(
               app<i>);

  • Web.xml - can't get the url from xml file..

    Hi all,
    Im a beginner @ jsp =)
    My question is as follow..I cant get base from the web.xml file.
    This is a shorten version of my web.xml..
    <web-app>
         <welcome-file-list>
    <welcome-file>Default.jsp</welcome-file>
    </welcome-file-list>
         <!-- Define the controller servlet -->
         <servlet>
              <servlet-name>ControllerServlet</servlet-name>
              <servlet-class>ControllerServlet</servlet-class>
              <!-- Define initial parameters that will be loaded into
              the ServletContext object in the controller servlet -->
         <init-param>
                   <param-name>base</param-name>
                   <param-value>http://localhost:8080/burnaby/ControllerServlet</param-value>
              </init-param>
    </servlet>
         <servlet-mapping>
    <servlet-name>ControllerServlet</servlet-name>
    <url-pattern>/ControllerServlet</url-pattern>
    </servlet-mapping>
    </web-app>
    And my jsp file:
    <%
         String base = (String) application.getAttribute("base");
         String imageUrl = (String) application.getAttribute("imageUrl");
    %>
    <table width="740" cellpading="0" height="75" cellspacing="0" border="0">
         <tr>
              <td align="left" bgcolor="#F6F6F6">
                   <font face="Verdana" size="3">Sky's E-mall!</font>
              </td>
              <td align="right" bgcolor="#F6F6F6">
                   <a href="<%=base%>?action=displayShoppingCart"><img border="0" src="<%=(imageUrl + "cart.gif" )%>"></a>
                   ���
              </td>
         </tr>
    </table>
    I have written it of a book im reading and i cant get it to work. Base and imageUrl always become null.
    thank you
    /Robert

    I'm a little new to JSPs and servlets too, but I'll give this one a shot. I think since your variables like 'base' are servlet initial parameters, they don't get initialized until you actually call the servlet ( I'm not 100% on this, though). Try calling the servlet and having it forward the response back to your original JSP and see if you get values then.

  • Is it possible to get the photo back which was deleted from iPhone directly, no backup in iTune?

    I deleted some photos from my iPhone 4 directly, and didn't sync with iTune. I really want to get it back, is it possible? Is there anybody can help me? Thanks in advance!!
    Really wish there is a section like trash can on iPhone, then we can get something back we deleted in bad emotion or by mistake!!!

    Yea, unfortunately it does happen a lot.  You can offer suggestions to Apple here:
    http://www.apple.com/feedback/iphone.html.

  • Is it Possible to get the email from the Yahoo [Standard] mail Subfolder?

    I have created filter and subfolder in my yahoo.com [non-plus].
    Is there a way for getting emails from those subfolder?
    Message Edited by berri_item on 01-19-2009 07:09 AM

    no, only inbox will sync with BB
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • Is it possible to get the Source from the Compiled Java Class File?

    Hello All,
    I wrote a java file which uses Java Swing to crea a GUI.I have also compiled the jave file.
    The problem now is that i've made many changes and compiled it many times.Now suddenly due to some problem,the contents of tha Java file have been deleted and it shows 0 bytes.
    Is there any way to recover my Java source file from the Class file?I would be thankful to anyone who can help me out on this.
    Thanks in Advance,
    Regards,
    Vijayakannan

    Yes and no, you can reverse engineer it to an extent, it wont look exactly like your original source though, it'll be full of commented out bytecode bits etc. As its your own code though you've got the best chance of deciphering it. Go to somewhere like www.tucows.com to download the software for doing it.
    ARB

  • How to get the Macbook app which sends camera images back if someone steals it

    There was a story run in a UK paper this week of someone who recovered their stolen Macbook because he had a programme on it that activated the camera when the laptop was in use, it then relayed the stills and moving pictues back to him and the theif was clearly identified!
    Anyone know how to get this??
    AJ

    http://www.orbicule.com/undercover/mac/index.html

  • How to get the URL parameter value when navigating from JSP Page to portal

    Hi All,
    I have web Dynpro application with one button, while clicking that button It will navigate to JSP page as external window. In the JSP page I have a input field and Button.
    In the JSP page input field I will enter some values and press submit button, it will navigate to Portal page by passing some URL parameter with values.
    Once user entering to portal by default WD page displayed, the same WD page I try to get the URL Parameter which I have passed from JSP page, but I am not able to get the URL parameter value.
    If same application running in without portal, I can able to get the URL parameter values. I am getting the URL parameter by interface view default inbound plug parameter.
    How do we resolve this problem?
    Regards,
    Boopathi M

    Hi
    Please try  these link might helpful for you
    1.[How to call WebDynPro application from JSP |/thread/452762 [original link is broken];
    2.[How to get the previous page url from abstract portal component? |/thread/1289256 [original link is broken];
    3.[how to launch and pass a parameter |/thread/5537 [original link is broken];
    Best Regards
    Satish Kumar

  • Why do we get the data from a view to a report.

    hi
    why do we get the data from a view to a report. is it possible to get the data from a view in all the cases?

    hi Jyotssna,
      Suppose you are planning to get the data from multiple tables then you got to specify seveal condtions and make use of joins which results in poor performance in fetching the data . In order to improve the performance we make use of views where the conditions of different tables are defined and the data is fetched accordingly.
    Regards,
    Santosh

Maybe you are looking for

  • Video viewing

    Hi guys I've eventually got to the point of publishing one of my movies onto the company intranet via a hyperlink to the html file and it worked!!! HOWEVER, it will only display the flv files on one machine at a time (everything else plays fine irres

  • Info on CCM 2.0 characteristics - Fields length, data types & Desc

    Dear All, Does anybody know how or where I can get information about CCM 2.0 standard characteristics data structure? Or maybe the table name that holds this information? I need the following info: 1. List of all Standard CCM 2.0 Characteristics 2. C

  • Regarding system requirements for an old version - PhotoShop 4.0.

    My old PS 4.0 has worked for almost 20-years on a Windows XP and NT.  Both are dead now.  So, when the PS 4.0 requirements say, "NT or later..." does that include modern Windows computers?  I plan to keep PS 4.0 since it's all I need.  I will upgrade

  • Stock Special Q valuated , problems

    hi guru´s I´ve several problems. In first place I create a WBS from PS . My material master is a valuated material.  After this, I create a PR, creat a PO with reference to PR and save. Problem: when I did the Goog Receipt the special stock Q is in m

  • How can I analyse user statuses a maintenance order had in the past?

    I want to make an analysis from maintenance orders backlog (orders over required end date). I use IW39 and analyse the user status to define the status of the order in the proces...... In this way, however, I am only able to make an analysis of the d