Hyperion smart cut link of Financial report not opening as pdf in tasklist 11

Hi ,
I am using Smartcut Link to open FR from tasklist.
Reports are opening properly in HTML but  didn't show any option for PDF.
While I am opening the same report from Explorer->Right click->Open as html. This will show option to save/open report as pdf.
I am working on 11.1.1.4.
Thanks

Try these Re: Financial Reports launcehd from Task List lose PDF option
Re: Financial Report not rendering from Task List
Regards
Celvin
http://www.orahyplabs.com

Similar Messages

  • Hyperion Smart Cut Session Issue streaming multiple reports at a time using

    This is a lengthly post with details, Please review with Patience:
    We are trying to integrate Workspace based web Analysis reports within our intranet portal, thru portlets (made from individual workspace smartcut link), so that users can customize their page as needed, Once they login thru intranet, Cookie is set and passed to succeeding smart cut links via secured http headers. This part is fine, but mainly running into issue with streaming several multiple web-analysis reports at a time,+ we are using Iframe to display and stream multiple individual reports on to one page, but unfortunately all Iframes are sharing one session rather than creating individual session, mostly because of limitation of current web analysis system architecture and IE browser behavior with sessions .
    Which Hyperion reporting tool does allow to stream multiple reports  at a time? ideally we want to create Iframe of each workspace report so that users can customize and pick portlets as needed. To stream multiple reports at a time.
    Problem Description: Hypeiron Web Analsysis, Smart cut reports incorrectly rendering images and intermixing dash boards on POV changes upon multiple reports being diplayed at one time thru Iframe's, issue seem to mostly relate to Hyperion using single session rather to multiple session when displaying several web reports at a time.
    Steps Needed To Reproduce:
    User logs into workspace.
    user click on expolore and able to view the report without any issues.
    When right on any of the report and select properties.
    Select the SmartCut url and paste it in the Internet explorer.
    The webanalysis report opens without any issues.
    Similarly user copies the smartcut url for a different report and paste the link on a different tab or new window of same browser.
    The report on the first tab gets over written of the report of the second tab of the browser.
    The issue happens when two different reports and opened on a browser with multiple tabs. The reports get over written.
    Oracle development answer:
    In the described scenario opening new browser window does not spawn a separate independent browser session. A new browser window is supplied with URL pointing to the same domain, so all browser cookies including the "ORA_WA_SID" (WA session cookie) are shared between the windows. But multiple application instances cannot run in the same browser session simultaneously because of session sharing. This is not actually a defect, but rather a limitation of current system architecture and browser behavior. And there is no way to fix it programmatically on the product side.

    Hi MeHyper,
    Your current arrangement puts most of the session handling and persistence on the client. This forces you to accept whatever the client decides to persist and propogate between browser elements (in this case iframes).
    My approach would be to:
    Consider coding your portlets to manage the sessions. Manage using a somewhat stateless strategy so that each request to the server requires a login and connect, retrieve, and disconnect. Each Iframe should access a different portlet url (or provide a different query) based on its content.
    This way, in theory, you can invalidate the sessions and related cookies and update the various report elements independently.
    Is smartview out of the question here?
    Regards,
    Robb Salzmann

  • Hyperion S9 BI+ 9.3 Financial Reporting Scheduler is stooping automaticall

    Hi while starting services Hyperion S9 BI+ 9.3 Financial Reporting Scheduler Server is stopping automatically why this is and if i launch FR Studio i am getting a error message "You are not authorized person. Contact your administrator" could I know the reason and how can i rectify.

    Hi,
    I believe- What you mentioned is a classic example of Memory leakage with Windows-Hyperion duo.
    We used to face similar situation with Windows & Hyperion EIS. So, during the off hours, a scheduled batch script kills
    the process & re-start the service +(as you seem to be now doing manually)+ .
    TASKKILL /F /IM olapisvr.exe > %LogFile%
    NET START "Hyperion Analytic Integration Server"  >> %LogFile%
    I'm not quite comfortable with this solution. However, we didn't face problems after doing this.
    - Natesh

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Report not opening in windows 8

    hello all,
    on some machines report not opening after windows 8 installed can anyone had this issue .
    Please help..
    Dilip Patil..

    Hi Dilip,
    Based on my understanding, you want to open reports on some machines which have Windows 8 installed, right?
    Regarding the issue, we couldn’t understand it clearly, and we would like to confirm something from you below:
    1. Which method have you tried to open reports, SSDT, report manger or another application?
    2. Have you installed SSRS on the machine which have Windows 8 installed? If so, have you checked if the version of SSRS is supported on Windows 8? 
    3. On which version of SSRS you create those reports? If those reports open with a higher version of SSRS, you should refer to this
    article to upgrade the reports firstly.
    So in your scenario, please provide more information about the issue then we can understand the issue clearly.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • After mistakenly clicking a link, my safari does not open automatically and unexpected webs open up.

    I am using MacBook Air with Yosemite OS. After mistakenly clicking a link, my safari does not open automatically and unexpected webs open up. Could you please give me suggestions on how to fix this problem? Thank you

    That's a bit vague, but you may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Under 9ias , Reports 6i not opened in pdf

    My application is written using Developer 6i and runs under 9ias on Windows 2000. I call reports from within my forms and use web. show document to open up and display the generated pdf file. This opens up another browser and runs acrobat reader from within the browser to display the report. This works fine.
    My application is used by 4 users named A,B,C & D.
    A & D operating system is windows 2000 profession.
    B operating system is windows 98.
    C operating system is windows xp.
    The problem I am facing is ..
    1) A & D can run the reports and reports displayed in the PDF,this work fine. But after later date, when D try to run the reports,it can't display in pdf .But A can run the reports and it displayed in Pdf.
    2) B & C Can't run the reports from the starting day .The reports not displayed in pdf.
    Has anyone else experienced this and if so, what causes it and how can it be fixed ?
    Many Thanks.

    Finally got the files. All the xml and the pdf outputs
    are created in the c:\winnt\system32 in the 9ias server.
    But I've no idea why the output is created there instead
    of reports60_path and how to change this setting.
    May be 9IAS server exe is in that folder. I would be very
    happy if someone could explain the reason and how to change the setting.
    Regards
    Sridhar

  • BPC 7.0 Reports not opening

    We have experienced reports not opening.  The problem appears to be when the combination of folder name and file name length is long.  Has anyone else experienced this and know what the max character length limitation is?

    Chicago, eh? Is this a union shop?
    Do the server diagnostics look the same before and after 9 am? What time in the evening does it stop working?
    If not the server, maybe there's a network traffic limitation that's blocking access.
    If you have Excel and the client installed on the server itself, try logging in from the server and see if that works. (If not, try just the BPC web browser functionality.) If you can log in from the server, but not from other client machines, there's something going on with your network.

  • Links in mail will not open

    After my so-called "techie" son (knows everything, 16 years old) used my MBP last week, I have a new problem.
    Links in email will not open when I click on them, I have to copy and paste them into the browser.
    I use Firefox 11.0.
    Mail for mac 4.5,
    Snow leopard 10.6.8.
    I don't see in firefox preferences or mail preferences where to fix this.
    Thanks, anyone, for taking a minute to help.

    LaunchSafari (yes, Safari).  Open its preferences, General.  What does it say for the default web browser?  If it doesn't specify your desired browser, i.e., Firefox, change it to that.  Then quit Safari, relaunch Mail, and see if your links work now.

  • "Adobe Reader could not open 'filename.pdf' because it either...

    The full error message reads: "Abobe Reader could not open 'filename.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)."
    I understand this is a common problem, but I have yet to see a clearly defined answer. I am running the latest update of Abobe Reader 9.3 on Windows 7. It didn't work on other updates either.
    I received the file as an e-mail attachment, along with some other PDFs. All of them can be opened except this one. I tried forwarding the e-mail to other servers (i.e. Hotmail) and I couldn't open it there either.
    I have tried opening it directly from the Adobe Reader program, latest version of IE, and latest version of Firefox. I have tried unchecking the "Display PDF in Browser" box under Edit > Preferences. I have tried changing the file name and adding ".pdf" to the end of it. Nothing works.
    The file says "27 KB" which sounds a little low to me since this should be a fair-sized document, but doesn't read "0 KB" as others with this problem have noted.
    Any help with this issue so this question can finally be resolved for the hundreds of people that have had this error message would be greatly appreciated.
    Thanks.

    brittnic2008 wrote:
     Any help with this issue so this question can finally be resolved for the hundreds of people that have had this error message would be greatly appreciated. 
    Thanks.
    There has been tons of help on this issue.
    The official word is, ZIP the PDF's before emailing or post them to a website and email a link to them. Some email clients use encoding (Adobe can't do anything about that part) and when the file is decoded at the other end, it is corrupted. It can happen to some of them or all of them.

  • My reader will not open a PDF file that I have downloaded from a government web site (an application form) - it states that the file is not good.  I can open on the web site but not from my mac computer

    My reader will not open a PDF file that I have downloaded from a government web site (an application form) - it states that the file is not good.  I can open on the web site but not from my mac computer.

    Maybe this: http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html ?
    Do you have a link to that document?

  • Adobe Reader could not open 'cpd39346.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    I use a Macbook Pro w/ OS X.  I am unable to open a .pdf file downloaded from the internet, Adobe always shows "@Adobe Reader could not open 'cpd39346.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    Are you trying to open a pdf within a browser (clicking a link)? If so, which browser?

  • IE will not open a pdf or word doc

    IE will not open a pdf or word doc
    I’m trying to make a quick cd for a portfolio
    What I’m having trouble with is I have only 2 buttons
    and one opens a pdf and the other opens a word doc. With firefox
    the buttons work with IE they don’t.
    I used set nav bar image in the behaviors to create the
    button, I even tried just linking it using the properties. Also
    tried linking in fireworks.
    I will be putting the file on cd with a autorun
    Thanks for any help

    Enter the text of the IE error message at this link, to see
    if Microsoft has a fix
    http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US

  • Firefox will not open any pdf files

    FF will not open any pdf files with built in viewer or adobe. I have set applications in all different ways with no luck. PDF works with IE.
    I have ff 33.1.1 and Win 7 and i have tried all suggestions concerning pdf. I even downloaded ff again, uninstalled oldff, and installed new. no luck. all i get is a pop up stating ...download is in progress, please wait.... but it never loads. started after last update. Is ther a way to delete the last update to firefox?
    thanks

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Click the menu button [[Image:New Fx Menu]] and click Options (Preferences for Linux and Mac).
    #In the Options (Preferences for Linux and Mac) window, select the ''Applications'' panel.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right hand side you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Help.  How do I fix this?  Have been using adobe reader opening this template for months and now all of the sudden its not working.Adobe Reader could not open 'NSCAAInteractiveSessionPlan.pdf' because it is either not a supported file type or because the

    I coach youth soccer and use a PDF template to save my sessions in.  Today I got this message when trying to open one of my sessions.
    Adobe Reader could not open 'NSCAAInteractiveSessionPlan.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    How can I fix this?  I have not done anything I don't normally do.

    What is your operating system?  Reader version?

