Links to record details

Hi!
Do you know a place where I could find the statements needed in order to insert links to record details from each type of report?
Form the moment I managed to find the statement that helps the users navigate to Account details from an Account report page, but I'd like to be able to do the same for the other record types as well. As far as I understood, there is a differet statement for each record type.
Thank you in advance,
Delora

Hi Delora,
To use ActionLinks, do the following:
- Arrange your columns such that the "link field" is to the left of the record "id" field.
- Go to the Style tab of the link field column properties and check "use custom CSS Class" and enter ActionLink
- On the Data Format tab, check "Override Default Data Format", and treat text as "Custom Text Format"
- In the Custom Text Format box, enter:
@[html]" (left angle bracket) span onClick=\"javascript:LinkOccam (this, ‘XXX’);\"(right angle bracket)"@"(left angle bracket)/span(right angle bracket)"
Where 'XXX' is replaced by the words:
- account
- opportunity
- contact
- service
- lead
- campaign
Those are all the record types supported natively through ActionLink.
Good luck!
Edited by: lpeters on Feb 16, 2011 5:55 AM

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.

  • Can I find out the record details in the SQLPlus for the no data found

    We can only check the error data details in the Enterprise Manager.
    How can I check the problem record details by using the sqlplus environment? From now, I only know which table through deferror and defcall. Since we want to check and solve the problem by telnet to the system and then using sqlplus only.

    I'm having some difficulty understanding the
    question... Can you rephrase the question?
    What do you mean by "error data details"?
    Are you saying that you currently know how to "check
    the error data details" through OEM and want to learn
    how to do the same thing in SQL*Plus?
    What do you mean by "deferror" and "defcall"?
    What problem, exactly, are you trying to solve?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC
    Dear Justin,
    First, thanks your reply.
    Yes, you are right. From now, we can solve the replication error by knowing which record has the problem. We check the error detail as follows:
    OEM-->Distributed-->Advanced Replication-->Adminitration-->Error Tab-->Choose the error record, then press the Detail button--> We can check the corresponding Call # details ( Original Val, New Val and Current Val). Once we got these information, we can check both database to solve the problem.
    Let me say my question again.
    When we found the no data found error in the alert_mydb.log. We check the error in the sql statement - "select * from deferror" which can find out the deferred_tran_id. Then we use this deferred_tran_id to find the PACKAGENAME by "select * from defcall where deferred_tran_id in (select deferred_tran_id from deferror)". The PACKAGENAME contains the table name, right? How can I found out the original record cause this no data found error using the sql statement?
    Many thanks.
    Regards,
    Kanas

  • Linking to a detail page

    I have the letters A to Z in a master page and would like to
    link to a
    detail page, where all companies are displayed whose names
    begin with A,
    or B depending which letter the user has clicked.
    On the detail page (compdetail.php) I have that code:
    $query_rsCompanies = sprintf("SELECT id, name FROM
    tblcompanies WHERE
    name LIKE %s", GetSQLValueString($colname_rsCompanies . "%",
    "text"));
    But how do I link from the master page to that detail page?
    I have as example for the letter "p" <a
    href="compdetail.php?name=colname">p</a>, but that
    doesn't work - I
    fear, the link is ridiculous, sorry :(
    Could someone point me the right way?
    Thank you
    Leo

    On 13 May 2008 in macromedia.dreamweaver.appdev, Leolux
    wrote:
    > I have the letters A to Z in a master page and would
    like to link to
    > a detail page, where all companies are displayed whose
    names begin
    > with A, or B depending which letter the user has
    clicked.
    >
    > On the detail page (compdetail.php) I have that code:
    > $query_rsCompanies = sprintf("SELECT id, name FROM
    tblcompanies
    > WHERE name LIKE %s",
    GetSQLValueString($colname_rsCompanies . "%",
    > "text"));
    >
    > But how do I link from the master page to that detail
    page?
    > I have as example for the letter "p" <a
    > href="compdetail.php?name=colname">p</a>, but
    that doesn't work - I
    > fear, the link is ridiculous, sorry :(
    >
    > Could someone point me the right way?
    Since you're using PHP, I'll assume MySQL.
    The link winds up looking like:
    <a href="compdetail.php?name=p">p</a>
    Then the SQL winds up looking like:
    SELECT id, name FROM tblcompanies WHERE LEFT(name,1) = asdf
    ORDER BY
    name ASC
    You'll use the Advanced screen in the recordset definition.
    In the
    parameter box, you'll add asdf; default value is A and
    runtime value is
    $_GET['name']
    You can even generate a dataset for the master page with the
    first
    initials of all the companies:
    SELECT DISTINCT LEFT(name) AS initial FROM tblcompanies ORDER
    BY
    initial ASC
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • Order list not linking through to detail view

    Hi all, I'm creating an order list in a secure zone, each order needs to link to the invoice of that order (the detail view). I have read:
    http://forums.adobe.com/message/4348407#4348407
    and
    http://kb.worldsecuresystems.com/838/cpsid_83807.html?bc-partner#main_Displaying_Order_His tory
    but cant seem to link from the order list to the detail view.
    My list template is:
    <li>
    <span class="col1">{tag_invoicedate}</span>
    <span class="col2">{tag_invoicenumber}</span>
    <span class="col3">{tag_invoicetotal}</span>
    <span class="col4">{tag_status}</span>
    </li>
    Are any of these tags meant to link to the detail view? I have looked for further tags which link to the detail view but cant find any.
    Thanks for your reply in advance.
    Karl

    Yea, best is to wrap {tag_productimage} in a div with a class, i.e. <div class="order-image">{tag_productimage}</div> and "shrink" it with css:
    .order-image {
         width:80px;
         height:80px;
    .order-image img {
         width:100%;
    You can not define a template for the detail view (I wish...), it is using the default template.
    Nicole - BCGurus.com   |  http://bcgurus.com/Business-Catalyst-Templates for only $7

  • How to put a web link in the detailed navigation

    How can you put a web link in the detailed navigation?
    I know that if your role contains iviews that are 3 levels down (default), then the link to the iview will appear in the detailed navigation. But, I want to put a link to a external site in the detailed navigation - is this possible?
    Thanks
    Patrick

    I have a page set with a url iview and it opens from the detailed navigation in a  new window fine.
    however when clicking on a link to the page via a landing page which displays the KM content page folders, it loads it in the portal active window still (with nav and masthead).
    Any ideas how to get the km link to open in a new browser window?
    thanks
    Message was edited by:
            Alex McKnight

  • Different links in the detailed navigation, based on URL alias

    <u>What I'm trying to do :</u>
    Based on URL aliases /irj/portal/individual or /irj/portal/business
    I will dynamically add an UME group to the already logged in user.
    <u>Filter :</u>
    If clicking on /irj/portal/individual I will store "group=individual" in the context, and add UME group individual, if clicking /irj/portal/business I will store "group=business" in the context, and add UME group business and remove individual, and then redirect to the same URL.
    <u>Configuration</u>
    Each UME group has a one-to-one mapping to a Portal role.
    I will place an ACL on the PCD content, based on group, hiding/showing aggregated folders, hanging under the roles.
    <u>Wanted end-result</u>
    Different links in the detailed navigation, based on URL alias.
    <b>My question is how you would implement the filter part, mentioned above ?</b>
    Portal app or J2EE servlet filter or something else ?

    Hi sunil,
       Create a JSPDynPage component(C) having 2 hbj:link whose hrefs point to these 2 iViews(A and B). U can get the href of the iView by previewing it(for A and B). Create an iview from the par component (C) and add it to the DLN so that it shows the links to ur iViews(A and B). U can make the Show Tray property of this iView (C) to false.
    Regards,
    Harini S

  • Link for bank details not appearing

    Hi Experts,
    I am configuring ESS 6.0, EP7.0, but i am facing strange problem.
    In ESS if I attach a ESS user to any indian employee then i am not able to see link for bank details  whereas if i attach the same user to US employee then link appears.
    Could anybody help me in this case.
    Thanks
    Sa,eer

    Sameer
    Bank Details is Country Specific,Check in Home Page Framework whether bank service is assigned for India.
    Transaction SPRO
    Personnel Management>ESS>Homepage for Self Service>Service.Define Country Specific Service...
    Award points if helpful
    Regards
    Sarath

  • ADF displaying a records details.

    Hi, i am having a problem... think there is probably and easy answer that i havent tried. I have two pages, the first page posts a specific contactID to my second page using process_scope. My second page simply displays the details of this record. To create the second page i dragged an ADF form from my data control pallet according to the appropriate view object. Whenever i run this page it always displays the first record it comes to in the DB. How do i get it to display the record as according to the contactID i have put into process_scope? i have tried a number of diffrent ways without success and starting to get very frustrated. any help much appreciated!
    p.s i know how to do this using executewithparams. i want the records details to be displayed automatically however, as the user doesnt want to have to press a button every time to see the details
    Roddy

    Hi,
    depends on the business service you use
    a) ADF Business Components
    No need to pass any ID from one page to the other because row currency status is kept between two pages if they both use the same VO
    b) Web Service / EJB
    You need to provide a finder method that takes an ID as the input. Then on thr ADF pagedef file for the second page, you create a method binding for this method and use EL to reference the ID you put in process scope. Finally you create a invokeAction in the Executables section and point it to the method binding
    Frank

  • Does Aperture record detailed Flash data in metadata?

    I'm taking an online course in Flash Photography and wonder if Aperture records detailed flash data anywhere.

    Aperture will report what is in the EXIF tags Flash and Flash Compensation.
    What specific data are you looking for?

  • Video recording details

    Hello,
    is there any opportunity to get some basic recording details on the videos recorded with the iPhone4? I mean...something like EXIF for the taken photos.
    I currently browsed through a folder with recorded videos/photos of my little son and asked myself when I might have been recording this and that (my little son learning to walk, etc...)
    But all I was able to find were the file dates (created/changed).   I got a little scared because with the only information of these (wrong) dates and a name like IMG_1063.MOV I cannot recap the time when a video might have been recorded.
    Can someone help me? What are you doing to avoid this? I don't like to estimate the recording dates (especially not after 2-3 yrs or so..) Or do I always have to rename the files when moving them off the iPhone?!

    Great, man!
    Exif in MOV-files...wow, didn't know that. And none of my appications does just show me them. Can I see the Exif-Info somewhere in iTunes or Apple Quicktime player?
    Anyway...thanks for the very fast+helpful response, wjosten!

  • How to add links in the detailed navigation area of the navigation panel

    hi everyone,
    I had developed 4 iviews. 2 of those iviews i added to 2 different pages. And the 2 pages added to workse and assigned a role. i assigned this role to user. and it is working fine.
    i want to add remaining to iviews as links.
    how to add the links in the detailed navigation area of the navigation panel.
    regards
    sunil kumar.ch

    Hi sunil,
       Create a JSPDynPage component(C) having 2 hbj:link whose hrefs point to these 2 iViews(A and B). U can get the href of the iView by previewing it(for A and B). Create an iview from the par component (C) and add it to the DLN so that it shows the links to ur iViews(A and B). U can make the Show Tray property of this iView (C) to false.
    Regards,
    Harini S

  • Is it possible to display record detail across and down?

    I am using forms Developer 10.1.2.0.2
    Is it possible to display record detail across and down? I would like to create a simple form that displays records from one column in one table. This table has many records, so I would like the data to be displayed in two directions, as is possiblie in Reports Developer. In other words, have 3 columns with 5 rows all displaying the same column from the same table. Ex:
    code1 code6 code11
    code2 code7 code12
    code3 code8 code13
    code4 code9 code14
    code5 code10 code15
    FYI - the main reason I want to do this is to create a fancy form that is an LOV. I plan to have each column next to a check box. Currently, we have the column next to a check box, but with only one column the user has to do too much scrolling to get to see the various codes.
    Edited by: E Slazyk on Apr 22, 2009 1:43 PM

    It seems programmatically possible...
    You could do a JSON product dump and tie codes to url's, then tie this to an autocomplete search bar with a click through or delayed auto navigation...
    http://jqueryui.com/autocomplete/#remote-jsonp
    I hope this helps.
    @webmosphere
    www.webmosphere.co.uk

  • Candidate registration populating with other records details

    I'm implementing iRecruitment 12.1.3
    When a candidate does a new registration on the external visitor site, it will sometimes come up with a page pre-populated with another person's record details.
    I'm sure that a metalink note was released for this not too long ago but I cannot find it. Can anyone help?!
    Thanks,
    Dan

    This seems seeded error in your version of iRecruitment it better if you can raise SR for same to oracle.
    Thanks

  • How to ensure a record is created in a block linked to a detail block?

    Hi All,
    I am stuck. In my form I have a master block (blockA), a detail block (blockB) and a third block (blockC) that is linked to blockB via a standard relation on blockB where blockB.id = blockC.id. In blockB if column adtype = 'P' then the requirement is that a corresponding record is entered into blockC. So If I enter several detail records into blockB and set adtype = 'P' on each then I can double click on each and add the details to blockC. Save. This works fine and when I re-query each of the records can be seen as appropriate. The problem I'm facing is enforcing a record to be entered into blockC based on the adtype equaling 'P' in blockB. I have tried performing checks in lots of different triggers but to no avail the same thing keeps happening which is this. If I create more than one record in blockB with an adtype of 'P' but don't enter any details into blockC my checks will always flag this up when saving. If however I enter some details into blockC for the first of the records from blockB with an adtype of 'P' then all checks are passed and no errors are raised. It is as if that now a record exists in blockC I can no longer check for the existence of a record even though that record is only applicable to the first record in blockB and not any of the others??
    I hope I have explained this clearly enough for someone to come to my aide as I am truly stumped!
    Many Thanks in advance
    Matt

    I think I understand your situation (a bit difficult to follow indeed) but the problem might be here:
    > If I create more than one record in blockB
    With a master-detail, you have to save the master and detail data before continuing to another master record. So, you cannot enter several records in blockB and several records in blockC at the same time.
    I wonder, did you never get a "do you want to save the changes" message when going from one record in blockB to the next?

Maybe you are looking for

  • Product ID for Free Folios

    We have a free app with a free subscription all set up and working properly, with one issue published so far. We are ready to publish the second issue. The app itself has a Product ID, and our Free Subscription in-app purchase as a different Product

  • Debtors Aging - Journal Entries

    Hi Experts, I need some advice regarding omitting Journal Entries from a Debtors Aging report, particularly fluctuation journals that don't reflect a value on the debtor statement. Any comments will be highly appreciated. Regards, Lebo

  • Macbook Pro doubt!

    Hello everyone, I recently bought this computer on the Apple Store: Macbook Pro 17" 2.66GHz Intel Core i7 8GB 1066MHz DDR3 SDRAM - 2X4GB 128GB Solid State Drive MacBook Pro 17-inch Hi-Resolution Antiglare Widescreen display Apple LED Cinema Display (

  • [Solved] [audacious-git] dependency question

    Hi, I maintain audacious-git and audacious-plugins-git and have a question: audacious-plugins-git should be a dependency of audacious-git. On the other side audacious-git should be a makedependency of audacious-git. This is the case for the packages

  • Customer invoice - change of Tax classification required

    Hi, I wonder if you can help with a query. For most customers we invoice outside the UK, we charge a VAT rate of 0%, which is linked to a tax classification in the customer master record (via XD03). In certain scenarios, we have to charge VAT for the