Report Image not clear in Oracle Apps

Hi guys
I wonder if you can help me. I have a report with a logo. The report works fine but when I run it in Oracle Apps, the logo comes out blur. My output is PDF. Is there a way I can make the image look clear?

Refer
How to CLEAR all the items in OAF on a button click
Clear Button Issue
-Anand

Similar Messages

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • Record fetch is not correct in oracle apps report

    Hi ALL,
    i developed report in oracle apps in that i used one customized table which is poulated in after parameter form trigger and used the table in main data model.
    when two user fire this report ,data in the report mismatch.
    please help me regarding this how to rectified this.
    Thanks,
    Mack

    Hi Mack,
    you can add one more column "request_id" in the custom table and populate it along with the report query ouput data. while displaying the data for any particular user/request, use request_id to fetch correct data for the reports.
    Regards
    Imran

  • XML Report in Arabic login in Oracle apps

    Hi,
    I have created a XML report in Oracle apps, the data is coming properly from english login.
    But when we login from Arabic Login then report does not show any data.
    The data does not come even after hard coding the values.
    Any clue for the issue..
    Below is the main query in the report.
    SELECT
    PAC1.PAYROLL_ID ,
    PAC1.PAYROLL_ACTION_ID ,
    HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
    PRO.PAYROLL_NAME
    ,TO_CHAR(SYSDATE,'DD-MM-YYYY') REPORT_DATE1
    FROM pay_payrolls_f pro,
    pay_payroll_actions pac1
    ,PER_TIME_PERIODS_V V
    WHERE pac1.payroll_id = pro.payroll_id (+)
    AND pac1.effective_date BETWEEN pro.effective_start_date (+) AND pro.effective_end_date (+)
    AND DECODE( PAC1.ACTION_TYPE, 'H', NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id), HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE', PAC1.ACTION_TYPE)), 'T', DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS,'SLA_MODE=Y'), 0, HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'GL'), NULL, HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'GL'), HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'SLA')) , HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE', PAC1.ACTION_TYPE)) = 'Run'
    AND PAC1.Payroll_id = 61--:P_PAYROLL_ID
    AND PAC1.time_period_id = V.time_period_id
    AND to_char(v.start_date,'MM-YYYY') = '01-2013'--:P_MONTH

    in the next time use EBS related forums - https://forums.oracle.com/forums/category.jspa?categoryID=3
    BTW
    looks like that for Arabic language you haven't some data
    in your main query you have PER_TIME_PERIODS_V which based on HR_LOOKUPS which depend on session language
    CREATE OR REPLACE VIEW HR_LOOKUPS
    where FLV.LANGUAGE = userenv('LANG')
    ...so check data in HR_LOOKUPS for Arabic language
    you can check it by query without PER_TIME_PERIODS_V
    also you can modify your main query like
    select t.PAYROLL_ID,
           t.PAYROLL_ACTION_ID,
           t.PERIOD_NAME,
           t.PAYROLL_NAME,
           t.REPORT_DATE1
      from (SELECT PAC1.PAYROLL_ID,
                   PAC1.PAYROLL_ACTION_ID,
                   HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
                   PRO.PAYROLL_NAME,
                   TO_CHAR(SYSDATE, 'DD-MM-YYYY') REPORT_DATE1,
                   PAC1.time_period_id
              FROM pay_payrolls_f pro, pay_payroll_actions pac1
             WHERE pac1.payroll_id = pro.payroll_id(+)
               AND pac1.effective_date BETWEEN pro.effective_start_date(+) AND
                   pro.effective_end_date(+)
               AND DECODE(PAC1.ACTION_TYPE,
                          'H',
                          NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id),
                              HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                       PAC1.ACTION_TYPE)),
                          'T',
                          DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS, 'SLA_MODE=Y'),
                                 0,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 NULL,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'SLA')),
                          HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                   PAC1.ACTION_TYPE)) = 'Run'
               AND PAC1.Payroll_id = 61 --:P_PAYROLL_ID
            ) t
      left outer join PER_TIME_PERIODS_V V
        on (t.time_period_id = V.time_period_id AND
           to_char(v.start_date, 'MM-YYYY') = '01-2013' --:P_MONTH
           )

  • Podcast feed images not displaying in Podcast app

    Several of the podcasts I subscribe to are not displaying the feed image in the Podcast app on my iphone.  These are podcasts that I get from Itunes and I can subscribe, download, and play them fine.  They have an image in itunes but for some reason, they do not display in the app.
    An example is 60 Minutes - Full Audio and HandgunWorld Podcast.
    Has anyone else had this issue?  I would appreciate any advice.  Right now I just have gray boxe tiles with the name of the Podcast.  These are podcasts I subscribe to from my iphone.
    Thanks,
    Rick

    Ok finally figured it out.  Nothing to do with images at all. The imagePath was set in the app, but even though the default that was set to was the correct path it was being overridden by a flashvar.  And each of the 3 loaders in the wrapper were setting it differently.  The one for when you didn't have the right flash version wasn't setting it at all.  The one for when you had the right flash version was setting it correctly, and the noscript version was setting it incorrectly.
    It was the noscript version that was running for safari even though javascript was enabled.

  • Report Cache not clearing

    Created a report that executes 3 stored procedures:
    first one deletes data from a tablex
    second one adds data to tablex based on a query
    third one adds data to tablex based on different query
    report is run based on a date range.
    date range1 returns proper results
    date range2 returns proper results
    date range1 returns double results?  cache flag is set to clear.  according to rules, if parameterized, report should not use cache.
    Help?

    there is one dataset -> tablea
    parameter date range - 06/30/2014 - 07/24/2014, returns 24516 records   first time program is executed
    parameter date range - 05/23/2014 - 06/29/2014, returns 29823 records   second time program is executed
    parameter date range - 06/30/2014 - 07/24/2014, returns 49032 records   third time program is executed    --> expected 24516
    report is defined with sql statements as follows:
    stored procedure execute a delete data from tablea
    stored procedure execute sqla insert to tablea
    stored procedure execute sqlb insert to tablea
    produce report layout
    I view the data in tablea in sql to know my record counts.

  • Dynamic Graphics - Image not clear in HTML page

    Hi,
    i tried to generate the image from Dynamic Graphics( 3D Dial gauge). It creates successfully but when i show this image in HTML page it is not clear i.e values and arc are showing like points and words in description also shows as splited. How to avoid this? How to display images clearly?
    regards
    senthil

    I don't know if this will help, but you may want to try rendering the image larger than the size you will display on the page.
    If you do a search in the forum for 'svg' you might find some usefull threads.

  • 9i Reports images not displayed

    I have a report that generates a graph
    It is working fine in pdf format but in HTML format it works only on the App Server or the Infrastructure box
    Could somebody help me with this
    Thanks in advance
    Santosh

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • IMac to lcd tv image not clear.  How do I fix that?

    I have a mini dvi to s-video/component adapter to send signal to a 22" lcd tv in another room. the tv is capable of the same resolution (1680x1050) as the imac display. for some reason the image is not as sharp and clear on the tv as it is on the imac, regardless if I use the component out or s-video out. I've adjusted settings in the display as well. how do I get the image on the lcd tv to look as clear as it does on the computer? Will the mini dvi to dvi and dvi to hdmi adapters change everything? thanks

    Your TV maybe capable of the same resolution as your mac, however, the s-video/component is your bottle neck. Despite the fact that your TV matches your monitor resolution, s-video/component is only capable of producing a standard definition image (480i @ 640x480). Your TV is stretching the image to match its resolution which is why it's coming out so blurry.
    If your TV has any extra HDMI inputs (or one of the rare that have a standard DVI port), you might want to look into getting a mini-DVI to DVI adapter if your TV has a DVI port. If it does not have a DVI port, then you'll need to get a mini-DVI to DVI adapter as well as a DVI to HDMI adapter. Using these methods should match your resolution and everything will look like they should.
    Hope it helps =]

  • PROBLEM WITH XML PUBLISHER AND GRAPH NOT DISPLAYING IN ORACLE APPS

    Hi
    All you XML Gurus here. I have a problem, When i create a report in XML Publisher desktop i can see a graph im putting into the report on preview and works fine. But when i upload the report as a rtf file into Oracle applications i can see everything else the table logo and stuff .. But just not the Graph Itself when run on the concurrant manager....
    Problem number 2
    Is there a way that i can use XML Desktop and create a line graph with 2 lines rather than 1 plotting
    here is my xml for graph i have made with one line
    chart:
    <Graph>
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <LocalGridData colCount="{count(.//SELF_OTHERS)}" rowCount="1">
    <RowLabels><Label></Label></RowLabels>
    <ColLabels>
    <xsl:for-each select=".//SELF_OTHERS"> <Label><xsl:value-of select="BEHAVIOUR"/></Label>
    </xsl:for-each>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each select=".//SELF_OTHERS"> <Cell><xsl:value-of select="SCORE"/></Cell>
    </xsl:for-each> </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>
    All help would be much appreciated to my 2 problems....
    Thanks
    Sha

    Hi All
    Will post solution tomorrow or Monday on blog. Heres the chart XML for now.
    chart:
    <Graph graphType="LINE_VERT_ABS"><LegendArea visible="true" />
    <LocalGridData colCount="{count(xdoxslt:group(.//SALE, 'YEAR'))}" rowCount="3">
    <RowLabels>
    <Label>SOFTWARE</Label>
    <Label>HARDWARE</Label>
    <Label>SERVICES</Label>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Label>
    <xsl:value-of select="current-group()/YEAR" />
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/SOFTWARE)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/HARDWARE)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//SALE" group-by="YEAR" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/SERVICES)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>
    with the following data
    <?xml version="1.0" encoding="UTF-8"?>
    <SALES>
         <SALE>
              <YEAR>2006</YEAR>
              <SOFTWARE>1200</SOFTWARE>
              <HARDWARE>850</HARDWARE>
              <SERVICES>2000</SERVICES>
         </SALE>
         <SALE>
              <YEAR>2007</YEAR>
              <SOFTWARE>1000</SOFTWARE>
              <HARDWARE>800</HARDWARE>
              <SERVICES>1100</SERVICES>
         </SALE>
         <SALE>
              <YEAR>2008</YEAR>
              <SOFTWARE>900</SOFTWARE>
              <HARDWARE>1200</HARDWARE>
              <SERVICES>1500</SERVICES>
         </SALE>
    </SALES>
    The latest Template Builder makes this a cinch!
    Regards
    Tim
    http://blogs.oracle.com/xmlpublisher

  • Form is not opening in oracle apps

    Hi,
    I have installed apps 11.5.10.2. installation went successfull with out any issues.
    i am able to open raouf.oracle.com:8000 and able to login.
    Responsibility page is getting opened.
    when i am click to open the form...in any responsibility. netscape navigator
    getting closed...tried with mozilla as well with IE 8..got the similar issue...
    Following error i see in the log file.
    mod_jserv.log
    [06/12/2009 10:43:05:937] (EMERGENCY) ajp12: can not connect to host 123.201.146.30:17000
    [06/12/2009 10:43:05:953] (EMERGENCY) ajp12: function connection fail
    [06/12/2009 10:43:07:031] (EMERGENCY) ajp12: can not connect to host 123.201.146.30:16000
    [06/12/2009 10:43:07:031] (EMERGENCY) ajp12: function connection fail
    Host file entry i have:
    127.0.0.1 localhost raouf.oracle.com
    169.254.25.129 raouf.oracle.com
    123.201.70.57 raouf.oracle.com
    iAS\Apache\Apache\aferror.og
    [Dec 6, 2009 2:21:09 AM GMT+05:30]:1260046269125:Thread[Thread-250,10,main]:-1:-1:raouf:123.201.67.104:8100:16000:UNEXPECTED:[fnd.framework.OAException]:Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: Io exception: Got minus one from a read call; (Could not lookup message because there is no database connection)
    [Dec 6, 2009 2:21:09 AM GMT+05:30]:1260046269125:Thread[Thread-250,10,main]:-1:-1:raouf:123.201.67.104:8100:16000:UNEXPECTED:[fnd.framework.OAException]:Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: Io exception: Got minus one from a read call; (Could not lookup message because there is no database connection)
    Can you please help me on this.
    Thanks

    Hi,
    Host file entry i have:
    127.0.0.1 localhost raouf.oracle.com
    169.254.25.129 raouf.oracle.com
    123.201.70.57 raouf.oracle.comWhy do you have two entries for the same host? Please edit this file, and make sure you have one IP Address for "raouf.oracle.com", run AutoConfig on the database/application tier nodes then try again.
    For the browser, make sure you use a certified client OS/Browser.
    Regards,
    Hussein

  • Crystal Report images not showing up.

    Post Author: cfloss
    CA Forum: JAVA
    I am displaying reports in my web application
    using the Viewers SDK. The reports are being displayed with a frame
    where the image would be and a small red X in the corner. I have
    entries in my web.xml (shown below) that control where the graphic
    files are put, and I see the files show up that match the name I see
    when I do a view source (shown below), but still no image. The folder
    C:\Temp\CrystalReportsImages contains the file crystal63812.png along
    with serveral other .png files with a similar naming pattern. Does
    anyone have any ideas? web.xml fragment
      <context-param>
        <param-name>crystal_image_uri</param-name>
        <param-value>crystalreportviewers115</param-value>
      </context-param>
      <context-param>
        <param-name>crystal_image_dir</param-name>
        <param-value>C:/Temp/CrystalReportsImages/</param-value>
      </context-param>
      <context-param>
        <param-name>crystal_image_no_delete</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>CrystalEnableLogging</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>CrystalExceptionInfo</param-name>
        <param-value>long</param-value>
      </context-param>
      <context-param>
        <param-name>CrystalExceptionLogFile</param-name>
        <param-value>C:/temp/CrystalReports.log</param-value>
      </context-param>
      <context-param>
        <param-name>CrystalGenerateEPFDebug</param-name>
        <param-value>1</param-value>
      </context-param>
    html source fragment
    <div class="ad1209040389468-0" nowrap="true" style="top:8px;left:9px;width:53px;height:54px;">
        <img src="crystalreportviewers115/crystalimagehandler.jsp?dynamicimage=crystal63812.png"
    border="0" width="53px" height="54px">
    </div>

    Post Author: Ted Ueda
    CA Forum: JAVA
    Right-click on the "Red X", copy the complete URL, paste it into the web browser address field where the viewer is displayed, then go.
    Do you get an error message?
    Is the crystalreportviewers115 folder where it's expected?  Is the crystalimagehander.jsp file where it's expected?  Ensure you've placed the crystalreportviewers115 folder in the expected location.
    Do you happen to have crystalreportivewers115 in a different web app?  You can try FileMon:
        http://www.microsoft.com/technet/sysinternals/systeminformation/filemon.mspx
    to ensure that the web app process is trying to retrieve the image from the correct location.
    Sincerely,
    Ted Ueda

  • Application Services Not Starting After Oracle Apps 11i Clone

    Hi All,
    Can any one help me out on this ........
    EBS: 11.5.9
    Database: 9.2.0.3.0
    After the cloning oracle Application Apache, Concurrent managers and other services are up and running perfectly but my forms and reports services are not coming up.
    It is showing time out when i tried to start the services. Please find the below
    Executing service control script:
    /disk1/oracle/dev1comn/admin/scripts/dev1_dataprepdev1/adfrmctl.sh start
    script returned:
    ERROR : Timed out: Interrupted Exception
    Command line may not be valid
    Executing service control script:
    /disk1/oracle/dev1comn/admin/scripts/dev1_dataprepdev1/adrepctl.sh start
    script returned:
    ERROR : Timed out: Interrupted Exception
    Command line may not be valid
    Executing service control script:
    /disk1/oracle/dev1comn/admin/scripts/dev1_dataprepdev1/adfmcctl.sh start
    script returned:
    ERROR : Timed out: Interrupted Exception
    Command line may not be valid
    Executing service control script:
    /disk1/oracle/dev1comn/admin/scripts/dev1_dataprepdev1/adfmsctl.sh start
    script returned:
    ERROR : Timed out: Interrupted Exception
    Command line may not be valid
    Thanks in advance...
    Sai

    976630 wrote:
    Hi Sir,
    The Issue get resolved
    i checked the dbc file and xml file for the password of Guest user it is same...
    But it is not default ORACLE. Checked in dbc , xml and fnd_user table. Changed it to default ORACLE in xml file and ran the adautocfg.sh
    The issue get resolved. Thanks for your help.Thanks for the update and for sharing the solution!
    Regards,
    Hussein

  • Images not saving in iPad app

    Whenever I save a screenshot or an image from internet it doesn't appear in the photos app. I am also not able to take photos on camera?
    It is kind of strange. New iPad and hasn't been  thrown around or anything.
    Thanks for your help.

    Try closing the Photos and Camera apps completely and see if they then work properly : from the home screen (i.e. not with the Photos or Camera app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Camera and Photos apps to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • SQL report image not showing

    When generating a SQL report, external images from a Sharepoint image library are not shown (red X).
    An unattended execution account is set correctly, the image exists. I have tried with setting the UseSessionCookies to true/false. nothing seems to work.
    Anyone any ideas wath else I can try?

    Where you able to solve it . Same thing is happening to me.
    Thanks

Maybe you are looking for

  • Excise invoice - basic excise duty not appearing

    Hi, I am creating excise invoice in ECC 6.0 . Education cess is appearing in the excise invoice. However, basic excise duty and secondary education cess are not appearing. I understand that some notes have to be applied for secondary education cess. 

  • Single App Creative Cloud Plan - no Lightroom

    Hi, I live in Australia and I just wanted to purchase Single App Creative Cloud plan with Lightroom. There are 11 apps to chose from, but no Lightroom. Is it not available in Aus? The apps I can choose are: Photoshop After Effects SpeedGrade Adobe Pr

  • OJ6500 Wireless won't print black anymore

    It sayd the cartridge is full, I even put another new one in there, but when I go to print the windows test page, only the color "flag" prints out.  Any other page only prints the color - not the black stuff.  Is there anything I can do to fix this o

  • Save as pdf option doesn't work

    I'm running OS X 10.3.9 and MS Word 2004. Whenever I try to use the new option in the Print dialog "Save as pdf" the button is always greyed out. I've gone through all of my on-line help options and can't find any help with how to make this work. Do

  • New Nintendo 3DS XL - Page not Loading?

    Just looking to see if anyone has information about the New Nintendo 3DS XL being put online? Best Buy's whole 3DS system seems down. Wondering what's going on and when we should expect it to be fixed? Please let me know if this is the wrong place to