My canon 9000 mk 2 is producing different colors when I change paper sizes.

When I change paper sizes on my Canon 9000 mark II, I have been getting odd colors on some size paper settings.Paper type and other settings are the same.I did try to download new driver when this started to occur. However, I deleted the new driver and reinstalled the old print driver. The problem has not gone away.

The printer only does what it is told.  Barring a malfunction, that is.  So, I would look else where.  Your photo editor?
EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
Photoshop CS6, ACR 9, Lightroom 6

Similar Messages

  • SQL Query produces different results when inserting into a table

    I have an SQL query which produces different results when run as a simple query to when it is run as an INSERT INTO table SELECT ...
    The query is:
    SELECT   mhldr.account_number
    ,        NVL(MAX(DECODE(ap.party_sysid, mhldr.party_sysid,ap.empcat_code,NULL)),'UNKNWN') main_borrower_status
    ,        COUNT(1) num_apps
    FROM     app_parties ap
    SELECT   accsta.account_number
    ,        actply.party_sysid
    ,        RANK() OVER (PARTITION BY actply.table_sysid, actply.loanac_latype_code ORDER BY start_date, SYSID) ranking
    FROM     activity_players actply
    ,        account_status accsta
    WHERE    1 = 1
    AND      actply.table_id (+) = 'ACCGRP'
    AND      actply.acttyp_code (+) = 'MHLDRM'
    AND      NVL(actply.loanac_latype_code (+),TO_NUMBER(SUBSTR(accsta.account_number,9,2))) = TO_NUMBER(SUBSTR(accsta.account_number,9,2))
    AND      actply.table_sysid (+) = TO_NUMBER(SUBSTR(accsta.account_number,1,8))
    ) mhldr
    WHERE    1 = 1
    AND      ap.lenapp_account_number (+) = TO_NUMBER(SUBSTR(mhldr.account_number,1,8))
    GROUP BY mhldr.account_number;      The INSERT INTO code:
    TRUNCATE TABLE applicant_summary;
    INSERT /*+ APPEND */
    INTO     applicant_summary
    (  account_number
    ,  main_borrower_status
    ,  num_apps
    SELECT   mhldr.account_number
    ,        NVL(MAX(DECODE(ap.party_sysid, mhldr.party_sysid,ap.empcat_code,NULL)),'UNKNWN') main_borrower_status
    ,        COUNT(1) num_apps
    FROM     app_parties ap
    SELECT   accsta.account_number
    ,        actply.party_sysid
    ,        RANK() OVER (PARTITION BY actply.table_sysid, actply.loanac_latype_code ORDER BY start_date, SYSID) ranking
    FROM     activity_players actply
    ,        account_status accsta
    WHERE    1 = 1
    AND      actply.table_id (+) = 'ACCGRP'
    AND      actply.acttyp_code (+) = 'MHLDRM'
    AND      NVL(actply.loanac_latype_code (+),TO_NUMBER(SUBSTR(accsta.account_number,9,2))) = TO_NUMBER(SUBSTR(accsta.account_number,9,2))
    AND      actply.table_sysid (+) = TO_NUMBER(SUBSTR(accsta.account_number,1,8))
    ) mhldr
    WHERE    1 = 1
    AND      ap.lenapp_account_number (+) = TO_NUMBER(SUBSTR(mhldr.account_number,1,8))
    GROUP BY mhldr.account_number;      When run as a query, this code consistently returns 2 for the num_apps field (for a certain group of accounts), but when run as an INSERT INTO command, the num_apps field is logged as 1. I have secured the tables used within the query to ensure that nothing is changing the data in the underlying tables.
    If I run the query as a cursor for loop with an insert into the applicant_summary table within the loop, I get the same results in the table as I get when I run as a stand alone query.
    I would appreciate any suggestions for what could be causing this odd behaviour.
    Cheers,
    Steve
    Oracle database details:
    Oracle Database 10g Release 10.2.0.2.0 - Production
    PL/SQL Release 10.2.0.2.0 - Production
    CORE 10.2.0.2.0 Production
    TNS for 32-bit Windows: Version 10.2.0.2.0 - Production
    NLSRTL Version 10.2.0.2.0 - Production
    Edited by: stevensutcliffe on Oct 10, 2008 5:26 AM
    Edited by: stevensutcliffe on Oct 10, 2008 5:27 AM

    stevensutcliffe wrote:
    Yes, using COUNT(*) gives the same result as COUNT(1).
    I have found another example of this kind of behaviour:
    Running the following INSERT statements produce different values for the total_amount_invested and num_records fields. It appears that adding the additional aggregation (MAX(amount_invested)) is causing problems with the other aggregated values.
    Again, I have ensured that the source data and destination tables are not being accessed / changed by any other processes or users. Is this potentially a bug in Oracle?Just as a side note, these are not INSERT statements but CTAS statements.
    The only non-bug explanation for this behaviour would be a potential query rewrite happening only under particular circumstances (but not always) in the lower integrity modes "trusted" or "stale_tolerated". So if you're not aware of any corresponding materialized views, your QUERY_REWRITE_INTEGRITY parameter is set to the default of "enforced" and your explain plan doesn't show any "MAT_VIEW REWRITE ACCESS" lines, I would consider this as a bug.
    Since you're running on 10.2.0.2 it's not unlikely that you hit one of the various "wrong result" bugs that exist(ed) in Oracle. I'm aware of a particular one I've hit in 10.2.0.2 when performing a parallel NESTED LOOP ANTI operation which returned wrong results, but only in parallel execution. Serial execution was showing the correct results.
    If you're performing parallel ddl/dml/query operations, try to do the same in serial execution to check if it is related to the parallel feature.
    You could also test if omitting the "APPEND" hint changes anything but still these are just workarounds for a buggy behaviour.
    I suggest to consider installing the latest patch set 10.2.0.4 but this requires thorough testing because there were (more or less) subtle changes/bugs introduced with [10.2.0.3|http://oracle-randolf.blogspot.com/2008/02/nasty-bug-introduced-with-patch-set.html] and [10.2.0.4|http://oracle-randolf.blogspot.com/2008/04/overview-of-new-and-changed-features-in.html].
    You could also open a SR with Oracle and clarify if there is already a one-off patch available for your 10.2.0.2 platform release. If not it's quite unlikely that you are going to get a backport for 10.2.0.2.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Different Colors when printing from Photoshop and InDesign CS3

    Different Colors when printing from Photoshop and InDesign CS3
    I have the following problem:
    When printing from Photoshop or InDesign to a PostScript printer, Adobe recommends to let Photoshop handle the colors (I use the German version, so I don't know the exact term used, it changes slightly in all CS3 apps anyway).
    The manufacturer however told me to let the PostScript printer handle the colors.
    When I chose this option in Ps's print dialog and then choose ISO Coated as the printer pfofile, the results are fine.
    But when I place the exact same image in an InDesign file and print from InDesign or export to PDF and print via Acrobat, again using "Printer handles colors", the results are the exact same as if I had used Ps and chosen to let Ps handle the colors (way too saturated and a bit too red).
    ·Photoshop CS3
    ·InDesign CS3
    ·Test image is a TIFF in CMYK Fogra 27 Coated (which is also the working color space in Ps and ID.
    ·Printer: Xerox Docucolor 3535
    ·Printer profile: ISO Coated
    How can I make sure the printer handles the colors in other CS3 apps than Ps? I tried it with ID's print dialog (translated from the German version: Color Management > Options > Color Handling: PostScript-printer decides colors).
    Thanks a lot!

    RE: "You don't indicate what Xerox printers you have"
    In my first post I named it, is that the information you need?
    Docucolor 3535 using Splash 3535
    That's interesting, so I have to find a way to turn off the printer's Color Management function? I mailed them, hope they can tell me how to do it easily. They usually just tell me to not use any profiles and so on, but that's the general rule in this area, I'm really tired of hearing it. Everybody seems to think profiles and LAB mode are nuclear science and I should stay away from it.
    Anyway, the test image I'm using is a simple photograph (size A3, 300dpi), so no transparencies at all. I'm placing this image into an equally large ID file and print it from ID, then export it to PDF-X/3 and print it from Acrobat. Hope that helps.

  • How do I make the menu title a different color when it is the active menu in Spry horizontal menu?

    How do I make the menu title a different color when it is the active menu in Spry horizontal menu?
    Dreamweaver CS5.5
    Apple OS X.6.8
    View site at: http://dorsay-easton-indian-law.com/staging/index.html
    Steps:
    1. Click link to land on Home page
    2. View Home link in Spry horizontal navigation menu
    Actual:
    Home menu title is the same color as all of the others.
    Expected:
    The title of the active menu is       color: #FFC.
    I was hoping that a:active would give me this functionality, but that's not how it is described. Any suggestions are welcome!

    Nothing I have tried in the template makes the BODY tag editable. That's why I'm wondering how to disconnect the template from the individual pages. Adding an ID to each body tag is a prerequisite of the how-to page you supplied.
    You don't make the <body> tag editable in a Template.
    You make attributes of the <body> tag editable.
    Don't disconnect the Template from the child pages.
    Specify editable tag attributes in a template
    http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7aa3a.h tml
    In the Template:
    Select the <body> tag (either in the Tag selector or click inside the <body> tag in Code View)
    Modify > Templates > Make Attribute Editable
    Select ID from the Attribute dropdown menu
    If there's no existing ID attribute then click Add and type ID into the next dialogue box
    Attribute: ID
    Check the box to "Make attribute editable"
    Enter anything into the Label field as a default e.g. foo
    OK
    Dreamweaver will change the <body> tag to read <body id="@@(foo)@@"....
    Now the ID is editable
    Save the Template and update the child page
    In each child page:
    Modify > Template Properties
    Select the id attribute from the list (it's probably the only one listed)
    Change its name in the box to whatever name matches your CSS rule for the active state for that page
    OK
    Save
    Upload

  • LAB Swatches produce different colors in ID, PS & Illy

    Hello. I have CS4 and have sychronized the color management settings. I have a set of swatches in .ase format that were defined as LAB process colors. When I load them into InDesign, Photoshop and Illustrator they all three produce different CMYK values - differences large enough that they can't be the result of rounding errors. This surprises me given that I've sychronized the color management settings. Do each of these three programs use a different formula/set of instructions for LAB>CMYK conversion?

    Make a Spot swatch in Lab Mode in an RGB or CMYK doc in Illustrator
    (not as Process swatch, not in RGB, not in CMYK)
    Save as PDF
    Oben doc in Photoshop in  Lab mode
    Measure Lab values - they are the same as in Illustrator.
    Place doc in InDesign
    InDesign doesn't change Lab numbers in placed graphic.
    So far it´s guaranteed that Lab values are preserved across the three programs.
    The appearance depends on local color settings and gamut clipping issues.
    Even if the color settings should be globally the same - there are local settings,
    like the document color mode in Illustrator. Which settings RGB or CMYK are
    correct for Lab docs? No idea, I'm not bothering about appearance in this case,
    because there is another ugly problem already luring: gamut clipping.
    A Lab or Spot can be in-gamut or out-of-gamut for a specified RGB space and
    specified CMYK-space.
    Spots by Lab values which are definitely in-gamut or out-of-gamut for sRGB
    resp. ISOCoatede-v2(eci) are found here:
    http://www.fho-emden.de/~hoffmann/munsell15052009.pdf
    If we choose Spots with values in-gamut for sRGB, then we have good chance
    that they will appear identical in all three programs. 
    The whole workflow shouldn't be confused by early conversions into a CMYK
    space. A ready PDF, still with Lab colors like the mentionend one (except for
    text and line black/gray, which is in CMYK K-only) can be converted (as already
    mentioned in my first post), into CMYK by Acrobat Pro, which should concern
    only the Lab colors, not CMYK K-only parts.
    A preview by Softproof in Photoshop (document Lab, Preview ISOCoated-v2(eci)
    for instance, can be used to detect ugly effects of gamut clipping early.
    Where is Color Management involved?
    a) in the monitor appearance of Lab values. This should be identical for in-gamut
    swatches.
    b) in the final conversion of Lab to CMYK. Precisely at only one stage - in Acrobat.
    Even if the appearance should not be identical - the Lab values are nowhere changed
    in the workflow. Lab values are never out-of-gamut in Lab space.
    Another example: Lab data of the mentioned doc were imported in Photoshop,
    exported in groups as files (probably as *.ase  / Adobe Swatch Exchange, but here
    I'm not sure about) and used in Illustrator for experimental Tracing graphics:
    http://www.fho-emden.de/~hoffmann/casamunsell24062012.pdf
    Best regards --Gernot Hoffmann
    Edited: *.ase

  • Reading ProRes4444 Quicktime between AE CS5.5 & Nuke 7.0v8 produces different color results

    Please read this first.  THIS IS NOT A GAMMA ISSUE!  I am well aware of the difference between RGB v YUV & 0-255 v 16-235.  It is not a RGB v YUV problem or a 0-255 v 16-235.
    I am experiencing a noticeable color shift within highly saturated files.  I am specifically noticing a difference in REDs.  At least witin my current project.
    Files are Alexa C-Log.  Edited within FCP.  Graded by BaseLight within FCP.  Comped within NUKE.  Titles added within AE.  Sent back to FCP timeline. 
    Here is what I cannot explain.  I can roundtrip the file within Nuke.  I can Read a ProRes4444 file which I can then render out as multiple formats, i.e.  QT ProRes4444, EXR, TIFF, DPX.  I can bring those files back in and create a difference matte which produces pure black (well close enough, small differences in gamma when elevated astronomically).  So apples to apples, color space matches, gamma matches.
    Now when I bring these rendered files into AE the image sequences display a different color than the ProRes4444 QTs.  ALL the image sequences match and ALL the ProRes4444 match.  I have tried creating a project with an unmanaged color space as well as a traditional rec709 project color space.  I have also tried intrepreting the PR4444 files different color profiles.  NO amount of variation will allow the PR4444 files to match the image sequences.  I am partial to image sequences, BUT, ProRes files have become standard file types and I would like to resolve this issue.
    Any thoughts?
    I have tried this:
    http://blogs.adobe.com/aftereffects/2009/12/prores-4444-colors-and-gamma-s.html
    and this:
    http://blogs.adobe.com/aftereffects/2010/05/prores-4444-and-prores-422-in.html
    Please observe . . . .
    TIA
    -M

    I have more results after further testing. 
    Running OS X 10.8.4
    AE 10.5.0.253
    K5000 GPU
    My AE project is setup as a 16bpc, HDTV (rec709), Blend Colors Using 1.0 Gamma, Match Legacy After Effects QuickTime Gamma Adjustments, Compensate for Scene-referred Profiles.
    I import a FCP 7 generated QT ProRes4444 file.  The file is rendered as YUV Full Precision with Super-Whites.  In an attempt to round trip the file, I rendered the singular file with no effects back out as a ProRes4444 file with rec709, sRGB or Preserve RGB color profiles.  Once imported back into AE, each of these 3 files matches the original identically.  Quite well actually, even when I turn on difference mode and crank the gamma, they hold up really well.  Nothing perceptually different here.
    NOW, when I render out as DPX, EXR or TIFF, I get a completely different result.  EACH image sequence imports identically, so DPX matches EXR matches TIFF.  BUT they are all identically different than the original.  Once again there is a color shift.  NOT a gamma shift, a HUE shift.
    I am rendering each file as a rec709 and importing as a rec709. 
    What gives?
    Here is the kicker, when I switch to my windows box (WIN7 SP1), then open my AEP file.  The colors match identically across all files & formats!!!  I literally set my OS X AE comp to solo 2 layers on difference mode.  There is a clear difference.  When I open the same file within WIN7, pure BLACK.  NO DIFFERENCE.  Holy crap this is alarming.  Side note, still have the hue shift within NUKE across platforms but it is consistent.
    WIN7 64bit SP1
    AE 10.5.0.253
    GTX680 GPU
    I am not going to blame Adobe, since I am almost certain this is an APPLE issue.  I would like to ask the Adobe AE Team, what value is AE reading that Nuke is not?  Is there different QT importers?
    Thanks,
    Matt

  • Buttons select state different color when burned, why??????

    i making a instructional DVD that requires alot of menu's, besides the fact that i have the re-occuring problem of pixellated button overlays (which i notice everyonr has), to top it of the buttons come out a different color Why? i have no idea.. this is only for the selected and activated states as i am use a overlay file for the buttons. the buttons are in the orignal video file used for menu.
    could it be because of the the colours used in the overlay file are the same as the buttons on the menu. but i have used the advanced feature to set the color for the select/activate state. so that does not make sense. also in the another menu using the same method it works just fine.
    can anyone help. it is important for the colors to be what i have chosen as the dvd has an overall theme and colour style.
    any help will be much appreciated...

    I'm not even really sure how the overlay color option would work, I guess you'd have to use specific colors? In any case, what works well is to use grayscale instead. Make your overlay image in Photoshop, and when you save it, save it as PICT file, 2 bit grayscale. That gives you four grays to use. Take that into DVDSP and in the advanced color settings choose Grayscale, and set the four sliders to the same color, but with transparency valuues of 15, 10, 5, and 0.
    You should now have nice looking, predictable color, overlays.

  • Multiplot waveform graph plots are different colors when set to be the same with a property node.

    The graphs were working yesterday. I made a few changes to another part of the block diagram and now the graphs do not plot all of the plots the same color. I am using a for loop with a property node with the elements active plot connected to the iteration terminal, and plot color to a color box. My for loop increments programmaticaly from another part of the code to create plots as it runs. I have replaced the graphs with new ones and they will work sometimes.
    I am using Win2k and LV 7.1
    Thanks,
    Brett

    Hi bh3560,
    Have you tried chaging the color by right clicking on the line in the plot legend.  There is an option to change the color of the plot.
    Brian K.

  • Why is a Screenshot a different color when dropped back in to iWeb in Safar

    First post ever, new to iWeb. I took screenshot of an image and dropped the screenshot PNG back into my iweb pages. It blends correctly with the background color in IE (on a Vista PC) and Firefox on both Mac and PC but the color has shifted significantly in Safari so it doesn't blend at all. Is this a color profile issue with Safari? and if so how do I change the png to match the background file? Thanks...

    Thanks Alancito for the response. I changed my Mac to 2.2 Gamma etc as your link suggested but it did not help. Its not really a color from monitor to monitor or monitor to printer issue.
    The issue occurs because of the way Safari handles the snapshot of the section of the iWeb page - it is darker than the background therefore it doesn't blend. IE and Firefox show the blend correctly because they are ignoring the color profiles. Safari is looking for color profiles so the solution seems to be to change the snapshot color profile to match the iWeb background profile. I don't know what that is, how to do it or where to do it. Any suggestions?

  • Why do text boxes show up as different colors when they are the same color?

    I am baffled. I have created an InDesign document and I used the rectangle tool to create a blue box at the top of the document and one at the bottom. They are both filled with CMYK (100, 88, 35, 28). The one on the top of the document shows darker than the one at the bottom. I thought it was a document issue, so I created a new document. It does the same thing. I took the box at the top and moved it to the bottom and when it hit the half way point of the document, it changed colors (got lighter).
    Any suggestions? Thanks.
    Liz

    No, what was once dark is now light and vice-a-versa. See screen capture above. When I rotate the page 180 degrees, here is what I get.

  • My iphone screen is lots of different colors when i turn it on

    For a while now my iphone has been flcikering and jumping about, i didnt think much of it but when i did i turned my phone off to try and see if it would make it any better but when i tried turning it on again the screen was just loads of colours( sometimes white, black, and other colours) any suggestions as to what has happened and what i can do to fix it?

    It's the Resume feature of Lion:
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.

  • Issues with pattern fill in ps 6. Why is it making each tile a different color?

    HELP!!! I've used the Fill>Pattern to tile my seamless patterns tons of times and never had this issue. Suddenly , it started making each tile on the large canvas a different color when I apply Fill>Pattern. At first I thought it was a tip or guide to see the repeat edges , but it shows up in print preview too. What did I do and how do I correct it?

    Is this photoshop 6 or photoshop cs6?
    If it's cs6, check that you aren't using scripted patterns for the pattern fill.
    Also, check the blending mode and opacity in the fill dialog.

  • Printing to different printers and paper sizes

    I have Lion 10.7.4
    I have Parralels 7 and run AutoCAD in Parrallels
    I have a HP Deskject 9800 (USB connected) and an HP Laser Jet Pro CM1415fmw color MFP (wifi connected) all accessable from my MAcBookPro
    Printing is a hassle from Autocad with my MAC OS. In WinXP, (prior to switching to MAC) I could assign a paper size to each printer in printer set up. Then when printing from AutoCAD I would just select the print I wanted for the paper size and done..... perfect!
    However, in Mac with Parrallels AutoCAD does not really talk correctly through to the printers on the Mac side. So I have to go into Lion printer settings and change the paper size all the time between tabloid and US letter. I always forget and waste a lot of paper.
    Looking for a way to set a Lion OS printer to a specific paper size and have it maintain that paper size while a different printer has a differenet paper size, but this doesn't seem possible.
    Every time I change the paper size in the Lion OS for one printer it changes it for all printers.
    Can anyone help me with this?

    That is not currently possible.  See a similar discussion here.  You may also want to give Apple feedback if you do not find a convenient work around.  You can submit feedback at here.

  • Filter expression producing different results after upgrade to 11.1.1.7

    Hello,
    We recently did an upgrade and noticed that on a number of reports where we're using the FILTER expression that the numbers are very inflated. Where we are not using the FILTER expression the numbers are as expected. In the example below we ran the 'Bookings' report in 10g and came up with one number and ran the same report in 11g (11.1.1.7.0) after the upgrade and got two different results. The data source is the same database for each envrionment. Also, in running the physical SQL generated by the 10g and 11g version of the report we get different the inflated numbers from the 11g SQL. Any ideas on what might be happening or causing the issue?
    10g report: 2016-Q3......Bookings..........72,017
    11g report: 2016-Q3......Bookings..........239,659
    This is the simple FILTER expression that is being used in the column formula on the report itself for this particular scenario which produces different results in 10g and 11g.
    FILTER("Fact - Opportunities"."Won Opportunity Amount" USING ("Opportunity Attributes"."Business Type" = 'New Business'))
    -------------- Physical SQL created by 10g report -------- results as expected --------------------------------------------
    WITH
    SAWITH0 AS (select sum(case when T33142.OPPORTUNITY_STATUS = 'Won-closed' then T33231.USD_LINE_AMOUNT else 0 end ) as c1,
    T28761.QUARTER_YEAR_NAME as c2,
    T28761.QUARTER_RANK as c3
    from
    XXFI.XXFI_GL_FISCAL_MONTHS_V T28761 /* Dim_Periods */ ,
    XXFI.XXFI_OSM_OPPTY_HEADER_ACCUM T33142 /* Fact_Opportunity_Headers(CloseDate) */ ,
    XXFI.XXFI_OSM_OPPTY_LINE_ACCUM T33231 /* Fact_Opportunity_Lines(CloseDate) */
    where ( T28761.PERIOD_NAME = T33142.CLOSE_PERIOD_NAME and T28761.QUARTER_YEAR_NAME = '2012-Q3' and T33142.LEAD_ID = T33231.LEAD_ID and T33231.LINES_BUSINESS_TYPE = 'New Business' and T33142.OPPORTUNITY_STATUS <> 'Duplicate' )
    group by T28761.QUARTER_YEAR_NAME, T28761.QUARTER_RANK)
    select distinct SAWITH0.c2 as c1,
    'Bookings10g' as c2,
    SAWITH0.c1 as c3,
    SAWITH0.c3 as c5,
    SAWITH0.c1 as c7
    from
    SAWITH0
    order by c1, c5
    -------------- Physical SQL created by the same report as above but in 11g (11.1.1.7.0) -------- results much higher --------------------------------------------
    WITH
    SAWITH0 AS (select sum(case when T33142.OPPORTUNITY_STATUS = 'Won-closed' then T33142.TOTAL_OPPORTUNITY_AMOUNT_USD else 0 end ) as c1,
    T28761.QUARTER_YEAR_NAME as c2,
    T28761.QUARTER_RANK as c3
    from
    XXFI.XXFI_GL_FISCAL_MONTHS_V T28761 /* Dim_Periods */ ,
    XXFI.XXFI_OSM_OPPTY_HEADER_ACCUM T33142 /* Fact_Opportunity_Headers(CloseDate) */ ,
    XXFI.XXFI_OSM_OPPTY_LINE_ACCUM T33231 /* Fact_Opportunity_Lines(CloseDate) */
    where ( T28761.PERIOD_NAME = T33142.CLOSE_PERIOD_NAME and T28761.QUARTER_YEAR_NAME = '2012-Q3' and T33142.LEAD_ID = T33231.LEAD_ID and T33231.LINES_BUSINESS_TYPE = 'New Business' and T33142.OPPORTUNITY_STATUS <> 'Duplicate' )
    group by T28761.QUARTER_YEAR_NAME, T28761.QUARTER_RANK),
    SAWITH1 AS (select distinct 0 as c1,
    D1.c2 as c2,
    'Bookings2' as c3,
    D1.c3 as c4,
    D1.c1 as c5
    from
    SAWITH0 D1),
    SAWITH2 AS (select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5,
    sum(D1.c5) as c6
    from
    SAWITH1 D1
    group by D1.c1, D1.c2, D1.c3, D1.c4, D1.c5)
    select D1.c1 as c1, D1.c2 as c2, D1.c3 as c3, D1.c4 as c4, D1.c5 as c5, D1.c6 as c6 from ( select D1.c1 as c1,
    D1.c2 as c2,
    D1.c3 as c3,
    D1.c4 as c4,
    D1.c5 as c5,
    sum(D1.c6) over () as c6
    from
    SAWITH2 D1
    order by c1, c4, c3 ) D1 where rownum <= 2000001
    Thank you,
    Mike
    Edited by: Mike Jelen on Jun 7, 2013 2:05 PM

    Thank you for the info. They are definitely different values since ones on the header and the other is on the lines. As the "Won Opportunity" logical column is mapped to multiple LTS it appears the OBI 11 uses a different alogorthim to determine the most efficient table to use in the query generation vs 10g. I'll need to spend some time researching the impact to adding a 'sort' to the LTS. I'm hoping that there's a way to get OBI to use similar logic relative to 10g in how it generated the table priority.
    Thx again,
    Mike

  • What are the settings in Aperture to work with a Canon 9000?

    What are the settings in Aperture to work with a Canon 9000? Canon website says Aperture is not supported. Is it True?

    Do you mean the Canon PIXMA Pro9000 printer?
    If so, does this help?
    https://discussions.apple.com/thread/3681934?tstart=0

Maybe you are looking for

  • Error while Importing Webservice Model in NWDS 7.0.13

    Hi Experts, I am trying to Create Webservice Model (deprecated) in my Webdynpro Application using NWDS 7.0.13, using a WSDL which is hosted on PI 7.1. However while resolving this WSDL, I am getting error "Unacceptable Choise Element Found. Choise ca

  • Error while opening the jspx page

    Hi all I am creating a test application that application i am utilizing jheadstart API it is working fine but if I delete my application form my jdeveloper IDE nest time I am loading the same application my jspx page is not showing in code editor it

  • Use of SetFormattingSheet for selection of EPMFormattingSheet in BPC 10.0

    I am trying to select a Formatting sheet to be applied based on the category selection. Can someone help me with the VBA code for the same? The code I have written is just refreshing the sheet and not applying the formating sheet. Is there any other

  • How can I set Address Book to stop auto importing all addresses

    My Addresss Book seems to add any and all email addresses, willy nilly, from emails sent me. I have over 3000 entries , most of which are addresses I do not know. I want this to stop. What setting do I use? Where? I only want addresses which I decide

  • How do you change the face of Mozilla

    Behind Firefox Start its got white back ground , how do you change the face of Mozilla