Hyperlinks in Excel output

I've seen many conversations on this topic but never a satisfactory solution.  So, I have excel hyperlinks that are built from an equation something like = Hyperlink(A3,"View"), where "A3" is the URL address (e.g., www.example.com) in a hidden column.  The idea is to display the hyperlink "View" in the column rather than the actual URL, which can run 40+ characters long.
When a .PDF is generated from this excel file, the hyperlink does not work.  My understanding is that this is because Adobe is unable to recognize the Excel equation as being a hyperlink.  One way around this is to copy the column with  he equation into another program, such as MS Word and then copy it back into Excel.  When the column is "laundered" through Word, Adobe can now recognize the formula as a hyperlink. 
Unfortunately, when generating a lot of these documents with hundreds of hyperlinks, it is a slow, manual process. 
Is there a way to have pdf that recognize the equation "=hyperlink(..." as a hyperlink in the pdf document?
Thanks
PS: I was also trying to do this with hyperlinks in Tableau, but figured the Excel was the more likely to have a solution. 

I've tried a number of ways, with several different products but typically, I use the "Save to Adobe PDF" option in Excel and then Convert to PDF. 
If there is another way that yields gets around this issue, please let me know.

Similar Messages

  • Hyperlink in ALV output and when downloaded to Excel, maintain that hyperli

    Hi SAP Friends,
    I want to know if this is possible. My requirement is, display a column with Invoice # and hyperlink (or you can call it as Hotspot in SAP language). When clicked on the hyperlink, it should open a webpage, giving details of Invoice. I tried testing BCALV_GRID_VERIFY program. I can see hyperlink in ALV output and when I click, it opens a webpage. However, when I down load data to Excel using Excel inplace, hyperlink is gone. Only data is down loaded. How can we make it happen that hyperlink is maintained even after downloading data from ALV ?
    Any ideas ?
    Niranjan

    Waiting for any suggestions from users.
    Niranjan

  • 9.3.4 Update Broke HyperLinks to Excel Spread Sheets located on Same Domain.

    I have created company procedural documents in PDF using Adobe Pro 9.3.3.
    These procedures contain hyperlinks to Excel spreadsheets that are located on an Internal Domain File Server. When I click on the Hyperlink using Adobe Reader 9.3.3, Excel launches and opens the spreadsheet . Adobe Reader or Adobe Pro 9.3.4 won’t open the link. Adobe 9.3.4 pops up a Window saying the spread sheet cannot be found, make sure you type the name correctly so on and so on. I Click OK on the first pop up, a second Adobe Pop-up window opens saying "Could Not Open the file" followed by the correct path to the spread sheet. I just tested it on a computer running Adobe Reader 9.3.3 and the hyperlinks worked fine. I then Upgraded Adobe Reader to 9.3.4, absolutely no other changes, and the hyperlinks no longer work..Same pop up..Cannot find .xls"..."Could not open .xls"..
    Hyperlink syntax being used is \\servername\sharename\folder\spreadsheet.xls . So what setting do I need to chase down in 9.3.4 to correct this? What changed in 9.3.4 from 9.3.3?

    We are experiencing a similar problem with Reader 9.3.4
    We have training products produced in Acrobat 6, as PDFs which have hyperlinks to run Flash movies (SWFs). The products are installed from CD onto users' hard drives.
    The products have worked on hundreds of PCs and Macs, but as each customer updates to Reader 9.3.4 they report failure to open the SWFs.
    The SWFs are organised in a hierarchy of folders depending on exact topic. All the movies are inside a "data" folder, then main topic folders, down to sub-topic folders.
    I have found that the PDF hyperlinks will open a copy of the relevant SWF if it is placed in the same folder as the calling PDF, but not when it is in its rightful position down the path.
    The initial error message shown when files are in their correct folders says e.g.  "Cannot find anchoring_one.swf" suggesting that only the filename is called and not the path. However the second message, displayed when the first is acknowledged, says e.g. "Cannot open data/anchoring/anchoring_one.swf" So the hyperlink IS outputting the full path, but somehow it it is being truncated to file name only.
    Seems that the call is produced from the hyperlink correctly, and registers with the system as full path. Then the call is passed forward to a function which should actually open the file and here loses its path, so file-open fails and returns a "Cannot Find" message. The return code from this function is passed back as a failure, to the prior function which still knows the path. This prior function then issues the "Cannot Open" message, including the full path.
    Is is totally impractical for us to rewrite and re-issue the programs in any other format, or stop thousands of independent customers from upgrading to Reader 9.3.4
    I hope Adobe can fix this issue VERY quickly.
    MartinQ
    NauticalSoftware.com

  • Set hyperlink in excel

    I am importing one excel file INPUT.xls which contain one columnl with hyperlink which opens a PDF file.
    From this file i am generating a new file with that hyperlinked column Which contain the same link as INPUT.xls file has.
    How can i get that link from INPUT.xls file and set it in my output file OUTPUT.xls file
    How can i do this.
    I am using Oracle forms 10.1.2.02

    i have tried the following code but i am not able to set hyperlink in excel..
    Declare
    application ole2.OBJ_TYPE;
    workbook1 ole2.OBJ_TYPE;
    workbooks1 ole2.OBJ_TYPE;
    worksheet1 ole2.OBJ_TYPE;
    worksheets1 ole2.OBJ_TYPE;
    args1 ole2.List_Type;
    file1 varchar2(300):='D:\final_new_backs_of_factory(Printout)_'||sysdate||'.xls';
    cell ole2.obj_type;
    begin
    application := ole2.create_obj('excel.application');
    ole2.set_property(application,'visible','true');
    args1 := OLE2.Create_Arglist;
    workbooks1 := OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    workbook1 := OLE2.INVOKE_OBJ(workbooks1,'Add');
    worksheets1 := OLE2.GET_OBJ_PROPERTY(workbook1, 'sheets');
    worksheet1 := OLE2.INVOKE_OBJ(worksheets1,'Add');
    OLE2.SET_PROPERTY(worksheet1, 'Name', 'akarsh');
    OLE2.DESTROY_ARGLIST(args1);
    --ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= "Book%20Format%20A5%20size.xlsx", TextToDisplay:="RND"
    args1 := ole2.create_arglist;
    ole2.add_arg(args1,1);
    ole2.add_arg(args1,1);
    cell:=ole2.get_obj_property(worksheet1,'cells',args1);
    ole2.set_property(cell,'value','rupal');
    ole2.destroy_arglist(args1);
    ole2.set_property(ole2.get_obj_property(cell,'font'),'Name','Cambria');
    ole2.set_property(ole2.get_obj_property(cell,'font'),'size',11);
    ole2.invoke(ole2.get_obj_property(worksheet1,'Hyperlinks'),'Add Anchor',cell);
    ole2.invoke(ole2.get_obj_property(worksheet1,'Hyperlinks'),'Address','Book%20Format%20A5%20size.xlsx');
    ole2.invoke(ole2.get_obj_property(worksheet1,'Hyperlinks'),'TexttoDisplay','Click');
    --ole2.invoke(cell,'Hyperlinks.Add Anchor',args1);
    --ole2.invoke(cell,'Hyperlinks.Address','Book%20Format%20A5%20size.xlsx');
    --ole2.invoke(cell,'Hyperlinks.TextToDisplay','RND');
    ole2.release_obj(cell);
    OLE2.RELEASE_OBJ(worksheet1);
    OLE2.RELEASE_OBJ(worksheets1);
    OLE2.RELEASE_OBJ(workbook1);
    OLE2.RELEASE_OBJ(workbooks1);
    OLE2.INVOKE(application,'QUIT');
    OLE2.RELEASE_OBJ(application);
    end;
    Anyone please help m to solve this...

  • Excel output of report on client machine

    excel output report on client machine
    hello
    i am running report from app server, output is excel file...
    using following URL
    web.show_document(rpt_url ||'&report='||rpt_path||'batch_idcards_print_excel.rdf&desformat=spreadsheet&destype=file&desname=c:\batch.xls','_blank');
    ----this stores the excel file at app server under c:\
    now i want to save it on client machine... how can i do that ?
    from one forum, i got help , so i changed URL as below
    web.show_document(rpt_url ||'&report='||rpt_path||'batch_idcards_print_excel.rdf&desformat=spreadsheet&mimetype=application/msexcel&destype=FILE&title=batch.xls','_blank');
    when i open report, no window opens for saving file...a new window opens and gets closed itself immediately...
    wht is the problem?... client machine having MS office excel 2003...

    Dear
    Could you, please, tell us what you've done to solve this issue? We're facing the same problem, and until now we couldn't figure out what is exactly happening.
    Thanks in advance for any help.

  • XML Publisher report not printing excel output due to special characters

    Hello,
    I am trying to create a xml publisher report which should display the output in excel. But the program completes with a warning status and the output is displayed as XML instead of excel, with some errors "An invalid character was found in text content. Error processing resource " and i think these errors are due to the special characters(eg: city/province - A Coruña, Cáceres). If i give rownum < 10 in my query, where there are no such characters it works fine and i am getting an excel output.
    Tried changing the XML encoding and it doesn't help (both mentioned below)
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml version="1.0" encoding="UTF-8"?>
    Do anyone have a solution for this
    Thanks in advance
    Edited by: user10317098 on Jan 16, 2012 10:58 AM

    Hi,
    Check this links that might help you..
    https://forums.oracle.com/thread/1018488
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    Here the Exact solution from Oracle
    In the XML PUBLISHER ADMINISTRATOR Resp..
    Click the administration..
    then Click HTML Output
    Then in the Base Image URI Give the url of your application for example
    http://Test.Test.com:8000/OA_MEDIA/
    And then
    Image File Directory give this as per your application setup
    /u01/app/oracle/apps/apps_st/comn/java/classes/oracle/apps/media/
    Thanks & Regards
    Srikkanth.M

  • XML Publisher Report EXCEL output Huge stored as Web Pages

    Hello
    I have a XML Publisher Report which generates EXCEL output and the output file size is huge.
    What I notice that it is stored as Web Pages *.htm; *.html (Save as Type) in Excel this is the reason it is huge.
    If I save as Microsoft Office Excel Workbook *.xls it Reduce the size.
    I don't know how to save as ".xls" through XML Publisher using PL/SQL.
    Any body knows? please Help..
    XML Publisher Template Builder for WORD
    Version 5.6 Build 45
    PATCH        BUG_NUMBER
    XDO.H     *3263588*
    4.5.0     *3554613*
    5.0.0     *3822219*
    5.5.0     *4206181*
    5.0.1     *4236958*
    5.6.0     *4561451*
    5.6.1     *4905678*
    5.6.2     *5097966*
    5.6.3     *5472959*
    Thanks.

    Hi Vetsrini,
    We're on 10.1.3.4.1 and siebel 8.1.1.3 and when trying to open a report from within siebel in the output format EXCEL (selected from the parameter applet), it just opens the document in the browser.
    Is there a way to get it to open directly in Excel? I guess the reason is the file extension*.EXCEL, how could we get the extension to be in excel format (xls)?
    We don't want our users to have to do this themself.
    Regards,
    Hakan

  • Bypass Header and Footer in Excel output

    I have a Requirement like this
    I need to have the report output in the below three formats
    PDF,EXCEL,HTML
    But when we see the ouput in EXcel it should not have the Footer and Header Scetion ,
    remaining two output formats (PDF,HTML) must have the Footer and Header Section.
    Any one having any idea about this issue.
    Thanks in Advance.
    Have a Nice day.

    Hi @BIPuser.
    I said the same thing to them but they said no that is final option but we need only single template for all the outputs alos it should handle the bypassing of header and footer for excel output.
    Thanks for your reply, If i come across anything i will let u know.

  • Excel output (with graphics)

    Hello,
    I am using Oracle reports 10g 1.2.0 version.
    We need to generate oracle reports in Excel format ("real" Excel, not delimited text) with tabular data and
    also graphics.
    I used desformat=spreasheet. But is is giving only one worksheet.
    I've found the "Output to Excel with Oracle9i Reports"
    demo but the Excel template in the demo is very simple and doesn't have graphics.
    Then I've found the following:
    http://otn.oracle.com/products/reports/htdocs/getstart/examples/excel_output/result/excel.jpg
    a) The above site has excel output with multiple worksheets.
    which is similar to what we need but I wasn't able to find related source (excel_emp.jsp).
    b) Using jsp if we can ahieve multiple worksheets with grapahics, please provide us examples.
    c) http://www.oracle.com/technology/products/reports/htdocs/getstart/demonstrations/excel/index.html --This site is not working to find the demo.
    Could you please help me in this?
    Thank you for any help.

    carla,
    the example you mentioned uses the JSP web source that is only available in oracle9i reports.
    in theory you can create any excel output. it is just a matter of creating the template and then adding the reports tags to populate it with data.
    you could then use reports' URL engine to produce files from this output.
    there are certainly ways to do it, but they are only available in oracle9i reports (9.0.2 and higher)
    regards,
    philipp

  • How to display Excel output in browser instead of client desktop

    Hi,
    Similar to PDF and Text output, Is it possible to display Excel Output In browser itself.
    Whenever we try to view the report where the output type is excel, the output opens in Excel Desktop version.
    We have a requirement where we need the output to be displayed in browser itself.
    I have tried modyfing the Viewer profiles but was not able to get the desired result. We are currently working on E-Business Suite 11g.
    Regards,
    Sandeep

    for ideas look at
    Export to Excel of a Financial Reporting (FR) Report Opens the Excel File in the Workspace Browser Window (Doc ID 1300573.1)
    and
    How to configure Internet Explorer to open Office documents in the appropriate Office program instead of in Internet Ex…
    so in your case it is vice-versa

  • Excel Output For Standard Report In R12

    Hi Experts,
    My Client wants Excel Output for Standard Reports ( ex:-Open Purchase Order Report (by cost center)_xml)
    I changed the default output to Excel in Template of xml publisher administrator Responsibility.
    Now it is showing the Excel output, but The layout of report is not same as layout which in text output of standard report.
    Please guide me is there any solution to develop the reports layout in ms-excel using xml file rather than rtf template.
    Thanks
    Durga.

    Hi Alex,
    Thanks for your replay.
    Generating the new rtf template which is same as standard layout is difficult task for us. Actually we have 120 reports which have same requirement.
    Is there any other solution for this . please guide me
    Thanks
    Durga
    Edited by: 805567 on Jan 23, 2012 12:33 PM

  • How to remove the white space the in Excel  output

    Hi All,
    I was working with Oracle Apps r12.
    We have developed a custom report using xml and the report output type is Excel. when ran the report it completed with normal and the excel output is generated,We have a column called Amount and its having a white space before the amount.
    So that we cannot able to do any aggregate function with that data.
    For example the column called Amount
    28523.20
    32569.00
    25369.25
    in excel the output is coming like this, So when we select this three column and try to do any aggregate function it not giving any value.
    I have tried Trim but its dos'nt works, because the values are already trimed.
    Can any one could help on this.
    Thanks & regards
    Srikkanth

    Hi All,
    solved.
    Using this link i have removed the white space in my rtf and the white space in excel has removed
    http://office.microsoft.com/en-in/word-help/show-or-hide-formatting-marks-HP005189641.aspx
    Regards
    Srikkanth

  • Chart(graph) is not displaying in my Excel output

    Hi All,
    I was working with oracle EBZ R12, and bi publisher 10g,
    I have developed a RTF with graph, when i moved the RTF and run the report through application (the Excel output is not showing the Graph,but in pdf output the graph is coming fine).
    I have gone through this documents
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    and the forum question already raised for the same.
    https://forums.oracle.com/thread/1018488
    But i dont know the exact path of the web.xml file to change as mentioned in the links. Can any one help on this to resolve this issue.
    Thanks & Regards
    Srikkanth.M

    Hi,
    Its looks like this might be the customization issue please have a look at the OSS Notes 457497 and refer to the questions 2, 3 &  4 may be you can get the idea (Specially 4).
    Why are some texts not printed at all?
    Answer:
    Which texts are printed depends on the Customizing settings of purchasing.
    Go to Customizing for purchasing.
    Choose "Messages -> Texts for Messages -> Define Texts for <Purchasing Document>". Choose "Print Document <Purchasing Document>". Select "Texts for Document Items" and add a new entry.
    You must specify a value for the print sequence in the detailed screen for your new entry.
    Let me know in case of any.
    Regards,
    SRinivas

  • Problem with Excel output format

    Hi Guys,
    I am creating a report in XML Publisher (not standalone). I am facing some problems could anyone please help me to figure out the issues.
    Is it possible to have all three output format (PDF, HTML & EXCEL) exact (same aligned) only by creating a single RTF Template? I am facing the problem with Excel output format the output format of excel is taking excels cell formatting.
    Example Numeric fields --> Right Aligned, text fields --> Left Aligned
    One more issue with excel is -ve(negative) values are getting displayed in red and in brackets like ($13) (with red color).
    Our client want excel output on priority.
    Is there any limitation for excel output format of reports?
    It is very urgent for us please help.
    Any help would be highly appreciated.
    Thanks,
    Pragati
    Edited by: user11237443 on Aug 27, 2009 1:22 AM

    Hi Mahi,
    Thanks for your response. But i could not understand how can we write wrapper program could you please give some light on this or provide some link it would be helpful for me:-)
    I have read that blog for excel limitations but i have more question?
    1) What about the negative values?
    if any field is displaying negative amount then excel not displaying right value for that:(
    2)How can we align header or data?
    Do XMLP with EBS provide any solution for formatting in excel?
    3) If for the alignment of numeric value we concatenate them with any special character then how can we perform calculation that field?
    Here are so many formatting issues do we need to write any code in xml for that?
    Please help.
    Many Thanks,
    Pragati

  • When running an xml publisher report the xml output leads to 9 mb and the excel output file leads to 20 mb.But the output records is originally 4000 records. When copy to new excel it is showing 3.5 mb only. Does anyone knows the answer for this issue?

    When running an xml publisher report the xml output leads to 9 mb and the excel output file leads to 20 mb. The records contained in excel file is 4000 records. When taking the excel records and copy to new excel file the excel file size is 3.5 mb only.Why does the oracle software generates 20mb file?
    Does any one knows the answer please advice?

    Hello,
    This issue is because the Excel output from BI Publisher is MHTML (XML Publisher generates XHTML) not binary .xls.
    MHTML and XHTML are more verbose formats than binary .xls.
    It will be large because the current Excel output is just an HTML and not compressed like PDF. Please use the workaround (save it as .xls file).  This is a known limitation of RTF layout templates.
    BI Publisher Enterprise has a new feature True Excel Templates. The layouts generate binary Excel output.
    Excel Output File Size Generated By BI Publisher is Very Large (Doc ID 760437.1)
    Bogdan

