How to remove hyperlink in Reports Region

How to remove hyperlink in a Report region (Based on some filter condition)
Example : In Report Region, I am getting value as 10, 20, 30, 0, 44, 55, 0
In the above value, I need to remove the hyperlink for 0 values.
Can anyone help me to resolve this issue.
Thanks in advance.
Regards
Balaji S

If you want a link column for values other than 0 and a blank for those with 0 then the best way to do this is to use a case or a decode to return a LINK image or text to a hidden column; I usually return the Edit icon only. You can then use the 'column link' region on a different column to create a link in the usual way and set the Link Text to the hidden column (e.g. #EDIT# in the example below). If you have set the target page to require a Checksum this will then be added without having to code it into your sql. E.g.
SELECT some_columns, 
  CASE WHEN numcol != 0 THEN '<img src="#IMAGE_PREFIX#e2.gif" alt="">'
  ELSE null
  END "EDIT"
FROM your_tableIf you want the same column value, but those of 0 to not have a link and those other than 0 to have a link then you need to code the link into your sql. e.g.
SELECT some_columns, 
  DECODE (numcol,0,numcol,'<a href="f?p=&APP_ID.:11:&SESSION.::&DEBUG.:11::">'||numcol||'</a>') "EDIT"
FROM your_table# = your URL e.g f?p=&APP_ID.:11:&SESSION.::&DEBUG.:11::
If you require a checksum on the link you need to add the apex_util.prepare_url function to the URL.
Cheers
Shunt

Similar Messages

  • How to remove hyperlinks in a word document

    how to remove hyperlinks in a word document

    Go to your "Insert" drop down menu.
    Select "Hyperlink", near or at bottom.
    You will get this dialog box:
    Look at the lower left corner... see the button "Remove Link"?
    Click on it...and hit the "OK" button in the lower right...
    Since this was a Word question, and not a Mac Pro question, it would have been better to post it here http://www.msofficeforums.com/word/

  • How to remove the a report from Transport

    Hi Have CR in transport and the CR contains many reports.
    a) If  i want to remove one report from that, plese tell wht are the steps do i need to follow.
    b)  if i want to remove entire transport request,Plese tell how to remove  the transport
    c) also give me steps if i want to remove the entire CR  from the transport.
    thanks in advance
    d) also please give me steps to release it to Quality.
    Thanks in advance.
    kp

    Hello KP,
    a) If i want to remove one report from that, plese tell wht are the steps do i need to follow.
    Go to SE09
    Find out the TR where u have added the report.
    Select the report and click delete button. A Popup will apprear for confirmation.Press YES.
    b) if i want to remove entire transport request,Plese tell how to remove the transport
    Then remove all objects from the TR and Delete the TR.
    Please reward points if it helps.
    Vasanth

  • How to remove # in the report

    Hi Experts ,
    I am finding # in the report how to remove it
    Thanks in Advance
    Saritha

    Hi Saritha,
    Its not technically possible to remove '#' from output when there is no value for that InfoObject unless you exclude it from result set. Other option is to have some character, in our scenario the way we did is, we always put dot ' . ' instead of blank while loading the data into data target which can be done using Transformations / update rules / Transfer rules.
    Anyway you can suppress it....Try this,
    Step 1: Select the Characteristic which u want to hide (#) in the Bex report.
    Step 2: Right click --- restrict --> you will get a popup screen with some values and Select # from the left side of the screen and drop it to the right side.
    Step 3: Right click on the # you will get an option "exclude from selection". Select it and activate.
    Hope it Helps,
    Thanks,
    Amit kr.

  • How to limit an Interactive Report Region from displaying.

    I have a page which is an interactive report. When you call that page from another one it takes a while as it is selecting all rows (over 10k). Once those rows are retrieved and the user adds a filter criteria it's relatively fast. How do I limit the report from running when I call the page until the user adds a filter?
    thanks
    John

    I'm not sure how this works. If I set it to a really small number say 5 rows it shows only 5 rows upon rendering of that page. However, when I subsequently click on Go for all rows or any other larger number I don't get the larger number. How do I get that portion to work as well?
    thanks

  • How to remove a template report or save one in another file

    I saved a basic report form I'd made in "My Templates" in Numbers.  Now, I've used it to make a monthly report for my organization and want to save that report in the organization's file, not in "My Templates".  How do I do this"?   Also, I'd like to remove monthly reports from "My Templates".  How do I do that?  I couldn't find any help in HELP.

    Hi Jean,
    This response applies to Numbers '09, operating under Mac OS X version 10.8.x (Mountain Lion). It may not be accurate for the same version operating under OS X v10.7.x (Lion).
    If your original report form was saved using  File > Save as Template, Number will have automatically placed it into your My Templates folder, and it will appear in the My Templates section of the Templates Chooser.
    When you choose that template to open a new document, the new document will open as "Untitled"
    Click Save at this point to open the Save dialogue.
    Change the Name of the document in the Save As: box. (hilited)
    IF the dialogue shows only the Save AS: box, the Where: popup and two buttons (Save and Cancel), as seen above, click the disclosure triangle to the right of the Save AS box to get the display below (plus a list of the files and folders in the folder indicated in the pop-up)
    Change the destination folder by navigating to the one in which you want it saved. (Pop-up below the title box, and file/folder list in window)
    When the pop-up shows the name of the folder in which you want to save the document, Click Save.
    Now begin working on the document you have created, named, and shown Numbers where you want saved.
    Numbers will now automatically save that document in that folder when you press command-S or choose Save from the File menu.
    You need to go through the steps above for each new document.
    Regards,
    Barry

  • How to remove links from report in dashboards

    Hi All,
    In guided navigational reports how to delete links under the report that displays in the new window(like modify, refresh,print links) in dashboard.
    Example -
    Report -
    Col1 Col2
    AB BV
    Links -
    Return Modify Refresh Print Download(want to remove the links in Bold).
    Regards,
    Soumitra

    You Edit Dashboard and update the Properties for the report in the section it resides. You will select Report Links.

  • How to add hyperlink to report total

    Hi,
    I have a report and the last row display report total ( using apex default feature - checking the sum check box).
    My last row look similar as show below
    report total | 10 | 20 | 30 | 0 | 100|
    My requirement to to add hyper link to the nos. 10 , 20 , 30 , 0 , 100 in the report total.
    Any help will be highly appreciated.
    Thanks in advance

    Hi WinSilver,
    Thanks for the response.
    I added following in region footer
    <a href="http://google.com>10</ a>
    But there is no chnage on the screen.
    Also , my report total is automatically create by the report... I have just checked the SUM check box next to column name in column attribute to get the some of the column...
    How to incorporate the report total value instead of manually typing 10 between <a> < / a >                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to Remove Hyperlink Lookup Column

    Thank you in advance for the assistance. Our firm is running a SharePoint 2013 Public Site. One of our pages contains a web part with a SharePoint custom list. One of the columns in the custom list is a look-up column. The content in the look-up column is a
    hyperlink to the data from the parent list. When a user clicks on the link, it takes the user to the parent. We wish to remove the hyperlink functionality. How can we display the look-up column content as normal text without the hyperlink?

    Hi,
    You can edit your lookup column to add multiple columns from parent (under the column settings 'add a column to show each of these additional fields'). Then the new fields will be titled as 'parent:fieldname' without link. Now, you need to hide the original
    lookup link column from the view and rename the 'parent:fieldname' to valid title. So the link field will be gone and the additional parent field will be in the view without link.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • How to remove #  value from report

    Hi All,
    There is report in PM module, when we execute the report Iam getting # value, where ever values are 00:00:00  for the infoobject Malfunction Start Time and End Time,When I checked  the data at cube level I can see 00:00:00 but not in report.So how do I get 00:00:00 in report.Please help.
    Regards

    Hi,
    1. if you will no zeros in reports you can suppress them. additional you will not see any lines with zero in report
    2. you do not need the display in the value list you can type in # directly in direct input box
    Here is some additional info:
    http://help.sap.com/saphelp_nw04s/helpdata/en/f1/0a5673e09411d2acb90000e829fbfe/frameset.htm
    Re: How to hide a row characteristics in query if this char. value is # ?
    Regards
    Andreas

  • How to remove dimension from report

    Dear All,
    I have created a report using Drag and Drop option as explained in the following link with 2 dimensions in rows and 1 dimension in column. Now I would like to remove one of the dimension from existing report. As explained in the below link I could not able to see the option called Remove Dim from design mode as well as preview mode.
    http://help.sap.com/saphelp_bpc70/helpdata/en/32/5facaf79c14163b3ae976733d4ae65/content.htm
    SAP Help: To remove a dimension, right-click on the dimension name block and select Remove Dim. You can remove dimensions only when more that one exists on either your columns or rows.
    Please, can anybody shed some light on this issue.
    thanks in advance..
    regards,
    Raju

    Dear Pravin,
    Thanks for the reply.
    I have tried this drag and drop option. But the problem with this option is existing format is getting disturbed and some junk values appearing in place of removed dimension.
    thanks and regards,
    Raju

  • How to remove # sign in report

    Hi,
          In our report out put we are getting # sign for one of the master data attribute "QUOTATION Number" . Is there any way to remove the # sign for the "Quotation number" instead of removing the whole record by EXCLUDING UNASSIGNED value.
    There was a routine for the Quotation number in update rules.Please help me

    Hi Kotha,
    Recently, we developed some java script to remove # and Un assigned... But, that is in WAD using java script item.
    Please check this blog:
    /people/andrey.semenchenko2/blog/2010/08/12/web-application-designer-70-replace-with-empty-in-the-report
    Plese check my profile and send me a message so that, i can help you.
    Thx,
    Ranga

  • How can we hyperlink a WEBI report to a .PDF or .DOC in any location?

    Hi All,
         I have a WEBI report which has a column called Country(Values US, UK). I have some .pdf files in my local machine and BOE server. Could anyone let me know how can I hyperlink the report to the .pdf in my local machine and in the server. There are two cases as below as questions to be answered.
    Case 1
    When I click on country column, a single .pdf file should open irrespective of the column values in my local machine/server
    Case 2
    When I click on country column, a .pdf file should open with respect to the column values in my local machine/server
    I would be grateful if it is answered asap.
    Thanks and Regrads
    Ram

    Ram,
    Go through these links. They may help you.
    How to Add Document links in SAP Business Objects Web Intelligence
    Add a hyperlink to a document: Web Intelligence 4.x - YouTube

  • How to format report region titles?

    How do I format the report region titles with CSS? Is there a template for the Title lable?
    Pete

    Hello,
    The Report Template or the Report Region Template?
    And yes you can do both.
    Example of report template with css.
    http://htmldb.oracle.com/pls/otn/f?p=11933:7
    Carl
    Message was edited by:
    Carl Backstrom

  • Modify a report region template

    Hi
    I am new on Apex, so my question could seem elementary! :-(
    I would like to create a mutiple report on one region, as explained and described on this forum in many places, but I am stuck at the begining!!
    - How can I copy a report region template?
    and
    - How can I copy a page template?
    Many thanks for your lights
    Regards,
    Fred

    Hi Fred,
    In your application, go to Shared Components, Templates. Then click the Create button and select the template type. On the next prompt, ensure that you select the "As a Copy of an Existing Template" option, then click Next until you get to a list of current templates. Change the name of the template you want to copy and change the Copy? drop-down from No to Yes and click the Copy xxxx Templates button. You will then be returned to the templates list - click on your new template to edit it.
    Andy

Maybe you are looking for