Hyperlink Opportunity Name in a report

Hi,
I have a report which I would like to display the Opportunity Name as a hyperlink.
I have tried using the following HTML segment @[html]"<a href="/OnDemand/user/OpportunityDetail?OpptyDetailForm.Id=@H&OMRET0=%2fOnDemand%2fuser%2fOpportunityHomePage&OMTHD=OpportunityDetailNav&OMTGT=OpptyDetailForm&ocTitleField=Name&ocEdit=Y" target="_blank">"@"</a>. This does not work I understand the @ between the quoation marks above is really only supposed to be used for the Opportunity ID. Is there any other way in which I can hyperlink the Opportunity Name field or for that matter any other text field and how can this be done?
Many thanks

sorry my first post didn't take!
to be able to drill down in the reports:
Make sure that you have the ID column chosen for whatever column you want to link (ie. Opportunity ID, if linking Opportunities)
Also make sure that the ID column is positioned directly next to the column you are going to link. If ID column is not in report linking will not work, and if it is not next to the column it will present an error when you click on it. You can also choose to hide this column so it doesn;t show up in the actual report.
to drill down:
in the "column proporties"
click "style" tab
expand the: Custom CSS Style Options (HTML Only)
check the second "Use Custom CSS Class"
type: ActionLink
click "Data Format"
check override Default Data
choose "Custom Text Format" from the drop down list
then type in the box:
@[html]"<span onClick=\"javascript:LinkOccam (this, 'opportunity');\">"@"</span>"
hit OK to save this and it should be good to go
Edited by: user10785263 on Mar 27, 2009 9:17 AM

