Adding Hyperlinks in Report shuould take action in PDF Output

Hi All,
I had a requirement with reports
Explanation of the requirement.
I had a report aaa.rdf which gives a (one)employee monthly details.
which need to be output in PDF.
now the requuirement is
I had added labels "next-month" and "previous-month" labels at either side of report title.
I need the code to kept in these labels such that when this report is executed and taken into PDF file, when user
user clicks on the "next-month" or "previous-month" in that PDF file, the action to take is it should re-ran the same report(aaa.rdf) and should display the output in PDF in the same window but now the output should show the
coressponding next-month or previous-month results respectively of that employee.
please let me know if this make sense.
please guide for the above requirement.
this is very very urgent your help will be appreciated.
Thanks in advance
RRM

Hi,
it is not too late ....
It's possible to add such Hyperlinks to the pdf-Output of a report.
With use of the built-in rw.set_hyperlink('hyperlink') in a format trigge you can realize that. "hyperlink" is for example then something like:
'/reports/rwservlet?destype=cache&desformat=pdf&report=drilldetail.jsp&userid=scott/tiger@josi&p_deptno='||:deptno
In your case it's a call to the same report you run before and you had to set your month-parameter in the call depending your current month (next or previous).
With srw.set_hyperlink_attrs('string') it's possible to add additional attributes like for example
     srw.set_hyperlink_attrs('target=_new')
which opens a new browser window.
This works for HTML & PDF.
Regards
Rainer

