Any preference to set to answers report in order to display all results?

Hi,
This is OBIEE specific question. I am posting for the first time. Hence kindly point me to the right forum if this is not the one.
If an Answers report is likely to produce > 25 rows or so, it throws an arrow icon with a star in it to get all results.
is there any preference to set to the answers report to fetch all reports?
this is especially useful when we add reports to dashboard and in briefing books. we want all the data in some instances.
Thanks in Advance,
-vinod.

Hi David,
we have different users like Administrator, Test, Dev,..etc and they are work in one Dashboards.
so I want to display all users and active users information like Log in Time, log out Time, current user information and which objects (Variables) are using in Answers or in Dashboards.
I want to display these information in one dashboard page (Tab).
Is it possible..... yes means plz inform the way to accomplish this issue
Thanks in Advance
Balaa

Similar Messages

  • How can I display all results of a array element in a TS2.0 NumericArrayMeasurement in a single report line?

    TestStand2.0 generates for each result property ( data, limits, status...) of each array element in a NumericArrayTest an extra line in the test report.
    How can I change this to display all result properties of one array element in a single line?
    How can I reduce the spaces between the property name and its value in the report?
    How can I delete the message: "Measurement[x]" and display only the Measurement Alias (named in the Edit Limits menu)?
    This means I like to change my report from:
    Measurement[0] (ADC1):
    Data: 5000
    Status: Passed
    Measurement[1] (AD
    C2):
    To:
    ADC1: Data: 5000 Status: Passed
    ADC2: ...

    Hi,
    What you can do, is use the Override Callbacks for Modify the Report that is Generated.
    Also you can also change the report sequence 'reportgen_txt.seq' to achieve the desired affect. If you go for modifying the report sequence then copy this to the User folder and then make your changes.
    In the Resources Library you can find simple examples were the report has been modified by either using the Override Callbacks or by modifying the actual sequence.
    One other item in the Report Options you will have to set the 'Select a Report Generator for Producing the Report Body' control to use the Sequence instead of the DLL.
    Hope this helps
    Ray Farmer
    Regards
    Ray Farmer

  • Create report in orde to display all pending orders on basis of  "CODE"

    Hi ,
    I need to create report in orde to display all pending orders on basis of  "CODE" ( e.g RC , VP ext)  given on selection screen.
    This "Code" field is on  tcode Me23n inside tab "Release strategy".What is table and relation to fetch ebeln on basis of CODE(e.g RC)
    Regards.

    Hello,
    In SQL Server Reporting Services (SSRS), by default, the chart will only display axis labels for data points in the dataset that contain valid values. Also, if we have values of 1, 2, and 6 on the category axis, we can specify the chart to use a scalar axis
    to maintain the scale of category values. It is add numeric or date/time values to the axis where no data grouping values exist.
    You can refer to the steps below:
    1. Right-click X-Axis, select Horizontal Axis Properties.
    2. Select “Scale(Number/Dates)” below “Axis type:”. Configure “Axis range and interval” as you require.
    You can refer to the screen shots below:
    Preview the report:
    There is an article about Formatting Axis Labels on a Chart, you can refer to it.
    http://technet.microsoft.com/en-us/library/dd239363.aspx
    Regards,
    Alisa Tang
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Hide columns in report on screen and display all in excel

    I am very new to this application. Can anyone please tell me how to hide certain columns on the screen display and dump everything in excel.
    Right now if I uncheck show for some columns in report attributes, it's not displayed in excel either. I would appreciate any help on this.
    Thanks

    I am very new to this application. Can anyone please tell me how to hide certain >>columns on the screen display and dump everything in excel.
    Right now if I uncheck show for some columns in report attributes, it's not displayed in >>excel either. I would appreciate any help on this.Use htmldb_application.g_excel_format method.
    for the items that you dont want in the report but want in CSV, just select that item and in its conditional display select PL/SQl expression and put htmldb_application.g_excel_format.
    for items you want in report but not in CSV put - not htmldb_application.g_excel_format.
    Else for columns that you want both in report and CSV, keep it blank.
    Hope it helps.
    Ameya.

  • How to make a report in RME to display all POE capable devices

    Hello,
    I need to create a report that will list switches in my network that support POE. Most of our switches are 3750 stack and I know most of them have POE capabilities but whenever I generate the report under RME POE Port Level Report or POE Report it gives me an error that says none of the devices are POE capabled/enabled.
    Does anyone know how to generate this kind of report? I tried making a template but I still couldn't produce the result that I need.
    Thanks in advance.

    HI ,
    CSCsx15486            Bug Details
    RME cannot create Inventory PoE Report for certain switches
    Currently, RME is only able to create PoE Inventory reports for Cat3750 and 3560 switches:
    WS-C3560-24PS - 1.3.6.1.4.1.9.1.563
    WS-C3560-48PS - 1.3.6.1.4.1.9.1.564
    WS-C3560G-24PS - 1.3.6.1.4.1.9.1.614
    WS-C3560G-48PS - 1.3.6.1.4.1.9.1.616
    WS-C3750E-24PD - 1.3.6.1.4.1.9.1.792
    WS-C3750E-48PD - 1.3.6.1.4.1.9.1.791
    WS-C3560E-24PD - 1.3.6.1.4.1.9.1.795
    WS-C3560E-48PD - 1.3.6.1.4.1.9.1.796
    It does not work for other switches.
    Even the 3750G switches are not currently supported. The sysObjectID is:
    .1.3.6.1.4.1.9.1.516
    Thanks--
    Afroj

  • How do I set the vertical scroll bar to be displayed all the time?

    This is a part of program I coded:
    TreeNode root = makeNBATree();
    DefaultTreeModel model = new DefaultTreeModel(root);
    tree = new JTree(model);
    JPanel p = new JPanel();
    p.setLayout(new GridLayout(1, 0));
    JScrollPane sp = new JScrollPane(tree,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER,
         ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
    sp.setPreferredSize(new Dimension(500, 500));
    p.add(sp);
    contentPane.add(p, "Center");
    when I compiled and ran the program, it said
    Exception in thread"main" java.lang.IllegalArgumentException: invalid verticalScrollBarPolicy
    at javax.swing.JScrollPane.setVerticalScrollBarPolicy(Unknown Source)
    at javax.swing.JScrollPane.<init>(Unknown Sourc)
    at NBATreeFrame.<init>(NBATree.java:59)
    at NBATree.main(NBATree.java:239)
    I would like to know is there any part I coded wrong?

    Take a look at the API again:
    JScrollPane(Component view, int verticalPolicy, int horizontalPolicy)
    You have:
    JScrollPane(Component view, int Horizontal, int Vertical)

  • Variable in Title of Answers-Report

    Hi all,
    in BIEE Answers reports I need to display a variable taken from a table, e.g. DWH_LOAD_DATE. I want to display this variable in the title or Static Text box but I don't suceeed with the @{variables.rep_var} notation in combination with a repository variable.
    Does someone have a solution or workaround for this requirement? Any hints appreciated.
    Marcus

    Not sure why the docs aren't right. I ran into the same issue and after a bunch of searching I found it here: http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/want-to-include-a-dynamic-variable-in-title-in-obiee-1569322
    Glad it worked for you!

  • Report with the exemption of all obsolete concepts.

    Hi
    can any any one gimme some example of report with the exemption of all the obsolete concepts.
    Plz dont send send any external link except sdn links.
    Thanks and Regards,
    Arun

    does your client use MM-PUR?
    you must select all freight-items from bseg and use BELNR of found items to search in table BSIK/BSAK to find vendor-items
    A.

  • Scheduling aggrement report with order and delivered qunatity

    Hi,
    A Report is required which displays all scheduling agreement with order quantity and delivered quantity till date.
    In VA35,  it gives for particular customer, and does not have delivered quantity field in layout.
    Is there any other report on this?
    Please suggest me your valuable comments.
    Regards,
    Anbu

    Hi,
    There is no Standard Report. Consult your ABAP Programmers and ask them to create Z-report.
    Regards,
    MH

  • Setting column width in OBIEE Answers report

    Hi All,
    Not sure if this has been asked before in the forums, but I did not succeeded in finding any clues. We have an OBIEE 10g Answers table view report that we need to display on our dashboard. The problem is that we need to set some width for all the columns in the report so that report does not extends horizontally as data in column grows but not much luck setting width in Column Properties. Since I am a newbie in the world of OBIEE, so I would appreciate any guidance with setting widths in an Answers report.
    Looking forward to your responses.
    Regards,
    Maria

    Hi,
    The best option to do this is :
    1. Create a report which has less data. And in the column properties hide it.
    2. Edit the Dashboard page and there is an option called 'Add Column'
    3. Place the report with the hidden column.
    4. Please hide the complete section and remove the collapsible. And save it
    5. When you view the report, it would not appear in the page but you can view the desired report.
    Please let me know if you still face issues.
    Regards
    MuRam

  • OBIEE Answers does not display the result set of a report query

    Hi,
    We have a pivot table type of report in Oracle Business Intelligence Enterprise Edition v.10.1.3.3.2 Answers that has the following characteristics:
         3 Pages
         3 Sections , 4 Columns
         18363 Rows in the result set
    As per the NQQuery.log, the query for this report executes successfully resulting in 18363 rows. However, nothing comes up in the display on Answers. Moreover, no error is reported. The instanceconfig.xml file has the following setting:
    <PivotView>
         <CubeMaxRecords>30000</CubeMaxRecords>
         <CubeMaxPopulatedCells>300000</CubeMaxPopulatedCells>
    </PivotView>
    Even with these settings, Answers just returns a blank page - nothing is displayed in the name of the result set of the report query. Has anyone encountered this problem scenario before?
    Any help is much appreciated.
    Thanks,
    Piyush

    Hi Fiston / Pradeep,
    Thanks for your inputs. A few points to note:
    -> I am actually not getting any error message in answers or the NQQuery log. Moreover I am not getting any errors related to "query governor limit exceeding in cube generation" also.
    -> I have other pivot table type of reports in the same repository that work fine. In fact the report which has this issue even works sometimes - what actually is happening is that if I alter the number of sections from 3 to 4, then the result set changes from 14755 Rows to 18363 Rows and as per the NQQuery.log in both cases the query completes successfully. However, when the result set has 14755 rows, I get to see the output in Answers; however when the result set is 18636 rows, the Answers screen just goes blank and does not show any output or error. This makes me believe that there is some parameter in instanceconfig or the NQSconfig file - I have tried a lot of changes but nothing works !
    Any help is much appreciated.
    Best Regards,
    Piyush

  • Any way to set a user's UI Language or Report Locale at Runtime?

    Hi ALL
    I need some guidance. We have a requirement to display a report in either German or English based on the report query result. Is there any way to set a user's UI Language or Report Locale at Runtime? I've read several past blogs and forum posts, but no one seems to have the answer.
    Thank you so much!
    irene

    Here's a workaround if you don't come up with a better answer:
    Function Get-DLSize {
    Param (
    [string]$SourceFile,
    [int]$Timeout=10
    $sb= {
    $clnt = new-object System.Net.WebClient
    $clnt.OpenRead($args[0]) | Out-Null
    [int] $($clnt.ResponseHeaders["Content-Length"]/1mb)
    $clnt.Dispose()
    $PowerShell =
    [PowerShell]::Create().
    AddScript($sb).
    AddArgument($SourceFile)
    ($Timer = New-Object diagnostics.stopwatch).Start()
    $job = $PowerShell.BeginInvoke()
    While ($timer.Elapsed.TotalSeconds -lt $Timeout)
    if ($job.IsCompleted)
    $PowerShell.EndInvoke($job)
    $PowerShell.Dispose()
    Return
    else { Start-Sleep -Milliseconds 500 }
    Write-Warning "Timed out getting $SourceFile"   $PowerShell.EndInvoke($job)
        $PowerShell.Dispose()
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • I cannot open my Safari. I double click and still loading forever an ever. I cannot get to any preferences at the configurations bar. Any help please?What should a i do to fixe that?

    I cannot open my Safari. I double click and still loading forever an ever. I cannot get to any preferences at the configurations bar. Any help please?What should a i do to fixe that?

    I saw on another post you have asked about this dates LINC DAVIS:
    Date/Time:       2014-07-01 19:03:59 -0300
    OS Version:      10.7.5 (Build 11G63)
    Architecture:    x86_64
    Report Version:  9
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         6.1.5 (7537.77.4)
    Build Version:   1
    Project Name:    WebBrowser
    Source Version:  7537077004000000
    Parent:          launchd [203]
    PID:             624
    Event:           hang
    Duration:        1.46s
    Steps:           15 (100ms sampling interval)
    Pageins:         7
    Pageouts:        0
    Process:         Safari [624]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    UID:             501
      Thread 0x1597a      DispatchQueue 1
      User stack:
        15 ??? (in Safari) [0x10557ff2c]
          15 SafariMain + 266 (in Safari) [0x10577947c]
            15 NSApplicationMain + 867 (in AppKit) [0x7fff8b559eac]
              15 -[NSApplication run] + 470 (in AppKit) [0x7fff8b2dd9b9]
                15 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 (in Safari) [0x1055e44d5]
                  15 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff8b2e107d]
                    15 _DPSNextEvent + 1247 (in AppKit) [0x7fff8b2e19c5]
                      15 AEProcessAppleEvent + 102 (in HIToolbox) [0x7fff82c85b69]
                        15 aeProcessAppleEvent + 250 (in AE) [0x7fff832b89f7]
                          15 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 38 (in AE) [0x7fff832b8b03]
                            15 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 200 (in AE) [0x7fff832b8c25]
                              15 _NSAppleEventManagerGenericHandler + 105 (in Foundation) [0x7fff896ed5dc]
                                15 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 283 (in Foundation) [0x7fff896ed74e]
                                  15 __-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_1 + 101 (in Foundation) [0x7fff896ee7c7]
                                    15 -[NSObject performSelector:withObject:withObject:] + 65 (in CoreFoundation) [0x7fff81947541]
                                      15 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 330 (in AppKit) [0x7fff8b2e45b9]
                                        15 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 227 (in AppKit) [0x7fff8b2e4849]
                                          15 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 193 (in AppKit) [0x7fff8b2e49f9]
                                            15 _NSPersistentUIFinishAcquiringTalagentWindows + 93 (in AppKit) [0x7fff8b3108cb]
                                              15 copyTalagentWindowsAcquisitionBlock + 79 (in AppKit) [0x7fff8b310947]
                                                15 +[NSBundle mainBundle] + 55 (in Foundation) [0x7fff896e1bb9]
                                                  15 -[NSRecursiveLock lock] + 25 (in Foundation) [0x7fff896badf9]
                                                    15 __psynch_mutexwait + 10 (in libsystem_kernel.dylib) [0x7fff87733bf2]
      Kernel stack:
        15 psynch_mtxcontinue + 0 (in mach_kernel) [0xffffff800059eb20]
      Thread 0x1599d      DispatchQueue 2
      User stack:
        15 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8ae7e316]
          15 kevent + 10 (in libsystem_kernel.dylib) [0x7fff877347e6]
      Kernel stack:
        15 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x159a4   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8d3eb8bf]
            15 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x105e2da3f]
              15 WebCore::IconDatabase::iconDatabaseSyncThread() + 303 (in WebCore) [0x106958faf]
                15 WebCore::IconDatabase::syncThreadMainLoop() + 491 (in WebCore) [0x10695c39b]
                  15 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff87733bca]
      Kernel stack:
        15 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x159a9   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8d3eb8bf]
            15 thread_fun + 24 (in QuartzCore) [0x7fff81e65d35]
              15 CA::Render::Server::server_thread(void*) + 184 (in QuartzCore) [0x7fff81e65df5]
                15 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8773267a]
      Kernel stack:
        15 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x159b2   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8d3eb8bf]
            15 __NSThread__main__ + 1575 (in Foundation) [0x7fff8970f6a2]
              15 -[NSThread main] + 68 (in Foundation) [0x7fff8970f72a]
                15 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8971afd7]
                  15 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff818e9486]
                    15 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff818e9c74]
                      15 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff818e150c]
                        15 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8773267a]
      Kernel stack:
        15 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x159b7   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 ??? (in Safari) [0xdeadbeef]
            15 dlopen + 540 (in dyld) [0x7fff65188657]
              15 dyld::runInitializers(ImageLoader*) + 97 (in dyld) [0x7fff651821b9]
                15 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 59 (in dyld) [0x7fff6518d0b7]
                  15 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 237 (in dyld) [0x7fff6518c2cd]
                    15 _ZN4dyldL12notifySingleE17dyld_image_statesPK11ImageLoader + 226 (in dyld) [0x7fff65180973]
                      15 load_images + 233 (in libobjc.A.dylib) [0x7fff8897636b]
                        15 call_load_methods + 161 (in libobjc.A.dylib) [0x7fff889766ca]
                          15 +[VSearchLib load] + 92 (in libVSearchLoader.dylib) [0x109b72bf4]
                            15 -[NSBundle principalClass] + 41 (in Foundation) [0x7fff8970ed84]
                              15 -[NSBundle load] + 18 (in Foundation) [0x7fff897173f8]
                                15 objc_msgSend_vtable3 + 24 (in libobjc.A.dylib) [0x7fff889780d8]
      Kernel stack:
        15 hndl_alltraps + 225 (in mach_kernel) [0xffffff80002da481]
          15 user_trap + 711 (in mach_kernel) [0xffffff80002c4017]
            15 exception_triage + 149 (in mach_kernel) [0xffffff8000220e15]
              15 exception_deliver + 766 (in mach_kernel) [0xffffff8000220c1e]
                15 exception_raise_state_identity + 325 (in mach_kernel) [0xffffff8000249c75]
                  15 mach_msg_rpc_from_kernel_body + 277 (in mach_kernel) [0xffffff80002239d5]
                    15 ipc_mqueue_receive + 70 (in mach_kernel) [0xffffff8000215886]
                      15 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f42b]
                        15 thread_continue + 1661 (in mach_kernel) [0xffffff800022f1ad]
                          15 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c2939]
      Binary Images:
             0x10557f000 -        0x10557ffff  com.apple.Safari 6.1.5 (7537.77.4) <1144E535-39EB-3DD2-8326-F931E2CEDFC5> /Applications/Safari.app/Contents/MacOS/Safari
             0x105589000 -        0x105ac2fff  com.apple.Safari.framework 7537 (7537.77.4) <079F7B57-311E-3A81-B3ED-B7AC3F78E262> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
             0x105e24000 -        0x1061cbff7  com.apple.JavaScriptCore 7537 (7537.77.1) <C0C6D15C-8C26-3FD8-BE2E-7A1C20B46359> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
             0x106953000 -        0x107a00ff7  com.apple.WebCore 7537 (7537.77.4) <E0176EFF-835E-3B32-909D-E3A426947476> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
             0x109b72000 -        0x109b73fff  libVSearchLoader.dylib ??? (???) <2DF78468-AB4B-363E-A838-D4CE14679E8B> /System/Library/Frameworks/VSearch.framework/Versions/A/Libraries/libVSearchLoa der.dylib
          0x7fff6517f000 -     0x7fff651b3baf  dyld ??? (???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
          0x7fff818b1000 -     0x7fff81a85ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff81e63000 -     0x7fff82003ff7  com.apple.QuartzCore 1.7 (270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
          0x7fff82c75000 -     0x7fff82fa1fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff832b5000 -     0x7fff832f4fff  com.apple.AE 527.7 (527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
          0x7fff8771d000 -     0x7fff8773dfff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8896d000 -     0x7fff88a51e5f  libobjc.A.dylib ??? (???) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
          0x7fff896b5000 -     0x7fff899cefff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ae7c000 -     0x7fff8ae8afff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8b2d9000 -     0x7fff8bedffff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8d39d000 -     0x7fff8d47afef  libsystem_c.dylib ??? (???) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib

  • Printer properties continue to show HP photo paper, despite Preferences being set for Automatic.

    Yesterday, while attempting to print a Word Perfect 5 document (my word processing app), the printer( HP Office Jet 6500 E709) operated, passed the paper through and made the printing sounds, but no ink was applied to the paper.  I thought perhaps the cartridge had run dry, although I usually get a warning and then can visually see from the finished print job when the ink cartridge is empty.  My PC is running Win XP Professional, and the printer has never been a problem.  I installed a new Black cartridge and successfully printed off a test page.  Still could not print the WP document, or any other document from "my documents" file.  Tried the "copy" function and the printer worked fine.  Still no document printing.  Printed a Yahoo e-mail using the "print" option at the top of the message, and the printer worked fine.  When printing from that icon, I got a pop-up display with a menu option labeled "preferences."  This is the standard routine when printing an e-mail. I clicked on preferences saw that they were set at automatic, portrait, and color.  I changed color to Gray Scale, black ink only, and the page printed properly.  This has always been the routine, whether printing an e-mail of printing a document.  Then I went to my WP document and hit the printer icon on my task bar and got a different pop- up display.  In this display there was no "preferences" option, only a "properties" option.  When I pressed that button I saw a setting that said HP Photo paper, portrait, grayscale high quality.  I changed the paper type[ to "automatic" but cold not change the color option to black ink only.  I closed the menu and attempted to print.  No ink.  I repeated the steps and discovered that the properties had reverted back to HP Photo Paper.  I attempted to print from the File menu and by using Cntrl P.  Neither option worked and the "Pproperties" continued to show HP photo paper, even though I changed it after each failed attempt and the hopper was full of white ink jet paper.  I deinstalled the HP printer and reinstalled it using the original discs.  Since the reinstall, the preferences are set as desired, and remain that way every time I chack them.  I can print a test page, copy and print email.  However, when printing from the print option in File, the task bar printer icon or Cntrl P, the pages continue to be processed but no ink is applied.  The pop-up menu that appears when using any of these commands always contains the term "properties" and those properties always show HP photo paper as the stock being used.  Regaerdless of how many times I correct the paper type, the entry reverts to HP photo paper after each attempt at printing. 

    I have the B8550 too, and I just assumed that since it's a fairly high-end printer, it would support the highest-end HP photo paper (i.e., Premium Plus).  However, the manual states:
    HP Premium and HP Premium Plus photo papers are not supported with this product.
    Now, I don't know if that means you shouldn't use it, or that the advanced features won't work, or ??? Or if you should use it, what settings to use (since that type of paper is not listed in the options on the drop-down menu.)  I have used the Premium Plus Soft Gloss without any problems.  But HP seems to think that the highest quality paper you can use with this printer is "Advanced," which is their third-grade paper.  Not exactly what I'd expect from this type of printer. 

  • How to activate a different sub-report for each row in the data set as main report page breaks on each row of data in the main dataset

    I am going to try asking this same question a different way as I have yet to find a working solution to my problem.  I have a main report and then 8 sub reports.  My main report has one data set and returns one row of data per account number.  One
    of the fields in the main data set is called AccountProf.  My main report displays one page per Account number and then calls a different sub report based on that account's AccountProf value.  The sub reports take in the account number as a parameter
    and get multiple rows of data to display that accounts usage formatted differntly for each AccountProf (hence the 8 different sub report.  
    So far I can figure out how to do everything but setting the visibility property of each sub-reports when I have multiple accounts.  If I use the following expression for the visibility property on each sub report, it makes all the applicable sub report
    for all the accounts requested visible at once:
    =IIF(Fields!AccountProf.Value= "USE_PLUS_DMD",False,True)
    *The value in bold USE_PLUS_DMD  is different for each sub report.
    Here is a look at what the main report look like:
    Here is the main reports data set:

    Hi JasonDWilson77,
    According to your description, there is a main report and 8 sub reports in the report, you want to set visibility of sub reports, if no value is passed to the parameter of sub report, the sub report will not be displayed. If that is the case, please refer
    to the following steps:
      1. Create a new parameter named NewAccountNumber, set its data type the same as @AccountNumber, select Allow multiple values, set Visibility to be hidden, then set all available values to default values.
      2. Right-click the first sub report and open Subreport Properties dialog box, click Parameters in left pane, set name to AccountNumber, then click (fx) button, type the expression like below:
    =Parameters! NewAccountNumber(0)
      3. Click Visibility in left pane, select Show or hide based on an expression, then click (fx) button and type the expression like below:
    =IIF(InStr(Join(Parameters! AccountNumber.Value), Parameters!NewAccountNumber.Value(0))>0 , false,true)
      4. Modify parameter of other sub reports like step2.
      5. Set visibility of other sub reports like step3.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

Maybe you are looking for