Similar Messages

  • User must wait several minutes before NEW opportunity shows up in report

    When a user creates an opportunity, they will then add product revenue to it. After that, they need to run a report of the opportunity and send the quote to the customer.
    The report will prompt for the opportunity name and then retrieve the formatted quote form.
    The issue is, after the opportunity is created and product revenue added, when the user tries to run the report, the data selection will not display the opportunity. The opportunity will not show up until after the user logs out and then back into CRMOD.
    EDIT: The log out/in portion was just a coincidence and plays into a delay in some sort of background processing problem.
    If the user just waits , up 15 to 20 minutes in some cases, the opportunities will show up in the list. Sometimes, they appear very quickly, other times it take a very long time.
    I am surmising that this has to do with some sort of business function that runs in the background, and being a shared system, there is a backlog in the processing. Similar to the wait queue for data imports.
    Is this normal behavior?
    Edited by: nsidev on Aug 28, 2009 1:59 PM

    Hi, I think the problem is with the drop down prompt not getting refreshed with newly added opportunities, otherwise with the direct reports clicking the "rerfresh" link brings the newly created opportunity. The problem also doesnt seem to happen if the prompt is of type "Browse through choices and/or type in directly "
    -- Venky CRMIT

  • Hyperlink on data field crystal report vs 2005

    Please help!!!!
    I can not set the hyperlink on a data field in *.rpt.
    I also set the hyperlink type was A website on internet and filled the website address. But when report display i can not see any link.
    Thanks in advanges,

    Hello,
    (from CR Help file)
    You can select a report object on the Design or Preview tab and create a hyperlink to another location.
    The hyperlink is saved with your report and is available to other users as a way of viewing additional information.
    Note:    Crystal Reports also lets you create hyperlinks with Relative URLs, so your web reports retain independence from their location on any particular server.
    To create a hyperlink field
    Select a report object on the Design or Preview tab.
    On the Format menu, click Hyperlink.
    The Format Editor dialog box appears with the Hyperlink tab active.
    Click the type of hyperlink you want to create.
    The available types in the upper area are:
    No Hyperlink
    This is the default option. There is no hyperlink associated with the selected report object.
    A Website on the Internet
    Select this option if you want your report object to be linked to a static web address. Use the formula button to create a URL based on a field value. For example, you might enter the following formula if your Customer Name field contained information that would create a series of meaningful URLs:
    "http://www." + {Customer.Customer Name} + ".com"
    Note:    You can also use this option to connect to Business Objects, Web Intelligence, and OLAP Intelligence documents (this is also known as report linking). Use the openDocument function to create these hyperlinks in Crystal Reports.
    Current Website Field Value
    Select this option if you want the program to create a hyperlink out of the field you selected. The field must be stored as a proper hyperlink in your data source.
    An E-mail Address
    Select this option if you want to create a "mailto" address from the field you selected. Use the formula button to create an address based on a field value.
    A File
    Select this option to create a hyperlink to a file on a specific computer or networked computer. Use the formula button to create a file path based on a field value.
    You can also use a hyperlink of this type to run an EXE with a command-line parameter. Enter the path and application name, and follow it by the parameter for the command.
    Current E-mail Field Value
    Select this option if you want the program to create an email hyperlink out of the field you selected. The field must be stored as a proper email address in your data source.
    The available types in the DHTML Viewer Only area are:
    Report Part Drilldown
    For information about how to use this option, see The Report Part Drilldown option.
    Another Report Object
    For information about how to use this option, see The Another Report Object option.
    Note:    Not all hyperlink types are available at all times. The object you select and its location on the report determine which types are available.
    After you have chosen a hyperlink type, enter the appropriate hyperlink information (the URL of a web site, for example).
    Click OK when you are finished.
    The hyperlink is inserted as appropriate. Click it on the report to go to the web site, to send an e-mail, and so on.

  • Getting the variant name when the report program is run in background

    Hi All,
    How to get the variant name for the report program when run in background? My requirement is to create an email attachement with the name 'variant.XLS', where variant = selection screen variant, when the report program is run in background. The system field SY-SLSET holds the variant name only when run online.
    Any pointers to this will be highly appreciated.
    Thanks and regards,
    Nilesh.

    Hello Nilesh,
    Please find the algo:
    1. Call the FM: GET_JOB_RUNTIME_INFO to get the background job details.
    2. Select data from TBTCP using these details:
    DATA:
    FP_EVENTID   TYPE BTCEVENTID
    FP_EVTPARM   TYPE BTCEVTPARM
    FP_ACTIVE    TYPE BTCXPGFLAG
    FP_JOBCNT    TYPE BTCJOBCNT
    FP_JOBNM     TYPE BTCJOB
    FP_STEPCNT   TYPE BTCSTEPCNT.
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
        IMPORTING
          EVENTID                 = FP_EVENTID
          EVENTPARM               = FP_EVTPARM
          EXTERNAL_PROGRAM_ACTIVE = FP_ACTIVE
          JOBCOUNT                = FP_JOBCNT
          JOBNAME                 = FP_JOBNM
          STEPCOUNT               = FP_STEPCNT
        EXCEPTIONS
          NO_RUNTIME_INFO         = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    *   Error calling FM: GET_JOB_RUNTIME_INFO
      ENDIF.
    DATA: FP_VARIANT TYPE BTCVARIANT.
      SELECT JOBNAME JOBCOUNT STEPCOUNT VARIANT
      FROM   TBTCP
      INTO TABLE L_IT_TBTCP
      WHERE  JOBNAME   = FP_JOBNM
      AND    JOBCOUNT  = FP_JOBCNT
      AND    STEPCOUNT = FP_STEPCNT.
      IF SY-SUBRC = 0.
        SORT L_IT_TBTCP BY JOBNM JOBCNT STEPCNT.
        READ TABLE L_IT_TBTCP INTO L_WA_TBTCP INDEX 1.
        IF SY-SUBRC = 0.
          FP_VARIANT = L_WA_TBTCP-VARIANT.
        ENDIF.
      ENDIF.
    Hope this helps.
    BR,
    Suhas

  • Can you create a different default Opportunity name for Lead conversion?

    We're using CRMOD for a high-volume call center and we end up with leads with the same name. According to the online help, "The First Name and Last Name for the lead appear in the Opportunity Name field by default." That's working correctly, but it would make our lives easier if it did something different, like maybe First Name, Last Name, and ZIP code, or First Name, Last Name, and a Timestamp. Is there a way to do that? I realize the users could do something manually, but then I get all the associated issues.

    I'm not quite sure how that would work. I attempted this in staging using [<AccountName>]+" "+[<AccountLocation>], and I checked the Post Default box. When I go to convert a Lead, it still defaults to First Name and Last Name on the Convert Lead screen.

  • How do I find out what the name of the reports server  is?

    Hi Everyone,
    I am connecting to a remote machine using gotomypc.com and have started up Reports Builder 10g. I know very little about installation of Oracle on this machine. Just enough to log into Oracle 10g and run tools like the Report Builder, TOAD, etc. When I run a report from the Report Builder I get a web browser with a blank report. It works when I run a paper report. I am guessing that the Reports Server is not running or not configured properly.
    Can you tell me how to find out what the name of this Reports Server is and/or how to start it up?
    Thanks.
    Emad

    I realize this is old, but... You can find out your servers name by looking at the $ORACLE_HOME\reports\conf\rwservlet.properties file. It has a entry for SERVER. Should also have a corresponding conf file after starting up OC4J and activating the server for developer installs.
    Next, you can also run rwdiag. It will show you all report servers available to your installation. This is interesting when Multicast is used by Reports (10g). Ran into issues with servers named the same not on the hardware I was expecting.... ;)
    Good luck.
    BradW

  • Table name changed in Reports 3.0

    My DBA asked me to change the table name from SA_AWARDS to SAFETY_AWARDS.
    I had already developed a report using table name SA_AWARDS.
    When I change the table name in my report to SAFETY_AWARDS, I get compilation errors.
    How can I fix it ?
    Thanks.
    Suresh

    Hi
    As i understand your problem , you have changed the table name in the query wizard and then tried to compile and it is giving errors ....
    well anytime you modify the sql (even add a space) the column names are renamed ... ie if you originaly had column Customer_name it would be renamed as customer_name1 ....
    now if in the original report you are using the columns for any computation etc it will not find the old column and will give compilaiton errors .... one way is to change the column names back to original names ... or better modify the sql once more by adding space and you will get back the original names most of the times .....
    the best way to avoid this is give alias name in the sql first time around , so it dosnt create problems ....
    once you take care of this i think your problem should be solved .....
    if not do let me know in more detail
    bye
    sudhir

  • Define Logical Systems and Template Names for BW Reports

    Hi experts
    I would like to know if someone used the mentioned functionality 'Define Logical Systems and Template Names for BW Reports, I would like to know too IF I create a Z REPORT for example in webdynpro and insert it in this configuration it will work and where it will appear in sourcing cockpit?
    sds.
    Javier

    Hello Muthu,
    BW reports will be shown in SRM Box if the corresponding BW roles for SRM are integrated with SRM roles.
    You might to activate the corresponding datasource of this in SRM.
    And since you have to connect the source system to BW, I think you have to define SRM system as logical system in BW.
    Regards,
    Pavan

  • Need to print Current user Name in crystal report in B1

    Hi all,
    In Crystal reports there are 2 current user fields
             CurrentCEUserName
    and   CurrentCEUserID
    I have tried to add these fields to the footer of my reports, but no information comes out.
    Is there any way to find out the current user and print their user name on the report?
    Users have 2 id's.  Where can I find this info and add it to the report.
    A) the windows user id if possible
    B) the SAP user id
    Thanks
    Chris

    HI,
    If you want SAP user id ,add OUSR table and pick user id from that table.
    or check http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=14295
    Thanks,
    Neetu

  • How to get the VENDOR NAME in the report s-ME80FN,MB51

    Dear friends,
    In many sap standard reports we are getting the vendor no. or material no. etc., What to do if we want vendor name in the reports ME80FN AND MB51?
    bye
    TS

    Hi Guys,
    Go for enhancement of RM07DOCS......
    add new variable as shown below,
    DATA: BEGIN OF list OCCURS 0.
             INCLUDE STRUCTURE itab.
    DATA: maktx LIKE makt-maktx,
           name1 LIKE t001w-name1,
           btext LIKE t156t-btext,
           pspid LIKE prps-posid,
           vornr TYPE vornr,                                     "215929
           color_line(03)       TYPE c,                          "n555
           color TYPE slis_t_specialcol_alv,
    *{   INSERT         IDEK900044                                        1
        vd_name1 type name1_gp,
    Also add the variable if required.
    Then go for Deatil_list and add the further coding.....
    Problem get resolved......

  • Display Vendor name in vendinvoice Report

    hi expert i have little query , in ax 2012 R3 there is report vend-invoice Report, actually i want to display vendor name on that report,by default there is no vendor name,for this i just added vendor name(extended data type) in vendinvoice temp table,and
    then just reference that field in class of vendinvoice,rebuild the ax,and in vs2012  add that field in report design ,and depolye ,but still the vendor name not does not showed in report...plz guide me..
    Regards.

    Hi Munsifuv,
    Is this a question about Power Query? If not, I'd recommend directing your question to a Dynamics Ax forum.
    Ehren

  • Dynamic name for a report

    Hi,
    I have a report query that print the emplyee report
    I use BI publisher.
    The report query name attribute is : employee.
    This name is static, in other word for each employee i get the same name (employee.pdf).
    But i want that the name of the report will be dynamic.
    for example if i have to print the jhon report i get jhon.pdf
    for david i get david.pdf
    My question is: is it possible?
    If yes how can I do that
    Thanks,
    Abdo

    Hi,
    Assuming that your link is just part of the page somewhere, then you could create a hidden page item that has the desired name in it (typically populated by a computation or process that runs Before Header). You should then be able to use:
    f?p=&APP_ID.:0:&SESSION.:PRINT_REPORT=&P1_EMPLOYEENAME.Where P1_EMPLOYEENAME is the hidden page item name.
    Andy

  • Get report file name in oracle report builder at run time

    Dear All,
    Is there any way to get the report file name in oracle report builder at run time?
    for example "HR_REP012.REP"
    i need this very important...
    Regards,
    Yousef
    Edited by: Yousef_m on Jun 2, 2012 5:18 AM

    Hello,
    Did you try the builtin SRW.GET_REPORT_NAME built-in function ?
    Example
    function AfterPForm return boolean is
    my_var varchar2(80);
    BEGIN
    SRW.GET_REPORT_NAME(my_var);
    SRW.MESSAGE(0,'Report Filename = '||my_var);
    RETURN (TRUE);
    END;
    Regards

  • How to add report name to MSS reports in NWBC

    I am using the standard report Launchpad in HRMSS_REPORTING_LAUNCHPAD in role SAP_MANAGER_MSS_SR_NWBC_3 role to allow managers run certain reports.
    When I open Reports launch pad, all the reports appear with the description of the report such as Personal Data, Org data etc.
    However when I run the report, the technical name of the report appears at the top.
    An example of this would be running report Personal data, when run the header is reading 0HCM_PA_T01_Q0008.
    How can I replace the tech name of the report to read the description instead
    i.e. Personal data to appear at the top instead of 0HCM_PA_T01_Q0008.
    thanks
    clive

    Hello Clive,
    I think you should contact your development team. Probably some field is visible in Application Configuration and that is why it shows up. I think the best will be that you seek help from your Development team.
    Cheers
    Hem

  • Create Folder with the name of expense report number in SHAREPOINT ?

    Hi All,
    iExpence - In expense report confirmation page. There is custom link.
    Requirement
    When user click on link, system should create folder with the name of expense report number in SHAREPOINT and copy copies of expense receipts in the created folder in SHAREPOINT.
    Please suggest.
    Thanks,

    OAF no api as such for this kind of customization. Rather try developing some web service or something similar which can be invoked from the custom link to do the job.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Is it possible to use a variable to control the path where a sub-flow is found ?

    I have a customer on UCCX 7.0.2 SR5. They are developing a script that uses many sub-flows and they wish to have a "Development" , "QA" and a "Production" versions of the application all on the same box. I can build the applications easily enough but

  • How do I create a user, in my context in OID using the Java API

    How do I create a user, with subschema, in my context in OID using the JAVA API I need to be able to create new users in my OID, I was doing it in our old iPlant Directory, but I don't seem to see the same methods in the Oracle LDAP API. I figured ou

  • I'm trying to erase everything but it's been loading all day. Help pls

    Hi, I'm trying to erase everything from my iPhone so I can sell it and I selected the erase and everything (I know I sound very technical) and after clicking confirm the black screen with the white spinning circle came on. I left it for a couple of h

  • Error when calling procedure from form personalization

    Hi every body I want to call a procudre using form personalization . I made the procedure and in form personalization i call it as follow: built in type : Execute a Procedure Argument : ='GAZ_EMP_ASSIGN_UPDATE(' || :ASSGT.ORGANIZATION_ID || ', ' || :

  • PROBLEM WITH LIMEWIRE FOLDER

    My Limewire songs are showing up in the Source Directory, but are not transferring to the IPOD or ITUNES library. How to I transfer them to be able to play them on the IPOD?