Maybe you are looking for

  • View more details in the SummaryContainerRN

    Hi all, I just started reading about OAF, I dealt with simple personalization and i am trying now to do the following: In each SSHR, there is a top region in which the employee name, number ... etc is displayed. The details we are having now (shown)

  • Adobe reader x and xi

    I am currently running Adobe Reader XI on windows 7.  For some reason my developers want to change the default setting of edit/prefences/documents/PDF/a View Mode/View documents in PDF/a mode: from "only for PDF/A documents" to "Never".  Can this be

  • Cursor skipping under load with Intel KMS

    This is driving me nuts... Performance with Intel drivers and KMS is usually decent. However, under certain loads - most notably, starting Wine - the cursor skips and freezes nonstop. This wasn't an issue when I was able to disable KMS, but now that

  • Ipad (original) not recognizing ANY wifi

    hello everyone. After 3 years of flawless performance, my iPad gave up. 2 days ago, it decided not to connnect to the wifi at home (or at work). Tried all the things I could think of. Reset network. Airplane mode. Power down. Restart. Unplug airport

  • Import ...errorORA-12899

    Hi.. I am trying to import and facing issue in it.. 9i to 10g import problems,importing 9i dumpfile to 10g 9i is in single-byte charecterset,10g is multi-byte charecterset 9i is having prod schema,we have to dump into 10g dev schema 9i is in windows,