Similar Messages

  • Report problem showing  characters(čžš) in pdf output

    nls teritory slovenian_slovenia
    bi publisher preferences
    UI Language =English     
    Report Locale =Slovenian(Slovenia)
    template rtf
    html output     
         ćčžćčžćčžćčžćčžćčžćčžćčćžčćžčžćčžćčĆŽČĆŽČŽĆČĆŽČŽĆČĆŽČĆŽČĆŽČĆ ( correct)
    pdf output
    ??????????????????????????????????????????????????????????????

    Hello,
    Your probably going to have to edit the xslt to get the result either by stripping out the comma or by setting that column to explicitly align the way you want it.
    Carl

  • Same report on two instances but PDF output in different fonts

    I would appreciate that Report developer with no Apps experience also read this problem.
    We have 2 running APPS11i environments.
    One production, up and running at the customer.
    One development , up and running at our site, develop department.
    We developed some reports (rdf's) in Reports 6i Builder.
    These reports are known in Oracle Applications by placing the reports in the <OUR_TOP>\11.5.0\reports\US directory
    and of course as concurrent programs in Apps11i.
    The Requests are submitted by using FND_REQUEST package in our custom application, this works ok.
    On BOTH environments the reports are printed with expected font (=Arial) and layout.The concurrent programs have output information set: format (postscript), style and printer.
    Secondly we defined another set of concurrent programs, almost the same as the above con.programs mentioned.
    Except with this difference that the output information set is format (PDF) and printer is empty (print flag is off).
    ONLY on our development site adobe acrobat reader is launched with the expected fonts (arial). SO DEVELOPMENT IS OKAY for us.
    On our production site acrobat reader is launched, but the used font is not Arial, instead a font Devicefont10cpi is used.
    But these Arial fonts are in the fonts direcory (by looking in control panel | fonts).
    When we run the reports stand-alone (reports builder or rwrun60.exe in a DOS box) on the production environment the pdf outputs are created okay with the correct font.
    What could we have been forgotten when deploying the reports on production?
    In other words what could be responsible for running reports in APPS11i in ignoring the builder defined font.
    Thanks in advance auke quist
    [email protected]

    I would appreciate that Report developer with no Apps experience also read this problem.
    We have 2 running APPS11i environments.
    One production, up and running at the customer.
    One development , up and running at our site, develop department.
    We developed some reports (rdf's) in Reports 6i Builder.
    These reports are known in Oracle Applications by placing the reports in the <OUR_TOP>\11.5.0\reports\US directory
    and of course as concurrent programs in Apps11i.
    The Requests are submitted by using FND_REQUEST package in our custom application, this works ok.
    On BOTH environments the reports are printed with expected font (=Arial) and layout.The concurrent programs have output information set: format (postscript), style and printer.
    Secondly we defined another set of concurrent programs, almost the same as the above con.programs mentioned.
    Except with this difference that the output information set is format (PDF) and printer is empty (print flag is off).
    ONLY on our development site adobe acrobat reader is launched with the expected fonts (arial). SO DEVELOPMENT IS OKAY for us.
    On our production site acrobat reader is launched, but the used font is not Arial, instead a font Devicefont10cpi is used.
    But these Arial fonts are in the fonts direcory (by looking in control panel | fonts).
    When we run the reports stand-alone (reports builder or rwrun60.exe in a DOS box) on the production environment the pdf outputs are created okay with the correct font.
    What could we have been forgotten when deploying the reports on production?
    In other words what could be responsible for running reports in APPS11i in ignoring the builder defined font.
    Thanks in advance auke quist
    [email protected]

  • Adding hyperlink in Infopath custom list which opens pdf document available in document library

    Hi,
    I have a custom list(modified in InfoPath 2010) and a document library having 2 pdf documents.
    In the Custom list, i have used the attachment option for another field.
    How to create a link in the InfoPath list, which when clicked opens the corresponding pdf from the document library?
    How to achieve this?
    Thank you

    Hi Venkatzeus,
    From your description, you have a list and attachments for the list are uploaded to a document library. To display the hyperlink in InfoPath form, you can directly use 2 Hyperlink controls. And give the document' URL in this control using formula.
    I’m not sure how you upload the list item attachments to another document library. But make sure you have made a connection between the list item and attachments in document library. Here is an example.
    ListTitle         ID
    Item1     1
    Item2     2
    Pass the ID to the document library when we create the attachment.
    Document Name             ItemID
    attachment1 for item1    1
    attachment2 for item1    1
    attachment3 for item2    2
    attachment4 for item1    1
    attachment5 for item2    2
    So here, we can see attachment1, attachment2, attachment4 are item1’s attachments and attachment3, attachment5 are item2’s attachments, because of ItemID.
    1. Create a new column for document library, named it DocumentURL.
    2. Create a workflow and set to start when new item is created automatically with following action.
    Set DocumentURL = http://server/topsite[%Current Item:URL Path%].
    3. Custom list form.
        1) Add a data connection to receiver data from document library.
        2) Insert document library connection as repeating section.
        3) Add a hyperlink control within the repeating section (Insert > Hyperlink).
        4) Select DocumentURL as the data source for Link To and Display options.
    4. Add a formatting rule to the repeating section control.
    If ItemID in document data connection is not equal to ID in Main data connection, then hide this control.
    5. Done.
    Let me know if you have any question.
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • Report KSB1 take time to give output

    Hi
    When we run the T-Code KSB1 for a report it is taking more than 1 Hour to proceed the report for one month time period.
    This happening only for certain  group of cost centers only. Can somebody help to solve this issue.
    Regards
    Kesharika

    HI,
    there is a number of SAPNET notes dealing with performance of CO line item reports (search "KSB1" and "performance"  for example note number 607011, 840414,...).
    Depending on your specific situation (reading from archive, how are the CC groups defined,...) you should read the notes and do the things suggested there.
    Best regards, Christian

  • Calling report from form. Need PDF output

    I am calling a report from a form using RUN_PRODUCT. I need to display the form in PDF format. When the user clicks the button in the form to run the report, acrobat reader should open up and the report displayed there. Please help.
    Thanks

    Thanks for the response. The first part worked. I am able to get the output in PDF format. In the 2nd part where I want to open acrobat and display the output, I am having some trouble with the code. When I compile, it says
    win_api_environment.read_registry must be declared. Is there some package I need to attach?
    Also, in the After reports trigger, how do I pass vFile (I am assuming this is the PDF file name)?
    Thanks
    The first thing you'll want to do is pass parameters to the report IE DESTYPE, DESNAME and DESFORMAT where these could be FILE, 'c:\temp\report' and PDF.
    Then, you can try this piece of code I wrote (with some help from other people at Metalink and here) sometime back. Now, I call it from forms, but in your case, you'd have to run it in the after report trigger. Since with RUN_PRODUCT you don't know when the report is finished, if you did it from the form, it wouldn't work correctly.
    PROCEDURE OPEN_PDF(vFile IN VARCHAR2)
    IS
    vcServerApp varchar2(40);
    vcServerTag varchar2(600);
    vcCommand varchar2(2000);
    iArgPos pls_integer;
    dummy NUMBER;
    BEGIN
    -- 1 get the Server App for .PDF files
    vcServerApp := win_api_environment.read_registry('HKEY_LOCAL_MACHINE\SOFTWARE\CLASSES\.PDF','',true);
    -- 2 get the executable
    vcServerTag := 'HKEY_LOCAL_MACHINE\SOFTWARE\CLASSES\'||
    vcServerApp||'\SHELL\OPEN\COMMAND';
    vcCommand:= win_api_environment.read_registry(vcServerTag,'',true);
    -- 3 Sort out how to specify the Filename
    iArgPos:= instr(vcCommand,'%1');
    if iArgPos = 0 then --no substitution Var on the command line
    vcCommand := vcCommand||' '||vFile;
    else
    vcCommand := substr(vcCommand,1,(iArgPos-1))||
    vFile||substr(vcCommand,(iArgPos+2));
    end if;
    -- 4 Run using Winexec (or Host if preferred).
    win_api_shell.winexec(vcCommand);
    EXCEPTION
    when no_data_found then
    abortt('Acrobat Reader was not found! Please consult with your help desk to install it and try again.','N');
    END;
    Chad
    I am calling a report from a form using RUN_PRODUCT. I need to display the form in PDF format. When the user clicks the button in the form to run the report, acrobat reader should open up and the report displayed there. Please help.
    Thanks

  • Report builder, image issue with PDF output

    hi there,
    i generate report to PDF. i got the company logo on the header. everything is working fine. my pdf is generated and my letter comes out nice and proper.
    now once the PDF is generate and i view it on adobe reader, i want to protect the logo from been copied. like, when u click on the image and then right click on it, it gives u the option to copy image. i want to protect this from happening. i dnt want the logo to be able to be copied.
    anyone know on how i can protect the images from been copied. or direct me to a site where i can find some help.
    thanks in advance.
    cheers
    The software and version i am uising
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
    With the Partitioning option
    JServer Release 9.2.0.5.0 - Production
    Report Builder 10.1.2.0.2
    ORACLE Server Release 10.1.0.4.2
    Oracle Procedure Builder 10.1.2.0.2
    Oracle ORACLE PL/SQL V10.1.0.4.2 - Production
    Oracle CORE     10.1.0.4.0     Production
    Oracle Tools Integration Services 10.1.2.0.2
    Oracle Tools Common Area 10.1.2.0.2
    Oracle Toolkit 2 for Windows 32-bit platforms 10.1.2.0.2
    Resource Object Store 10.1.2.0.2
    Oracle Help 10.1.2.0.2
    Oracle Sqlmgr 10.1.2.0.2
    Oracle Query Builder 10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle ZRC 10.1.2.0.2
    Oracle XML Developers Kit 10.1.0.4.2 - Production
    Oracle Virtual Graphics System 10.1.2.0.2
    Oracle Image 10.1.2.0.2
    Oracle Multimedia Widget 10.1.2.0.2
    Oracle Tools GUI Utilities 10.1.2.0.2

    You can configure a custom destination (securePDF) to enable PDF security settings.
    Check out the following thread Re: how can prevent user for printing report
    Edited by: Rodolfo Ferrari on Jun 18, 2009 11:25 PM

  • Oracle Report, How to Display Polish Characters in a PDF Output

    Environment :
    Oracle Application Server version 10.1.2.0.2 on Red Hat 4 Enterprise (Kernel 2.6.9-42.0.3 , 32 bit) Oracle Database Version 10.2.0.3.0 Our character set of database is UTF8
    I have trouble to display polish characters in Reports Output. We develop on Windows XP machines. I can see the Polish Caharacters in the Reports Builder using several fonts (arial, arial unicode, Times new roman, verdana...) during design time or when running with the paper layout. But when the report deployed to application server running on the linux, the polish characters are replaced by symbols.
    Even under Windows, when I select 'generate to a PDF' file option, the characters are not displayed correctly (When I open the generated PDF file with Acrobat reader and go to Document Properties / Fonts, I see the Fonts are always replaced with Adobe Sans MM)
    Using the Forms Applications running on the same application server we have no trouble dealing/displaying with the characters (Ąą ĆćĘę Ł ł ŃńÓóŚ ś Ź ź Ż ż ß Đ đ € )
    NLS_LANG setting is AMERICAN_AMERICA.UTF8 on the Linux Box and AMERICAN_AMERICA.WE8MSWIN1250 is on the Development machines. (have tried a number of different NLS_LANG settings on the development box as well with no luck).
    Any direction would be appreciated.

    Hi,
    You have several different approaches to fix this problem. First of all, you would be able to generate the PDF output with Font Subsetting setup and be able to see the Polish characters correctly when running the output with destype=cache&desformat=pdf. The following metalink documents would guide you with this setup :
    Note.207711.1 "How to Use Font Subsetting in Reports 9i and 10g for PDF Output"
    As at design time you use many different Windows specific fonts, I also advice you to check the following document :
    Note.356221.1 "A Practical Methodology on Porting Reports from Windows to Unix with Different Fonts"
    Once the PDF output is generated properly with correct characters, then if you need to use "destype=printer" for direct print, rather than "destype=cache" to display the output in browser, then you can use the "PDFPrint" pluggable destination, which is located in :
    http://www.oracle.com/technology/products/reports/pluginxchange/index.html
    Regards,
    -Bulent

  • Adding hyperlinks to word report generated using Report Generation Toolkit (RGT)

    Hi All,
    I am generating a word report using LabVIEW RGT. I would like to add Hyperlinks to the files in the local PC to the word report. I found few links which explain adding hyperlinks to Excel report but not word report.
    Please help me with this.
    Anandelamaran Duraisamy,
    Senior Project Engineer,
    Soliton Technologies (P) Ltd,
    www.solitontech.com
    Solved!
    Go to Solution.

    Hi Srikrishna,
    Thanks for your effort to reply. I think you are suggesting it for Excel report. 
    It seems that we can use the below shown VI to add Hyperlinks to a word report,
    I initially thought it will only work for HTML reports.
    Anandelamaran Duraisamy,
    Senior Project Engineer,
    Soliton Technologies (P) Ltd,
    www.solitontech.com

  • What should be take action against following sql tuning report.

    Hi
    what should be take action against following sql tuning report.
    SQL ID : fn3mt5dvm7fba
    SQL Text : SELECT * FROM (select
         to_number(ow.waybl_no) waybl_no,ow.id wb_id,
         To_Number(ogp.gp_no) gp_no,
         To_Number(ots.trip_sht_no) trip_sht_no,
         otr.nm,
         ots.gty_br_mast_id,
         DECODE(otr.sign_recd,'1','YES','NO') Sign_Recd,
         DECODE(otr.stamped,'1','YES','NO') Stamped,
         otr.dlvry_dt dlvry_dt,
         otr.tel_no,
         --otr.remarks,                                                   
         Decode(otr.comments, NULL,'','Yes') remarks,
         otr.id ID,ops_safex_utl.get_br_nm(to_number(ow.bkg_br_mast_id))
    book_br,
         ow.pick_dt book_date
    from
         ops_ts_reconsile otr,
         ops_pultd_wb_dtls opuwd,
         ops_trip_sht ots,
         ops_waybl ow,
         ops_ultd_wb_dtls ouwd,
         ops_gate_pass ogp
    where
         otr.trip_sht_id=ots.id and
         otr.pultd_wb_dtls_id=opuwd.id and
         opuwd.ultd_wb_dtls_id=ouwd.id and
         ouwd.gate_pass_id=ogp.id and
         opuwd.waybl_id=ow.id and
         otr.status_lid=157 and
         ots.gty_br_mast_id = (:br_Id) and
         (otr.dlvry_dt = :searchDate OR :searchDate IS NULL) and
         otr.note_prpd = 'N' and otr.pod_recd = '1' and
         not exists (select TS_RECONSILE_ID from OPS_POD_FRWD_NOTE_DTLS
    where TS_RECONSILE_ID = otr.id)
    union
    select
         to_number(ow.waybl_no) waybl_no, ow.id wb_id,
         To_Number(ogp.gp_no) gp_no,
         null trip_sht_no,
         ogr.nm,
         ogp.dlvry_br_mast_id,
         DECODE(ogr.sign_recd,'Y','YES','NO') Sign_Recd,
         DECODE(ogr.stamped,'Y','YES','NO') Stamped,
         ogr.dlvry_dt dlvry_dt,
         ogr.tel_no,
         --ogr.remarks,                                                   
         Decode(ogr.comments, NULL,'', 'Yes') remarks,
         ogr.id ID,ops_safex_utl.get_br_nm(to_number(ow.bkg_br_mast_id))
    book_br,
         ow.pick_dt book_date
    from
         ops_gp_reconcile ogr,
         ops_gate_pass ogp,
         ops_waybl ow
    where
         ogr.gp_id=ogp.id and
         ogp.waybl_id=ow.id and
         ogp.dlvry_br_mast_id = (:br_Id) and
         (ogr.dlvry_dt = :searchDate) and
         ogr.note_prpd = 'N' and ogr.pod_recd = 'Y' and
         not exists (select GP_RECONSILE_ID from OPS_POD_FRWD_NOTE_DTLS
    where GP_RECONSILE_ID = ogr.id)) QRSLT ORDER BY trip_sht_no desc
    Bind Variables :
    1 - (VARCHAR2(32)):37069
    2 - (DATE):07/11/2011 00:00:00
    3 - (DATE):07/11/2011 00:00:00
    4 - (VARCHAR2(32)):37069
    5 - (DATE):07/11/2011 00:00:00
    FINDINGS SECTION (3 findings)
    1- SQL Profile Finding (see explain plans section below)
    2 potentially better execution plans were found for this statement. Choose
    one of the following SQL profiles to implement.
    Recommendation (estimated benefit<=10%)
    - Consider accepting the recommended SQL profile.
    execute dbms_sqltune.accept_sql_profile(task_name => 'TASK_58643',
    task_owner => 'SYS', replace => TRUE);
    Recommendation (estimated benefit: 99.15%)
    - Consider accepting the recommended SQL profile to use parallel execution
    for this statement.
    execute dbms_sqltune.accept_sql_profile(task_name => 'TASK_58643',
    task_owner => 'SYS', replace => TRUE, profile_type =>DBMS_SQLTUNE.PX_PROFILE);
    Executing this query parallel with DOP 128 will improve its response time
    99.11% over the SQL profile plan. However, there is some cost in enabling
    parallel execution. It will increase the statement's resource consumption by
    an estimated 14.56% which may result in a reduction of system throughput.
    Also, because these resources are consumed over a much smaller duration, the
    response time of concurrent statements might be negatively impacted if
    sufficient hardware capacity is not available.
    The following data shows some sampled statistics for this SQL from the past
    week and projected weekly values when parallel execution is enabled.
    Past week sampled statistics for this SQL
    Number of executions 17494
    Percent of total activity 7.2
    Percent of samples with #Active Sessions > 2*CPU .63
    Weekly DB time (in sec) 614696.04
    Projected statistics with Parallel Execution
    Weekly DB time (in sec) 704166.9
    2- Restructure SQL finding (see plan 1 in explain plans section)
    An expensive "UNION" operation was found at line ID 4 of the execution plan.
    Recommendation
    - Consider using "UNION ALL" instead of "UNION", if duplicates are allowed
    or uniqueness is guaranteed.
    3- Alternative Plan Finding
    Some alternative execution plans for this statement were found by searching
    the system's real-time and historical performance data.
    The following table lists these plans ranked by their average elapsed time.
    See section "ALTERNATIVE PLANS SECTION" for detailed information on each
    plan.
    id plan hash last seen elapsed (s) origin note
    1 209247904 2011-07-12/10:09:08 7.564 Cursor Cache
    2 4029269565 2011-07-12/10:20:21 15.374 Cursor Cache original plan
    3 4128886984 2011-07-08/11:30:25 42.426 AWR
    4 3695555639 2011-07-12/08:30:30 101.459 AWR
    Recommendation
    - Consider creating a SQL plan baseline for the plan with the best average
    elapsed time.
    execute dbms_sqltune.create_sql_plan_baseline(task_name => 'TASK_58643',
    owner_name => 'SYS', plan_hash_value => 209247904);
    ADDITIONAL INFORMATION SECTION
    - The optimizer could not merge the view at line ID 3 of the execution plan.
    The optimizer cannot merge a view that contains a set operator.
    - SQL Profile "SYS_SQLPROF_01306b26f6aa0000" exists for this statement and
    was ignored during the tuning process.

    afzal wrote:
    Hi
    what should be take action against following sql tuning report.
    <snip>Perhaps no action at all.
    You can ALWAYS produce a report that will show "top 5" issues. The question is NOT "do I have an issue reported by a tuning report". Yes you do. Everyone does. Always. Even if you slowest batch job runs in 1.3 seconds and your slowest OLTP transaction completes in 0.0001 second.
    The question is "do I have a problem that is serious enough to spend time solving?"
    If your average OLTP transaction completes in 3 seconds, how much effort is justified to get a 50% improvement?
    How much effort is justified to get that same 50% improvement on transactions that complete in 1.5 seconds? 0.2 seconds?
    Beware of Compulsive Tuning Disorder.

  • Adding Hyperlinks to text on a Summary Sheet in Powerpoint

    Hi
    I have a slide show that features No buttons, for questions 1- 10, If a user clicks a No button it prints a row of text with help for that particular topic.
    Im using vba to generate the wording and code for the summary page, see below
    Code for the No button is below
    Sub No1(button As Shape)
    If button.Fill.ForeColor.RGB <> RGB(128, 100, 162) Then
    button.Fill.ForeColor.RGB = RGB(128, 100, 162)
    Else
    button.Fill.ForeColor.RGB = RGB(255, 255, 255) ' default white colour
            End If
            q1Answered = False
            If q1Answered = False Then
            numIncorrect = numIncorrect + 1
            answer1 = "1. Answer to question 1 - Click Here for Further Help" & vbCr 'ADDED
            End If
    End Sub
    Code for the summary page is below
    Sub SummarySlide1() 'Summary Page for Create ADDED
        Dim printableSlide As Slide
        Dim homeButton As Shape
        Dim printButton As Shape
        Set printableSlide = _
        ActivePresentation.Slides.Add(Index:=summarySlideNumber1, _
    Layout:=ppLayoutText)
        printableSlide.Shapes(1).TextFrame.TextRange.Font.Size = 9
        printableSlide.Shapes(1).TextFrame.TextRange.Text = _
        vbCr & vbCr & vbCr & userName & _
        vbCr & "The following areas have been highlighted as one(s) which need development"
        printableSlide.Shapes(2).TextFrame.TextRange.Font.Size = 8.5
        printableSlide.Shapes(2).TextFrame.TextRange.Text = _
            answer1 & vbCr & answer2 & vbCr & answer3 & vbCr & answer4 & vbCr & answer5 & vbCr & _
            answer6 & vbCr & answer7 & vbCr & vbCr & answer8
            ActivePresentation.SlideShowWindow.View.GotoSlide 40
            MsgBox " Please Remember to Print Your Results before you leave this Page "
        ActivePresentation.Saved = True
    End Sub
    So what you end up with on the summary sheet is all the NO's the user has clicked
    for example
    1. Answer to question 1 - Click Here for Further Help
    What i'd like to do is turn the click here part in this text into a hyperlink to another web page
    Is there a way to do this using vba?
    Any help would be appreciated
    Thanks
    Jinks

    Hi Jinks,
    For this requirement, you could add a textbox with text: Click here, then use
    Hyperlink Object to add click action.
    With ActivePresentation.Slides(1).Shapes(3) _
    .ActionSettings(ppMouseClick)
    .Action = ppActionHyperlink
    .Hyperlink.Address = "http://www.microsoft.com"
    End With
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SSRS 2008 R2 is extremely slow. The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes. I have read this is a bug in SSRS 2008 R2. We installed the most recent patches and service packs.

    SSRS 2008 R2 is extremely slow.  The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes.  I have read this is a bug in SSRS 2008 R2.  We installed the most recent patches and
    service packs.  Nothing we've done so far has fixed it and I see that I'm not the only person with this problem.  However I don't see any answers either.

    Hi Kim Sharp,
    According to your description that when you view the report it is extremely slow in SSRS 2008 R2 but it is very fast when execute the query in dataset designer, right?
    I have tested on my local environment and can‘t reproduce the issue. Obviously, it is the performance issue, rendering performance can be affected by a combination of factors that include hardware, number of concurrent users accessing reports, the amount
    of data in a report, design of the report, and output format. If you have parameters in your report which contains many values in the list, the bad performance as you mentioned is an known issue on 2008 R2 and already have the hotfix:
    http://support.microsoft.com/kb/2276203
    Any issue after applying the update, I recommend you that submit a feedback at https://connect.microsoft.com/SQLServer/ 
    If you don’t have, you can do some action to improve the performance when designing the report. Because how you create and update reports affects how fast the report renders.
    Actually, the Report Server ExecutionLog2  view contains reports performance data. You could make use of below query to see where the report processing time is being spent:
    After you determine whether the delay time is in data retrieval, report processing, or report rendering:
    use ReportServer
    SELECT TOP 10 ReportPath,parameters,
    TimeDataRetrieval + TimeProcessing + TimeRendering as [total time],
    TimeDataRetrieval, TimeProcessing, TimeRendering,
    ByteCount, [RowCount],Source, AdditionalInfo
    FROM ExecutionLog2
    ORDER BY Timestart DESC
    Use below methods to help troubleshoot issues according to the above query result :
    Troubleshooting Reports: Report Performance
    Besides this, you could also follow these articles for more information about this issue:
    Report Server Catalog Best Practices
    Performance, Snapshots, Caching (Reporting Services)
    Similar thread for your reference:
    SSRS slow
    Any problem, please feel free to ask
    Regards
    Vicky Liu

  • Adding hyperlinks to Flash Executable files

    I'm using a demo version of Flash 5 to see if I'd like to
    invest in a copy of Flash. I added hyperlinked text to to a flash
    movie I produced, and when I uploaded the html added to a webpage,
    when I click on the hyperlink it successfully takes me to the
    correct website. However, when I try clicking on the executable
    file version of the same flash movie, published at the same time,
    although I get the usual little hand when the put the cursor over
    the hyperlink I'm not taken to any webpage.
    Can anyone tell me what's going wrong?

    HI
    You need to use FlashJester JStart
    http://jstart.flashjester.com
    Download a FREE evaluation copy and try it.
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. - www.flashjester.com
    "This has been one of the most impressive and thoroughly
    pleasant
    experiences of customer support I have ever come across -
    astounding!"
    Director - hedgeapple

  • Adding hyperlinks to CP4 text

    Can anyone help with advise on how to add a hyperlink to text
    in Captivate 4. The hyperlinks from PowerPoint seem, to work, but I
    can't see a way to add a hyperlink in the text field to an external
    website.

    Hi
    Ok I was trying to record it, not working
    Make sure that you've copied or saved the pdf files are in the web site folder first
    1 insert text,
    2 with this text, create a fake link, blue and underline
    3 click on Click box in the tools box
    4 resize the click box over the fake link, I only keep the hint Type hint here (I deleted the 2 others) and I type Click on the link, in French Cliquez sur le lien
    5 click box is still selected, then in the left menu select Action tab
    6 In drop-down menu On success select Open url or file
    7 Click to browse, click on file or type the url
    8 Click on the drop down menu (arrow), click and select New so that way it will opens in a New browser window.
    When you export in swf
    You will have, at the end of the exportation, to copy paste manually the files in the web folder where is the swf file.
    Now we have a new problem. I didn't have this problem with all the projects published, but it happened once. Also, once on the server, the link would not open for that reason, see this blog. Still working on it. 
    http://sorcererstone.wordpress.com/2009/06/19/when-captivate-links-don t/
    sophie
    Date: Mon, 6 Sep 2010 19:21:40 -0600
    From: [email protected]
    To: [email protected]
    Subject: Adding hyperlinks to CP4 text
    Can someone provide me to the steps of adding hyperlinks
    to CP4?
    >

  • Adding Hyperlinks to other projects (Merged)

    I am running into an issue with adding Hyperlinks to other projects.  I have several projects that I have merged into one Master project.  I have generated all the child projects into their corresponding Merged Project folders in the master file.  All I am trying to do is link one project to another.  So in "Child Project A" I have a hyperlink to "Child Project B". I am linking to a "File" which is Project B's HTML file in the Master Project (Merged Folder).  When I do this, I get a message in project A that:
    "This action will create an external link to the help system.  The link may not function when the help system is moved to other systems. Create link anyway?"
    So I create the link and generate Project A, but when I generate the Master Project, the link does not work. How do I fix this?  Links that I have to pages within a project work just fine, but not when linked externally even though all the projects linked have been merged within the Master Project.

    My link is showing in the HTML like this:
    <a href="../../../MasterMerge/mergedProjects/ChildProject2/ChildProject2.htm">test link</a>
    Where "MasterMerge" is the name of the folder that I have given to generate the master project to.  I was expecting RoboHelp to convert my absolute path to a relative path that looks like this:
    <a href="../ChildProject2/ChildProject2.htm">test link</a>
    as you suggested.  I can't figure out why it is changing my absolute path to a relative path that is so long..and still the link is not working.  The work-around for this is that I go into the HTML and just paste in my absolute path.  I don't want to continue doing this.
    Note that my actual path looks something like this:
    Q:\QA\Application Documentation\MasterMerge\mergedProjects\ChildProject2\ChildProject2.htm
    Do I have too many folders?  If so, I'm not sure what to do about this since my project needs to reside on a specific drive and folder at work that other departments don't have access to.
    Thanks for responding!  I'm just so frustrated with this because it seems the little details are causing me the most trouble.