Maybe you are looking for

  • I am a victim of " Your apple ID has been disabled" (not for security reasons, only disabled), is there any way to solve this?

    Is there any possible way to achieve my goal? I really want to solve this, looking forward for your assistance. Note: This is only "Your Apple ID has been Disabled", it did not mention security reasons and other words / things. Random Facts: 1- I had

  • Error in sales order creation using bapi

    Hi, Iam trying to create sales order by using BAPI_SALESORDER_CREATEFROMDAT1 and when iam trying to execute the function module by passing all th eparameters and iam getting the error as inspite of entering sold_to_party and ship_to_party details in

  • Problem with file to file

    hi i was trying this simple file to file scenario, i made sure i tested everything properly. i used the processing mode to be delete and in the receiver i have set it to create a folder and then save in it. but when i am trying to do the transfer the

  • Video full screen with two displays?

    I do presentations with my MB Air (currently still on Lion) I connect the MB Air to a projector via the mini display socket. In Sys Prefs/Displays I have MIrror switched off so that the projector screen shows an extended desktop. One display (MB Air)

  • EarlyWatch - Expensive SQL Statements help

    Hi all, i need to analyze an EWA report and i don't know how exactly can i identify an "expensive SQL statement". The report says: During this session, the following expensive SQL statements were identified as causing a database load of at least 1%.