HTML Link to Product Revenue Detail Page

I have a simple table report developed for the Product Revenue.
Help me with either "Custom Text" using ActionLink or a HTML Link for navigating to Product Revenue Page.
I tried following link
http://"@[html]"<a target=_blank href=https://secure-ausomxafa.crmondemand.com/OnDemand/user/RevenueDetail?OMTHD=RevenueDetailNav&OMTGT=RevenueDetailForm&RevenueDetailForm.Id="@">"Click"
Thanks
Edited by: user648222 on Jan 22, 2009 7:54 PM

Try this:
'Product Detail'
the product revenue needs the Opty ID to be passed into it. If this doesn't paste properly email me at alex.neill@{see profile} and I'll email it to you.
cheers
Alex

Similar Messages

  • Is it possible to disable the 'edit layout' link on the record detail page

    Is it possible to disable the 'edit layout' link on the record detail page? Not the homepages, I know there is a switch for that, but I thought there was one for the detail pages?
    I want to disable this as I dont want users saving their own layouts, they must stick to the related sections defined in the default layout. The problem is that if they are to have access to certain related lists when an opportunity is of a certain type but NOT other types. If they have saved the layout (using the 'Edit Layout' link), and change the record type, they will see related sections that have been set to 'Not available' in the default layout (ie step 4) for that 'type'.

    Robbo, at this time it not possible to disable the Edit Layout on the record detail page.

  • Error when the link is clicked for detail page

    Hello I am creating pages using MySql and PHP with dream weaver. I created my master record set and detail page. the master record set works b but when you click the link to bring up the details page I get this error
    "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'name = 'Brandon' LIMIT 0, 10' at line 1"
    Any help with guidance on trouble shooting error would be greatly appreciated.
    David

    =====================================================Master page=============================================================
    <?php require_once('Connections/Onantional.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_Recordset1 = 10;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    mysql_select_db($database_Onantional, $Onantional);
    $query_Recordset1 = "SELECT * FROM Roster";
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $Onantional) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    $queryString_Recordset1 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_Recordset1") == false &&
            stristr($param, "totalRows_Recordset1") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_Recordset1 = "&" . htmlentities(implode("&", $newParams));
    $queryString_Recordset1 = sprintf("&totalRows_Recordset1=%d%s", $totalRows_Recordset1, $queryString_Recordset1);
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table border="1" align="center">
      <tr>
        <td>First name</td>
        <td>Last Name</td>
        <td>Conference</td>
        <td>email</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><a href="details.php?recordID=<?php echo $row_Recordset1['First name']; ?>"> <?php echo $row_Recordset1['First name']; ?>  </a> </td>
          <td><?php echo $row_Recordset1['Last Name']; ?>  </td>
          <td><?php echo $row_Recordset1['Conference']; ?>  </td>
          <td><?php echo $row_Recordset1['email']; ?>  </td>
        </tr>
        <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    <br />
    <table border="0">
      <tr>
        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, 0, $queryString_Recordset1); ?>">First</a>
              <?php } // Show if not first page ?>
        </td>
        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, max(0, $pageNum_Recordset1 - 1), $queryString_Recordset1); ?>">Previous</a>
              <?php } // Show if not first page ?>
        </td>
        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, min($totalPages_Recordset1, $pageNum_Recordset1 + 1), $queryString_Recordset1); ?>">Next</a>
              <?php } // Show if not last page ?>
        </td>
        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, $totalPages_Recordset1, $queryString_Recordset1); ?>">Last</a>
              <?php } // Show if not last page ?>
        </td>
      </tr>
    </table>
    Records <?php echo ($startRow_Recordset1 + 1) ?> to <?php echo min($startRow_Recordset1 + $maxRows_Recordset1, $totalRows_Recordset1) ?> of <?php echo $totalRows_Recordset1 ?>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    =====================================================end master ========================================================
    ========================================================details page=========================================================
    <?php require_once('Connections/Onantional.php'); ?><?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_DetailRS1 = 10;
    $pageNum_DetailRS1 = 0;
    if (isset($_GET['pageNum_DetailRS1'])) {
      $pageNum_DetailRS1 = $_GET['pageNum_DetailRS1'];
    $startRow_DetailRS1 = $pageNum_DetailRS1 * $maxRows_DetailRS1;
    $colname_DetailRS1 = "-1";
    if (isset($_GET['recordID'])) {
      $colname_DetailRS1 = $_GET['recordID'];
    mysql_select_db($database_Onantional, $Onantional);
    $query_DetailRS1 = sprintf("SELECT * FROM Roster WHERE First name = %s", GetSQLValueString($colname_DetailRS1, "text"));
    $query_limit_DetailRS1 = sprintf("%s LIMIT %d, %d", $query_DetailRS1, $startRow_DetailRS1, $maxRows_DetailRS1);
    $DetailRS1 = mysql_query($query_limit_DetailRS1, $Onantional) or die(mysql_error());
    $row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
    if (isset($_GET['totalRows_DetailRS1'])) {
      $totalRows_DetailRS1 = $_GET['totalRows_DetailRS1'];
    } else {
      $all_DetailRS1 = mysql_query($query_DetailRS1);
      $totalRows_DetailRS1 = mysql_num_rows($all_DetailRS1);
    $totalPages_DetailRS1 = ceil($totalRows_DetailRS1/$maxRows_DetailRS1)-1;
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table border="1" align="center">
      <tr>
        <td>First name</td>
        <td><?php echo $row_DetailRS1['First name']; ?> </td>
      </tr>
      <tr>
        <td>Last Name</td>
        <td><?php echo $row_DetailRS1['Last Name']; ?> </td>
      </tr>
      <tr>
        <td>Conference</td>
        <td><?php echo $row_DetailRS1['Conference']; ?> </td>
      </tr>
      <tr>
        <td>email</td>
        <td><?php echo $row_DetailRS1['email']; ?> </td>
      </tr>
    </table>
    </body>
    </html><?php
    mysql_free_result($DetailRS1);
    ?>

  • Removing of unused buttons on detail page.

    Hello,
    I know the answer is NO for this question -:) but any suggestions . My requirement is in the details page I don't required NEW,ADD buttons in the details page and when in the opportunity Product revenue detail page i don't required Update Opportunity Product Totals . Could you please suggest how to do this, or can i raise a enhancement request to Oracle.
    Regards
    Subbu

    Hai,
    This is possible by writing a javascript functions. Storing those functions in Objects Web Applet and pushing that web applet into the page layout.
    Thanks
    Edited by: Raghu on Aug 4, 2010 4:17 AM
    Edited by: Raghu on Sep 21, 2010 3:29 AM

  • How to add revenue to the account detail page

    steps for adding revenue details page ie in order to display forecasting revenue report for account productwise is it possible to add additional section in the record detail page
    mail id : [email protected]
    wat are steps for adding finance tab ?????????

    Thank you.
    However it is not showing in the catalog.
    I used the WSRP producer connection name as provider and id from the portlet.xml file.
    rss is my WSRP producer connection name from EM and the id is numeric in my portlet.xml file.
    I can see the folder but I cannot see anything inside of the folder.
    <folder id="customPortletFolder">
    <attributes>
    <attribute value="Custom Portlet Folder" attributeId="Title" isKey="true"/>
    <attribute value="Custom Portlet Folder" attributeId="Description" isKey="true"/>
    <attribute value="Custom Portlet Folder" attributeId="Subject" isKey="true"/>
    <attribute value="/adf/webcenter/folderlists_qualifier.png" attributeId="IconURI"/>
    </attributes>
    <contents>
    <resource path="1269551712363"
    repository="rss"
    id="RSSReader">
    <attributes>
    <attribute value="portletTest" attributeId="Title" isKey="true"/>
    <attribute value="portletTest" attributeId="Description" isKey="true"/>
    <attribute value="portletTest" attributeId="Subject" isKey="true"/>
    <attribute value="oracle.webcenter.spaces.browser" attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png" attributeId="IconURI"/>
    </attributes>
    </resource>
    </contents>
    </folder>

  • Is there a way to include html link with applet?

    I am thinking of writing an applet that would be useful to others, which I would provide for free. In return I would want a link from the pages that use the applet. It is important that the link is search engine friendly, a pure href html link that will provide google page rank to me.
    Is there a way to include such a link with an applet so that it can't be removed?

    No. You can't force other sites to change their content.

  • Why is my detail page blank with no data from master page?

    Hello,
    I created master page that links to detail page - but when I click on the link I see the detail page empty from data.
    Do you know why? Thanks!
    This is the PHP code I'm using in the detail page:
    <?php require_once('../Connections/connection1.php'); ?>
    <?php
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "formUpdateSale")) {
      $updateSQL = sprintf("UPDATE neve_sale SET type=%s, area=%s, address=%s, built=%s, lot=%s, BR=%s, floor=%s, floorAll=%s, parking=%s, elevator=%s, price=%s, available=%s, `date`=%s, status=%s, details=%s, myDetails=%s, pic1=%s, pic2=%s, pic3=%s, pic4=%s, pic5=%s WHERE `primary`=%s",
                           GetSQLValueString($_POST['type'], "text"),
                           GetSQLValueString($_POST['area'], "text"),
                           GetSQLValueString($_POST['address'], "text"),
                           GetSQLValueString($_POST['built'], "int"),
                           GetSQLValueString($_POST['lot'], "int"),
                           GetSQLValueString($_POST['BR'], "int"),
                           GetSQLValueString($_POST['floor'], "int"),
                           GetSQLValueString($_POST['floorAll'], "int"),
                           GetSQLValueString($_POST['parking'], "text"),
                           GetSQLValueString($_POST['elevator'], "text"),
                           GetSQLValueString($_POST['price'], "int"),
                           GetSQLValueString($_POST['available'], "text"),
                           GetSQLValueString($_POST['date'], "date"),
                           GetSQLValueString($_POST['status'], "text"),
                           GetSQLValueString($_POST['details'], "text"),
                           GetSQLValueString($_POST['myDetails'], "text"),
                           GetSQLValueString($_POST['pic1'], "text"),
                           GetSQLValueString($_POST['pic2'], "text"),
                           GetSQLValueString($_POST['pic3'], "text"),
                           GetSQLValueString($_POST['pic4'], "text"),
                           GetSQLValueString($_POST['pic5'], "text"),
                           GetSQLValueString($_POST['primary'], "int"));
      mysql_select_db($database_connection1, $connection1);
      $Result1 = mysql_query($updateSQL, $connection1) or die(mysql_error());
      $updateGoTo = "admin-sales1.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    $colname_Recordset1 = "-1";
    if (isset($_GET['primary'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_GET['primary'] : addslashes($_GET['primary']);
    mysql_select_db($database_connection1, $connection1);
    $query_Recordset1 = sprintf("SELECT * FROM neve_sale WHERE `primary` = %s", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection1) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>

    11) opened iPhoto library package and I now have 'old masters' and 'Masters'
    12) several years seem to be missing from these two folders
    You got bitten by a nasty bug.
    The upgrade of your library got interrupted, and some of your photos are still in the "Old ..." folders.  There is no known fix for this, that can save your iPhoto library. We are still waiting for a bug fix from Apple. What you can do, copy out your original photos, that are still in the "Old Masters" and "Masters", and save these folders.
    Then restore your library from your most recent backup and use the saved "Old " folders  to reimport and add the newest photos, that are missing in your backup.
    The "years" folders in "Masters" and "Old Masters"  are the years, when the photos have been imported, not necessarily the years when the photos have been taken.

  • I purchased premiere elements 13. I followed the instructions. Loged into my account. Located my order number, but can not find the order detail page to download my product

    I purchased premiere elements 13. I followed the instructions. Logged in to my account. Located mu order number but could not find the order detail page to click the download your product button. I was also asked to download the Akamai download manager which i don't understand why. Also It said that once the manager was installed the download would appear in the browser which it never did. So, I have no idea if it did download or not. Not sure what else I can try. Would love some help.

    The Akamai download manager is used to download the software you purchased.  Try the download resources below.  The second one does not use the download manager.
    PE 10, 11, 12,13 - http://helpx.adobe.com/premiere-elements/kb/premiere-elements-10-11-downloads.html
    You can also download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

  • Can I have a Master/Detail page without a repeating region for the Master links?

    Hi there.
    I have been trying to find the solution to this for hours, but with no luck at all.
    I have a master/detail page that uses an HTML dataset.  It's pulling content from DIV tags within the same page, using 2 colums ("topic" and "description") and is working properly using this code:
    <ul spry:region="ds1" spry:repeatchildren="ds1">
    <li class="product" spry:setrow="ds1" spry:select="selected" spry:hover="hover">{topic}</li>
    </ul>
    What I'd really like to do though, is have some individual images serve as the {topic} links instead of having the {topic} listing built dynamically using the repeatchildren. So, basically, I'd like to hard-code the topics using images, and when you click on it, it then loads the specific {description} content.
    But as soon as i remove the repeatchildren, and hard-code the <li>'s, it doesn't load the description. It does do the spry:select and spry:hover part, but it just doesn't change the detail region content. I even tried various "onclick"s such as setCurrentRow(2), and that doesn't work either.
    Any advice you can give me I really appreciate!
    Below is my code:
    var ds1 = new Spry.Data.HTMLDataSet(null, "sourceContainer", {rowSelector: "div.topic", dataSelector: "div.QandA", columnNames:["topic", "description"]});
    <table width="90%" border="1">
    <tr>
    <td width="21%" valign="top">
            <div spry:region="ds1">
    <ul>
                     <li onclick="ds1.setCurrentRow(0);" spry:setrow="ds1" spry:select="selected" spry:hover="hover">[an image goes here]</li>
                    <li onclick="ds1.setCurrentRow(1);" spry:setrow="ds1" spry:select="selected" spry:hover="hover">[an image goes here]</li>
                    <li onclick="ds1.setCurrentRow(2);" spry:setrow="ds1" spry:select="selected" spry:hover="hover">[an image goes here]</li>
    </ul>
                </div>
    </td>
      <td width="79%" valign="top">  
      <div spry:detailregion="ds1">
      <div>{description}</div>
      </div>
      </td>
      </tr>
    </table>         

    Your onclick and setrows are conflicting. (they do the same thing....)
    Get rid of the spry:setrow attributes and it should work fine.
    Hope this helps,
    Don

  • Is there a way to remove default lightbox related stuff from poplets in product detail page?

    http://pilotpenaustralia.com.au/product-catalogue/writing-instruments/frixion-range/frixio n-ball-erasable-pen/
    On above page (which is a product detail page using product large layout) I added poplets and it started to generate javascript conflicts and my dropdown stoped working. I am using mootools and jQuery in my site and if I just take out the tag for poplets out, every thing start working perfect. I also tried to take every thing out except scripts we are using for dropdown but all in vain.
    I am looking for some solution like if I can have plain markup including images for popup without the default lightbox code. My plan is to add lightbox or colorbox manually so it will not have any confilict with other scripts.
    I am trying to find the solution for last two days but no solution worked at all. Your help will be appericiated. Thanks a lot in advace.

    Thanks for your kind reply. Yes I can see number of errors. Actually my client purchased this theme and it uses some how mootools and jQuery at same time. I was only to look into product layouts. I don't know what other scripts are doing there. I know this is a mess but I am sure there should be some way to resolve it in my current scope of work. I switched all other scripts specifically the ones uses jQuery and also did not link jQuery too. But still lightbox.js (the one BC embeds) is conflicting with mootools and menu. So what the deal??? Waiting for positive feedback.

  • Struts - HTML:link tag with dynamic page attribute?

    I am trying to use the html:link but the page value is dynamic (resulting from the bean within the iterate tag). The code below doesn't work - error. Is there a way to use all Struts tags and make this happen. Any ideas?
            <logic:iterate id="myMenuForm" property="menuItem" scope="session" name="menuForm" >          <html:link page="<bean:write name="myMenuForm" property="menuDisplayName"/>">                  <bean:write name="myMenuForm" property="menuDisplayName"/>          </html:link>        </logic:iterate> Thanks,
    mlv

    Thanks for all your help. Based on all you your comments, it is now working
    and I thought I would provide some details about how I got it working.
    There are not that many examples within the Struts documentation.
    id = unique name for the object that can be referenced within the iterate
    tag.
    name = is the Bean, in this case it's the ActionForm, that contains the List
    object that will be iterated. In my case, I have a ActionForm that contains
    a List property that contains all the menu item rows from the databse.
    property = is the property name within the ActionForm that is the List
    object. Links to the getter method
    Within the <bean:write> tag you use the id name to get a handle on the final
    object from the iterate tag and the property is one of the property values
    within the bean that is contained within the List.
    So in this case I have a ActionForm bean that contains a List property that
    contains a collection of beans.
    FormAction - bean
    property menuItems of type List contains:
    - row 1 = bean (with a property of menuDisplayName)
    - row 2 = bean (with a property of menuDisplayName)
    - row 3 = bean (with a property of menuDisplayName)
    Here's the JSP code for the tag.
            <logic:iterate id="myMenuForm" name="menuForm" property="menuItem" >
              <html:link page="www.yahoo.com"/>
                      <bean:write name="myMenuForm" property="menuDisplayName"/>
              </html:link>
            </logic:iterate>Now I would like to make the <html:link> page attribute value dynamic from
    the iterate bean. Therefore, you can make the url for the link dynamic If
    you know how to do that, please feel free to provide some help.

  • Trying to activate 2nd licence on second device but i can't  see a download link anywhere on the 'My products and services' page of my account.

    I successfully installed and activated everything on my primary machine 2 days ago and now I'm trying to do the same on my second device but the steps that I followed (below) in the initial activation no longer work. There isn't an link to download the software onto the second device.
    Any help is greatly appreciated.
    S
    Download Instructions:
    1. Go to the url below and select your store:
       www.adobe.com/go/store_selector
    2. From the store drop-down menu, click on "Your Account".
    3. Login into Your Account with the ID listed above:
    4. Locate order #AD1234567890 and click on the order number.
    5. In the Order Detail page, click on the 'Downloads for this Order' button.
    6. Start your download by clicking on the 'Download' button.
    7. After you have completed the download process, your serial number will be displayed.
    8. You can log back into 'Your Account' in the future to re-download your products.
       http://www.adobe.com/go/download_instructions/

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Product detail page

    Hi
    I need to design a product detail page, and have been looking
    around for inspiration.
    A lot of sites seem to use the tabbed interface approach like
    this
    http://www.dixons.co.uk/martprd/product/seo/639047
    But do you think this helps or hinders the search ranking of
    a page?

    baxxy2000 wrote:
    > Hi
    > I need to design a product detail page, and have been
    looking around for
    > inspiration.
    > A lot of sites seem to use the tabbed interface approach
    like this
    > <a target=_blank class=ftalternatingbarlinklarge
    > href="
    http://www.dixons.co.uk/martprd/product/seo/639047
    >
    > But">
    http://www.dixons.co.uk/martprd/product/seo/639047
    >
    > But</a> do you think this helps or hinders the
    search ranking of a page?
    No it won't hinder the ranking. All the search engine will do
    is spider
    the tabbed link. If anything it could help the ranking as the
    spider
    will be able to get to more information by following the
    link/s. The
    more information it is able to access the more it will be
    able to return
    results based on what USEFUL information it finds.

  • Link to remove Product from Cart in Product list/detail views

    I'm wondering if it would be possible to construct a link/button to remove a product from the cart (assuming it's in the cart) from within the product list or detail views.
    Much like the 'remove' link on the shopping cart page.
    Anyone done this or have any ideas as to how it might be done?

    I was messing around with it and figured it out.
    I changed the onclick value ...false to ...true.
    Apparently this allows the href value to be used after the onclick function has run. Here's the jquery i used to make the change.
    $(linkA).attr('onclick',$(linkA).attr('onclick').replace('false','true'));
    I hope this helps someone else.

  • Master Detail pages php/mysql  Links

    I have a master/detail page setup that is working properly. I
    am trying ot add a Link to only a few of the detaill pages but not
    to show up on others. I tried to set just do the html in a text
    field but It owuld not come out as link. It did underline it like a
    link.
    I also tried to do a If statement but am getting parse errors
    when I add the html code.
    <? if ($row_detail['link'] {
    echo "<a herf=$row_detail['link']>Expanded
    Detail</a>
    I get a parse error of unexpected <
    Any body have any idea if this is possible and how I might
    get it to work
    Thanks
    Tim

    David
    Getting closer I put in this
    <? if ($row_rscdetail['link']) {
    echo "<a herf='{$row_rscdetail['link']}'>Expanded
    Detail</a>"; } ?>
    Everything is good except it is not a link. It is underlined
    and mouses over but not link.
    The source code from ie is
    <a herf='
    http://www.sflcondos.com'>Expanded
    Detail</a>
    I also put the " " around the link in the table field and
    removed the ' ' from <a herf='{etc}' and it came out in source
    code as
    <a herf="
    http://www.sflcondos.com">Expanded
    Detail</a>
    It has got me stumped
    Thanks for your help
    Tim

Maybe you are looking for

  • Invoce Aging Report - Error

    Hi Team, I'm trying to run Invoice Aging report. When I'm running this it's erroring out. Here I'm posting log file Receivables: Version : 12.0.0 Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved. XXRAXINV_SEL_SE module: XXXXX Invoice

  • How to transfer the data in navigation view?

    Hi Gurus, I have done the webdynpro development which has the floor plan manager road map. So after user enter the value in the UI then can review the data by pressing review button and data will get transfer to next screen where user will able to se

  • 24" Display Dust?

    I don't know what this is appearing in the corner of my Apple LED, I went to the apple store and they said that I would have to get the LCD repleaced (~700 dollars).  I was hoping someone could give me insight to what this is, at first I thought it w

  • ADF DI : Need to disable edit on a column in excel spread sheet

    Hi, I need to make a column disable for edit in ADF table in excel.I tried making read only property to true but , user can still edit that column but will get update failed error.I want my column to be completely disabled even for editing.Is there a

  • Maaping error

    Hi SAP-xi guru, Check the mesage in sxmb_moni i got a mapping error "MAPPING">EXCEPTION_DURING_EXECUTE. I copied the payload data and execute the mapping.Then i got a clear eror message "No value is assigned to parameter rfcChannel". What does these