Maybe you are looking for

  • Need to install iOS 7.1.2  but iPhone 4s is asking for passcode never needed this before, what do I do, I do not know it?

    Need to update my iPhone 4s to iOS7.1.2  but do not have the pass code that it requests, never needed it in previous updates, what should I do?

  • Multi-Room DVR Questions - switching to Fios

    I am getting ready to make the switch to Verizon Fios and have lots of questions. I am going to get  a Multi-Room DVR and either 2 or 3 set-top boxes. I have 4 tv's:  A -Main (Living room) TV is STD-Def,  B - Bedroom TV  is Hi-Def 1080p,  C - Bedro

  • Broken sleep/wake button.

    My sleep/wake button has been broken for a while and my phone decides to turn off itself. I have plugged it up to the wall charger and the computer. But nothing has happened. I even held the home button down for a while. Is there anything I can do? O

  • Crystal Reports 2008 SP2 - Fix Pack 2.1

    I see that Crystal Reports 2008 SP2 - Fix Pack 2.1 has been posted as of 10/26/09.  Anybody know what's in it?  I didn't see a Read Me.  Also, when you download and start to install this, it reports itself as a a Fix Pack for Version 1, but the versi

  • Bar chart issue

    Hi i am using cfchart, i have rotated the bar chart, so my column names are on the left side, the problem i have is. 1. not all the column names are showing ie column name 1 - bar here - bar here - bar here - bar here column name 5 - bar here any ide