Preview / Desktop query

I have a jpeg of 87.5MB which I use as a Desktop picture - it displays just fine.
Just now, I opened it in Preview and again, it opens just fine - nearly.
Imagine the Preview picture as split into rectangles three high by five across - the bottom left rectangle is grey and doesn't display in the picture.
It does display correctly as the Desktop.
I closed Preview, selected another file as the Desktop and then reopened my picture in case there was a conflict between the two - Preview was still that "one block" missing.
I've checked that it is indeed the same picture and not another copy of it and both displays di indeed come from the same source file.
I've also opened several other similar pictures in preview, and then selected them as the Desktop and they all display just fine.
I admit, though, that none of them are any gretaer than 37.8MB as I have no other picture of anywhere near 87.5MB - could it be a limitation of preview which won't allow it to open such large files?
Why the display difference?

Hi Tamir,
sigh...
tx for writing...
i just found this post.... says if parm is used in calc, cannot be made optional...
Parameters - do they have to be mandatory?
tx, s

Similar Messages

  • Print Preview for Query Manager

    Hi all
    When I open up query manager and run a report query it opens up the correct information however when I click on print preview it brings up a window which says print preferences and has a selection of window, table, or selection area.  I want the selection to be table permanently.
    What I want to know is what do I need to do to skip past that window and take me directly to print preview in the table format?

    There is no option available to skip the print preferences window or to make the selection to be permanent.
    As an alternate, Export the result to Excel and print from there or
    Create a Query Print Layout for the Query by clicking 'Create Report' button in the 'Query Manager' window, and print the Query Print Layout by selecting  Tools -> Queries -> Query Print Layout

  • Thunar doesn't preview desktop icons

    I'm not sure if I am the only one having this problem, but for me Thunar refuses to generate previews for files sitting on my desktop. I can see previews just fine when I open Thunar as a windowed application, but not when it is managing the desktop:
    Does anybody have this problem? Is there a solution?
    Also, as a side question, is there any way to create a custom thumbnailer for arbitrary file types?
    Last edited by Blender (2011-12-22 16:46:55)

    Desktop icons are managed by xfdesktop, not thunar; and it's unable to to display thumbnails. There's a patch out there -- I have not tried it yet -- see XFCE bug 4344.

  • Photoshop CC "Open" dialogue Window preview image query.

    Hello and Good Evening.
    I am using Photoshop CC on an iMac, with Mountain Lion. I have no issues with the software and it runs perfectly, so this is just a query really.
    If I save an image which has Alpha Channels contained within it, following processing, when I then reopen the image, the preview of the image in the "Open" dialogue window appears as a sort of negative, almost as if it has one of the masks on it. The image opens fine though, and looks as I left it.
    If I save the image without Alpha Channels, by unselecting them in the Save As dialogue window, and saving the image as a copy, when I reopen this one, the preview of the image is fine.
    I'm hoping someone may have some ideas.
    I have attached a couple of images below to illustrate;
    With Alpha Channels:
    Without Alpha Channels:

    Hi Chris
    Thank you for the reply.
    There are definitely Alpha Channels in the image as I created them during the retouching.
    I think you're right, as I decided to investigate further and open Bridge, (which I never normally use), and the previews in that show up correctly.
    So overall not too fussed about it as long as the actual image file is fine, which it is.
    Thank you again.
    Much appreciated.
    Mike

  • 10g Dev Preview -- sub query problem

    I'm not sure if this is the place to report bugs or problems with the 10g developer preview. But here goes.
    I have some code that used to work. The idea is to find "task" objects that are not assigned to anyone, ie, have no "task assignment" records pointing to them. This code used to work. It creates an expression that when queried returns all Task objects that are not in the subQuery which fetches task assignments.
    ExpressionBuilder eb = new ExpressionBuilder();
    ReportQuery queryAssigned = new ReportQuery(TaskAssignment.class, new ExpressionBuilder());
    ReportQuery queryAssigned = new ReportQuery(TaskAssignment.class, new ExpressionBuilder());
    queryAssigned.addAttribute("ID", eb.get("task").get("ID"))
    return eb.get("ID").notIn(eb.subQuery(queryAssigned));
    When I use TOPLink 10g, however, I get the following error:
    [junit] Query: ReadAllQuery(com.marketsoft.workflow.Task)
    [junit] Local Exception Stack:
    [junit] Exception [TOPLINK-6015] (Oracle TopLink - 10g Developer Preview 3 (10.1.3.0 ) (Build 041116)): oracle.toplink.ex
    ceptions.QueryException
    [junit] Exception Description: Invalid query key [task] in expression.
    [junit] Query: ReadAllQuery(com.marketsoft.workflow.Task)
    [junit] at oracle.toplink.exceptions.QueryException.invalidQueryKeyInExpression(QueryException.java:491)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.validateNode(QueryKeyExpression.java:555)
    [junit] at oracle.toplink.expressions.Expression.normalize(Expression.java:2587)
    [junit] at oracle.toplink.internal.expressions.DataExpression.normalize(DataExpression.java:349)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:369)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:356)
    [junit] at oracle.toplink.internal.expressions.DataExpression.normalize(DataExpression.java:343)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:369)
    [junit] at oracle.toplink.internal.expressions.QueryKeyExpression.normalize(QueryKeyExpression.java:356)
    [junit] at oracle.toplink.internal.expressions.SQLSelectStatement.normalize(SQLSelectStatement.java:951)
    [junit] at oracle.toplink.internal.expressions.SubSelectExpression.normalizeSubSelect(SubSelectExpression.java:123)
    [junit] at oracle.toplink.internal.expressions.ExpressionNormalizer.normalizeSubSelects(ExpressionNormalizer.java:82)
    [junit] at oracle.toplink.internal.expressions.SQLSelectStatement.normalize(SQLSelectStatement.java:982)
    [junit] at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.buildNormalSelectStatement(ExpressionQuery
    Mechanism.java:223)
    [junit] at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.prepareCursorSelectAllRows(ExpressionQuery
    Mechanism.java:587)
    [junit] at oracle.toplink.queryframework.CursorPolicy.prepare(CursorPolicy.java:137)
    [junit] at oracle.toplink.queryframework.CursoredStreamPolicy.prepare(CursoredStreamPolicy.java:93)
    [junit] at oracle.toplink.queryframework.ReadAllQuery.prepare(ReadAllQuery.java:571)
    [junit] at oracle.toplink.queryframework.DatabaseQuery.checkPrepare(DatabaseQuery.java:367)
    [junit] at oracle.toplink.queryframework.ObjectLevelReadQuery.checkPrepare(ObjectLevelReadQuery.java:506)
    [junit] at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:537)
    [junit] at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:408)
    [junit] at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1977)
    [junit] at oracle.toplink.publicinterface.Session.executeQuery(Session.java:973)
    This maybe isn't that surprising. I see that the unbound ExpressionBuilders might be causing problems. However, which I switch to something a little bit more like what I see in the examples:
    ExpressionBuilder eb = new ExpressionBuilder();
    ExpressionBuilder assignBuilder = new ExpressionBuilder();
    ReportQuery queryAssigned = new ReportQuery(TaskAssignment.class, assignBuilder);
    queryAssigned.addAttribute("ID", assignBuilder.get("task").get("ID"));
    queryAssigned.useDistinct();
    return eb.get("ID").notIn(eb.subQuery(queryAssigned));
    In this case, it seems to generate messed up SQL where the table name goes missing:
    Exception [TOPLINK-4002] (Oracle TopLink - 10g Developer Preview 3 (10.1.3.0 ) (Build 041116)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-00903: invalid table name
    Error Code: 903
    Call:SELECT COUNT(*) FROM TASKS t0 WHERE ((t0.ID NOT IN (SELECT DISTINCT t1.ID FROM )) AND (t0.ITEMTYPE = ?))
         bind => [Task]
    Query:ReportQuery(com.marketsoft.workflow.Task)
    Local Exception Stack:

    Charles,
    I couldn't reproduce your problem. I used an employee example in which Employee has 1:m relationship with PhoneNumber. My code and sql are as follows:
         ReadAllQuery query = new ReadAllQuery(Employee.class);
         ExpressionBuilder emp = new ExpressionBuilder(Employee.class);
         ExpressionBuilder phone = new ExpressionBuilder();
         ReportQuery subquery = new ReportQuery(PhoneNumber.class, phone);
         subquery.addAttribute("id", phone.get("owner").get("id"));
         subquery.useDistinct();
         Expression expression = emp.get("id").notIn(subquery);
         query.setSelectionCriteria(expression);
    Vector employees = (Vector)getSession().executeQuery(query);
    SELECT t0.VERSION, t1.EMP_ID, t0.L_NAME, t0.F_NAME, t1.SALARY, t0.EMP_ID, t0.GENDER, t0.END_DATE, t0.START_DATE, t0.MANAGER_ID, t0.START_TIME, t0.END_TIME, t0.ADDR_ID FROM EMPLOYEE t0, SALARY t1 WHERE ((t0.EMP_ID NOT IN (SELECT DISTINCT t2.EMP_ID FROM PHONE t4, SALARY t3, EMPLOYEE t2 WHERE ((t2.EMP_ID = t4.EMP_ID) AND (t3.EMP_ID = t2.EMP_ID)))) AND (t1.EMP_ID = t0.EMP_ID))
    Shanno

  • Running Discoverer Desktop query.... via command line

    Hi Everyone,
    Hope all is well,
    I have learned how to run Discoverer using command line.
    My question is:
    ===========
    When you log into Discoverer manually, the parameters values that were last used in the last run display when
    the query opens....
    When i run Discoverer command line, i have to explicitly mention all the parameter names and their values
    If i do not mention the parameters, i get an error message: unresolve parameter...
    I'd really like to run the query command line style WITHOUT mentioning parameters, and wish Discoverer to run
    the query with the default parameters....
    Is this possible...
    Thx for your ideas and advice, sandra

    Hi Tamir,
    sigh...
    tx for writing...
    i just found this post.... says if parm is used in calc, cannot be made optional...
    Parameters - do they have to be mandatory?
    tx, s

  • MDT(Manager's Desktop) Query

    Hi,
    Can anyone tell me how to view the SAP Program behind the MDT portal.?
    When i try to view the source by right clicking on the portal,i get some javascript.
    I am not able to understand that piece of code since i am an abaper.
    Pls let me know how to view SAP Code beind the MDT portal?
    Its urgent..
    Regards,
    Rohan

    Hi Rohan,
            Program name for MDT portal is SAPLMANAGERSWORKBENCH. You can view the same by clicking System and then on Status

  • Error while executing query at a user

    Hello Experts,
    I am getting error while previewing the query at one of my user ERROR is: Error while connecting the read-only DB user; check that the read only DB user is assigned to database. 110.
    Help Required !

    Log in as a super User
    Navigate  to Authorisations on path
    Administration > setup > Authorisation
    Navigate to the user facing the issue  Navigate to  Reports and
    Give Full authorization to
    Query generator
    Query Wizard
    Query Manager.
    This should resolve your issue.

  • BI Template Preview Failing with Namespace error

    Narrowed down my complex report problem to this example -
    1. BI 11g desktop version installed, working with 12i
    2. Created an HelloWorld.rtf from following HellowWorld.xml, validated no errors, preview in PDF from desktop - worked fine.
    3. Created data definition and template in Oracle. Uploaded rtf and xml file.
    4. While preview - exception oracle.xdo.parser.v2.XPathException: Namespace prefix 'ref' used but not declared.
    This xml file provided in BI sample data. When I uploaded Oracle provided rtf and xml it works fine. That means xml file is good, template and data definition are good.
    Here is how i am created template -
    1. Open word 2007
    2. Load xml data, loaded successfully
    3. Open Table/Form - Drag row set - select all nodes
    4. Save
    5. Validate and preview desktop successfully.
    6. Error only after uploading to Oracle
    BI Option - i have right jre path, version 1.6.02. So looks like no issues there....
    What i am missing here? Appreciate your help.
    XML:
    <?xml version="1.0" encoding="UTF-8"?>
    <DATA>
    <NAME>Template Expert</NAME>
    <DESCRIPTION>Congratulations on your first Template</DESCRIPTION>
    </DATA>

    Hi,
    Please add the sapmsSID entries for both systems (java and abap) in the /etc/services file of BOTH SERVERS. This means that each server should have entries for every system in your landscape.
    Additionally, please ensure that this is set to 36<NN> and not 8100 as you mentioned. The reason is that 8100 is ABAP HTTP port, but 36<NN> is message server port. These two are different.
    Try this.
    Regards,
    Shitij

  • A filter value for Query is set with some value automatically

    Hello SAP sourcing Guru!
    I created a query which has several filters.
    Some of Filter's type is VLV.
    When I preview the query somehow the filter values are already set with some value even though I did not set the default value.
    For example, filter name is Region and there are four regions: Asia, NA, Europe, and SA.
    I want to select one of them from drop-down menu. But Asia was already selected when I clicked the preview button for the query. I want to see "Please Select" instead of Asia from drop-down menu. I did not select "Prefill value from cache" for the filter. I made the filter Optional only. I did not set Default Value either for the filter.
    Any clues?
    Thank you for your response in advance.

    Hi,
    In the Default value field of the filter prompts, you need to mention the Class Reference ID of the corresponding field. E.g., if you have Contract document phase as a filter, then in that if you want to display a blank or none value, then you should use null:2016.
    Similarly for vlv type, the system has a value 616. Hence if you want to display a None value insteead of Asia, use the following in the Default value field:
    0:616:null.
    The way to find the class reference ID is to goto the RG > Class Reference > Look for the field that you are attempting to default on.
    Hope this helps,
    Vikram

  • Query iview error

    Hi all,
    I set up an EP6 SP11 system connecting to my BW server.  All the connector tests are good and I'm able to upload roles from the BW server.
    When I try to create and preview a query iview, I get an error: No response from the backend application
    In the DQE logs, there's this exception:
    <QUERY_SERVICE.ERROR> Physical group has an access pattern which has not been met: group(s) [SIDCLNT300.T0D_SHIPTO]; access pattern(s) [[SIDCLNT300.T0D_SHIPTO.T0LONGITUDE], [SIDCLNT300.T0D_SHIPTO.T0LATITUDE],
    in
    com.metamatrix.query.optimizer.relational.rules.RuleAccessPatternValidation.execute(RuleAccessPatternValidation.java:60)
         at com.metamatrix.query.optimizer.relational.RelationalPlanner.executeRules(RelationalPlanner.java:500)
    Any ideas?  Thanks.

    Thanks for the help Michael. Here is the xml file, I have also sent it to your email address.
    Cheers,
    faB
    - <GenericCreator author="XML Creator" version="XML Automatic Creation" mode="clean,execute" report.level="success" createMode="1" default.locale="en" ignore="false">
      <Property name="parent1" value="pcd:portal_content/XXX/XXXXXX/IVIEWS" />
    - <Context name="qtf" objectClass="com.sapportals.portal.iview" create_as="0" template="par:/applications/com.sap.pct.srv.portaldataviewer/components/SAPQueryTemplate" parent="$">
    - <Attributes>
    - <Attribute name="com.sap.portal.private.iview.PropertiesUrl" type="string">
      <AttributeValue value="pcd:com.sap.portal.system/applications/com.sap.pct.srv.portaldataviewer/components/SAPQueryTemplate" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_WORKSPACE" type="string">
      <AttributeValue value="G" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_VARIANT" type="string">
      <AttributeValue value="TEST" />
    - <Attribute name="personalization" type="string">
      <AttributeValue value="NO_DIALOG" />
      </Attribute>
      </Attribute>
    - <Attribute name="PDVParameterQUERY_NAME" type="string">
      <AttributeValue value="ZQ_ECCSPO_01" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_USERGROUP" type="string">
      <AttributeValue value="ECCSPO" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_CREATE_SELTAB_FM" type="string">
      <AttributeValue value="" />
    - <Attribute name="personalization" type="string">
      <AttributeValue value="NO_DIALOG" />
      </Attribute>
      </Attribute>
    - <Attribute name="com.sap.portal.iview.MainObject" type="string">
      <AttributeValue value="" />
      </Attribute>
    - <Attribute name="SystemIdentifier" type="string">
      <AttributeValue value="SAP_CRM" />
      </Attribute>
      </Attributes>
      </Context>
      </GenericCreator>

  • Java Desktop System User Menu

    Hi
    I'm having some problems ordering a menu in JDS3.
    I have 3 groups of applications, each application with it's own .desktop file with categories X-Application, X-Convert or X-Utility depending on the group. What I'm after is a menu with X-Application applications in a particular order followed by a sub-menu consisting of X-Convert items (in alphabetical or named order, either is fine) followed by X-Utility items (same ordering scheme)
    The main entry is
    <Folder>
    <Name>Misc Programs</Name>
    <Desktop>Misc.directory</Desktop>
    <Query>
    <And>
    <Keyword>X-Application</Keyword>
    <Not>
         <Keyword>X-Utility</Keyword>
    </Not>
    <Not>
         <Keyword>X-Convert</Keyword>
    </Not>
    </And>
    </Query>
    <Folder>
    <Name>Utility</Name>
    <Desktop>Utility.directory</Desktop>
    <Query>
    <And>
         <Keyword>X-Application</Keyword>
         <Or>
         <Keyword>X-Convert</Keyword>
         <Keyword>X-Utility</Keyword>
         </Or>
    </And>
    </Query>
    <DontShowIfEmpty/>
    </Folder>
    <DontShowIfEmpty/>
    </Folder>
    Any attempt at [Layout] entries are at best ignored or at worst result in no menu appearing at all.
    Has anyone got any examples of virtual folders that order items and do work?
    Solaris 10 10/08 Sun Enterprise T5240 locally networked.
    Thanks.
    Dave

    Thank you. The blog entry was helpful, especially in its recommendations for system settings. However, assigning roles to allow the user to shutdown from the CLI, or from a customized menu item, for that matter, is not what I'm looking for.
    I believe the more esthetically pleasing solution is presenting the option to reboot or shutdown to the user every time they log out, as an integrated element of the Java Desktop. In short, I want to present the dialogue the root user sees when they select "logout" from the main menu, to any user with an account on the system.

  • Query analyzer in BI 7.0

    Hello gurus,
    I've upgraded to BI 7.0, I'm using the new Query designer and having problem
    to preview the query. When the button is pressed an explorer is opened when
    address bar has an http link :
    http:///irj/servlet/prt/portal ...
    as you see there is no Server Name of the portal.
    How do I set/configure/change so queries will be opened properly ?
    Please Advice,
    Dimitry Haritonov
    Message was edited by:
            Dimitry Haritonov

    I am not sure which button you pressed and which tool are you using ;however below are the options available.
    Reporting Methods nw2004s
    You can use the BEx Analyzer, the Web Applications and the Web Analyzer for the Business Explorer for free multidimensional
    data analysis as a part of Enterprise reporting.
    Bex Analyzer
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ba/45583ca544eb51e10000000a114084/frameset.htm
    Web Applications
    http://help.sap.com/saphelp_nw2004s/helpdata/en/05/4b583cf7388362e10000000a114084/frameset.htm
    Web Analyzer
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0d/af12403dbedd5fe10000000a155106/frameset.htm
    Hope it Helps
    Chetan
    @CP..

  • Theme 1_Standard layout does not match desktop screenshot layout

    I am trying to implement this layout to my Robohelp Project, but I get the IPad layout instead of the previewed Desktop layout that is in the screenshot. All other Desktop layouts work fine with me this one does not work with me. It is the first one here: http://helpx.adobe.com/robohelp/robohelp-screen-profiles-layouts.html
    I can't seem to get the Desktop layout to work, and I need to have the printer button, I keep getting the Ipad layout  instead, any thoughts??

    It sounds like you want all users to have the desktop layout regardless of which device they are using. If that is the case, just generate that layout. It is not necessary to generate all the layouts, only those you want.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Query prompt selector with a native filter?

    Hi,
    When I include a "Query Prompt Selector" in my dashboard, it doesn't find any prompt source in my queries. The prompt selector works fine if I have a "local" prompt in my query, but when I use a native filter from my universe (It is a prompt filter), it doesn't find anything. In fact when I preview the query pressing "refresh", it ask me for the variables, so the filter is OK.... How can I solve this issue? Is it normal?
    Thanks in advance,
    Ricardo.

    Hi Abhilasha,
    The queries in dashboard are all connected to "BOEXI40-Audit-MSSQL" Universe. I am using a custom filter I created previously in this universe, anyway If you check this universe, you can see a filter called "Custom Date Range", which is a prompt filter.
    You can open a new dashboard, connect to this universe, create a query using this filter, select a "query prompt selector" in Dashboard, and you will not see any prompt to select as source. At least this is whats happening to me...
    Is this helpful to your question?
    Regards,
    Ricardo.

Maybe you are looking for

  • Mail cannot display PDF written in Chinese

    Hello, the PDF file written in Chinese works well on my macbook pro, but when I sent it to my iphone mail, it displays something like code that I cannot read BTW my iphone is 3gs, thank you for your help

  • Error code 2131

    Hi I'm having trouble burning CD's thru iTunes.........I have run a diagnostics and this is what it came up with Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002) Acer, inc. Aspire 5920 iTunes 10.5.0.142 QuickTime not available

  • CLJ 2605dn Colors Off, Print Quality Issue

    My issue is that when printing colors, they aren't correct. The Magenta on a Supplies Status page is poor quality. Printing 'Reds' are also poor, but I'm not convinced the other colors are accurate, either, though not as poor and look fairly good. I

  • Elimination &  Reference Key Figures

    Dear BW Experts, I am seeking your valuable advise. I am trying to setup Elimination of internal biz volume. For Reference Characteristics/Keyfigures, how is it determined which is the sender , which the receiver. Is sender/receiver relationship tied

  • I cannot open Iphoto on my macbook pro

    I cannot open Iphoto on my macbook pro what do I do?