In report user parameter

Dear Sir,
I am very new to report 9i. I was trying to call a report through the form 9i. Form call the report but without asking the parameter.
I am giving my report calling code.
Declare
v_repid report_object;
v_rep VARCHAR2 (100);
v_show_document VARCHAR2 (2000) := '/reports/rwservlet?';
v_connect VARCHAR2 (30);
BEGIN
v_connect := '';
IF GET_APPLICATION_PROPERTY (user_interface) = 'WEB'
THEN
v_show_document := v_show_document
|| 'report=d:\scrol_Rsanat\scr_reg_prn.rdf'
|| '&userid=amsdb/amsdb@tissadmndb'
|| v_connect
|| '&destype=cache'
|| '&desformat=pdf';
web.show_document (v_show_document);
ELSE
v_repid := FIND_REPORT_OBJECT ('d:\scrol_Rsanat\scr_reg_prn.rdf');
v_rep := RUN_REPORT_OBJECT (v_repid);
web.show_document
( 'http://address:port/reports/rwservlet/getjobid'
|| SUBSTR (v_rep, INSTR (v_rep, '_', -1) + 1)
|| '?'
|| 'server=mylocalrepsrvr',
'_blank'
END IF;
END;
Please help me.
with most kind regards
s k swain

Hello,
If you want to display the Reports parameter Form when calling a Reports from Forms using RUN_REPORT_OBJECT, see the document :
Oracle Forms Services - Using Run_Report_Object to call Reports with a Parameter Form
http://www.oracle.com/technology/products/forms/pdf/10g/frmrepparamform.pdf
Regards

Similar Messages

  • How to include input user parameter values in XML report output?

    How can i include input user parameter values in XML report output. I a have a report which can be run by providing start date and end date. I would like to include value of these parameters in XML output to enable me to figure out dates for report, just by looking at XML output.
    Rgds,
    manish

    I think all the XML attributes can contain lexicals. If you bring up the property palette against the report object you can just set the following:
    XML Tag Attributes: myParameter="&<P_1>"
    where P_1 is your user parameter.

  • Report with user parameter is not runnig

    Hi
    I have created the report with user parameter p_deptno and qyery"select * from emp where depno=:p_deptno";
    when i run the report in paper layout a popup kind page will open and ask us to enter the deptno and based on input parameter it fetches record in report.
    if i tried the same thing with url :http://localhost:portno/reports/rwservlet?destype=cache&desformat=pdf&report=emp.jsp&userid=scott/tiger@orcl
    the parameter window not opening and and blank report will open with coloumn headings.
    help me to solve the problem.
    i am using devsuite oracle10g release 2 on linux(OEL4).

    Hello,
    You have to provide the parameter in the URL :
    For example :
    http://localhost:portno/reports/rwservlet?destype=cache&desformat=pdf&report=emp.jsp&userid=scott/tiger@orcl&p_deptno=10
    or use the Web parameter Form :
    http://localhost:portno/reports/rwservlet?destype=cache&desformat=pdf&report=emp.jsp&userid=scott/tiger@orcl&paramform=true
    Regards

  • How to create a user parameter for a report

    Hi,
    I am writing a report in ORACLE 6.0, and I need to create a user
    parameter for my report.
    My database includes fields: item_id, item_cost, and item_desc.
    What I want to do is: set up a user parameter for item_cost, and
    the report will prompt the user to enter number into this
    parameter, then the report will display item_id and item_desc
    depending the user-entered item_cost.
    thanks.
    Jun

    My SQL code is below:
    select item_id, item_invo, item_desc
    from tb_item
    where item_invo=:p_1
    but I got an error message:
    REP-0788:Warning: The value of restricted LOV parameter p_1 is
    not among the selectedble values.
    Would you help me again? Thanks.
    Jun

  • How to run report on command line with user parameter?

    Hi,
    How do I run oracle report on command line (batch) with pre-set User Parameter values ? e.g. :P_1 ='SYSDATE' , :P_2 = 'DEPT_NO'
    Thanks

    Hello,
    If you are using rwrun :
    rwrun report=myreport destype=file desname=c:\temp\myreport.pdf desformat=pdf P_1='SYSDATE' P_2='DEPT_NO' userid=scott/tiger@dbalias
    If you are using rwclient , just add server=<reports server name> :
    rwclient server=myrepsevrername report=+myreport+ destype=file desname=c:\temp\myreport.pdf desformat=pdf P_1='SYSDATE' P_2='DEPT_NO' userid=scott/tiger@dbalias
    Regards

  • Placeholder or User Parameter receiving directly from a field.

    I can place as well placeholder as much as user parameter inputs in my report. My issue is when query returns no rows, but I need to show in this case user input datas, and my variable(placeholder or user parameter) is just syncronized with user inputs. But I wanna to change value when no rows returned it shows user inputs, and when there are rows, show a field at query.
    Assumed i.g:
    SELECT NM_NAME FROM MY_TABLE WHERE NM_NAME = :NAME
    I have one placeholder inside report margin that represents NAME.
    When that query has rows, show QUERY FIELD, so... NM_NAME, when no rows returned, so show :NAME.
    I´m not getting point how can I syncronize this with my issue, to contour this, I can create one extra query (same as mine main query) that return the value when there is rows to return.
    What is the best maner to fix it?
    I hope that my explanation was plain.
    Regards!

    I should use functions from the SRW package in a format trigger:
    1. Create a field in the margin (layout).
    2. Give it a source . eg. 'mode' or ' desformat' (just any of the system parameters)
    3. Create a format trigger on this field with code (eg.):
    function F_1FormatTrigger return boolean is
    begin
    if :P_parameter = 'Yes' then
    srw.set_field_char(0,:Name);
    else
    srw.set_field_char(0,'other text');
    end if;
    return (TRUE);
    end;
    Hope this helps,
    regards, Bart

  • Pass parameter value to another parameter.... User query in user parameter

    Hello everyone, any help would be greatly appreciated.
    Problem:
    My report currently has 5 user parameters (3 Number, 2 Characters). I have an after parameter trigger that evaluates all the parameters to see which one has any value and then creates the “where clause”. Below is an example of two of the 5 parameters.
    The function works fine, I just cut out all the other stuff for this issue.
    function AfterPForm return boolean is
    IF :P_JOB_ID is not null then
         :P_WHERE_CLAUSE := 'where Job_num = :P_JOB_ID';
    ELSIF :P_QUES_DESC is not null then
    :P_WHERE_CLAUSE := 'where DESCRIPTION like :P_QUES_DESC’;
    ELSE :P_WHERE_CLAUSE := ‘where JOB_NUM = 0';
    The “P_WHERE_CLAUSE” is used as follows in a query.
    Select job_num
    from PROMOTION
    &P_W_CLAUSE
    Issue:
    The query result can be anywhere from 1 to 50 job_num’s. I need to show the end user running this report the values (job_num) in a drop down list. They in turn will select one job_num which will be used to run the report. I tried putting the Select job_num from PROMOTION &P_W_CLAUSE in a User Parameter but that does not work. I get an error. I feel that I am approaching this the wrong way. Because in the end I would end up with two queries, one for the Select statement containing the P_W_CLAUSE and another with the final report. This issue is sort of like cascading prompt where the values from one (or more) parameters are used in the select of another user parameter which in turn the value selected will be used in the final report. Also this report will be used somewhere between 50 - 75 times per day so storing the values in a temp table might not work.

    Sorry,
    as I know depending parameters like you want are not possible in Reports. You can use one reports as parameter-report-only to use a second as your original report, but this is not perfect. Or use a tool like Application Express (which is able to have depending fields) in front of reports to build your parameter forms.
    Regards
    Rainer

  • Report 9i parameter form problem, is it a bug?

    Hi all,
    I am using Dev 9i IDS, rel. 9.0.2, running in windows 2000. I've been converting my forms and reports from previous versions to 9i, and I came across an issue with the report's parameter form.
    First, I thought it could be a problem during the conversion , but to make sure I developed a new form and a new report straight in the 9i IDS suite, using Scott's DEPT table. The new form is simple having a button to call the new report which is based on the DEPT table and accepts an user's input for a dept. no.
    The same problem occurs:
    - in the form, if I set PARAMFORM=HTML then it could not open the report parameter form, hence the report could not run.
    - if I set PARAMFORM=YES, then the report parameter form is displayed, then I can enter a value for the department number. BUT, when I clicked the Submit Query button the report failed, and I received the following error:
    REP-52007: Parameter form format error.
    java.lang.IllegalStateException: Response is already committed!
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindHttpServletResponse.setContentType(EvermindHttpServletResponse.java:973)
         at javax.servlet.ServletResponseWrapper.setContentType(ServletResponseWrapper.java:27)
         at oracle.reports.rwclient.RWReportRunner.setContentType(RWReportRunner.java:261)
         at oracle.reports.rwclient.RWReportRunner.getMainFile(RWReportRunner.java:135)
         at oracle.reports.rwclient.CommandManager.handleCmdGetjob(CommandManager.java:1219)
         at oracle.reports.rwclient.CommandManager.handleWebCommand(CommandManager.java:369)
         at oracle.reports.rwclient.RWClient.handleWebCommand(RWClient.java:651)
         at oracle.reports.rwclient.RWClient.processRequest(RWClient.java:1053)
         at oracle.reports.rwclient.RWClient.doPost(RWClient.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:283)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    I have no problem integrating others reports that don't have parameter form using run_report_object. And, I've checked and tried different ways of manipulating the parameter value using to_number in the report's where clause etc., it never worked.
    I guess the only workaround is to create the parameter form in Forms builder. Is there other ways of doing it , or is it a bug of the 9i IDS suites that needs to be fixed?
    - Thanks

    Hi Frank,
    There's a note published on Metalink, note 139546.1, showing a workaround to thi problem. but
    - it is rather lengthy and confusing, may not be practical .
    - it only applies to Forms and Reports 6i.
    However, it shows that the problem comes from 2 items in the source code of the parameter form which is produced by the RUN_REPORT_OBJECT built-in:
    1. <form method=post action=""> where action contains an empty string, it needs to have a valid entry, e.g.
    <form method=post action="http://hostname:port/cgi/rwci60.exe?">
    2. <input name="hidden_run_parameters" type=hidden value=""> where hidden value is also empty. It should contains all parameter values passed to the report parameter form, e.g.
    <input name="hidden_run_parameters" type=hidden value="report%3test+destype%3Dcache+userid%Dscott.....">
    And that is what I found, but I am reluctant to try it in 9i IDS, hoping Oracle has a better solution than that.
    Tho.

  • Using user parameter for

    Hello,
    I have created a report using an xml pds. I am using a servlet for the xml data stream source. Everything works great with the url to the servlet hard-coded between the <xml></xml> tags (ex. <xml>http://10.3.35.119:9004/ssapp/servlet/ScheduleDataServlet</xml>) but when I try using a user parameter between the tags (so I will be able to dynamically change the url to this servlet) it bombs. Please see my source code and error message below. Any help would be greatly appreciated, I've been stuck on this for days! Thanks!
    <rw:report id="recoveryCenterScheduleReport" parameters="server=myreportserver&userid=ssstage/ssstage@DEVL&p_xmlDataURL=http://10.3.35.119:9004/ssapp/servlet/ScheduleDataServlet">
    <rw:objects id="objects">
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <report name="XMLscheduleReport" DTDVersion="9.0.2.0.0">
    <xmlSettings xmlTag="XMLSCHEDULEREPORT" xmlPrologType="text">
    <![CDATA[<?xml version="1.0" encoding="&Encoding"?>]]>
    </xmlSettings>
    <data>
    <userParameter name="XML_HTTPS" datatype="character"
    pluginClass="oracle.reports.plugin.datasource.xmlpds.XMLDataSourceFactory"
    width="255" defaultWidth="0" defaultHeight="0" display="no"/>
    <userParameter name="p_xmlDataURL" datatype="character" width="100"
    precision="10" defaultWidth="0" defaultHeight="0"/>
    <dataSource name="QP_1">
    <plugin
    factoryClass="oracle.reports.plugin.datasource.xmlpds.XMLDataSourceFactory"
    majorVersionNumber="1" minorVersionNumber="2"
    signOnParameter="XML_HTTPS">
    <![CDATA[<xmlpds DTDVersion=" 1.0">
    <dtd>null</dtd>
    <schema>file:///C:/Practic Workspace/Practice/WEB-INF/xsd/scheduleReport.xsd</schema>
    <XSQLschema>null</XSQLschema>
    <XSQLWithDTD>false</XSQLWithDTD>
    <type>false</type>
    <xmlWritten>true</xmlWritten>
    <validate>true</validate>
    <xml>&<[b]p_xmlDataURL></xml>
    <xsl>null</xsl>
    javax.servlet.jsp.JspException: rwlib-1: REP-0002: Unable to retrieve a string from the report builder message file.
    REP-0069: Internal error
    XMLPDS-63004:Generic error while parsing the URL stream name instead of <.
    REP-4111: Fail to create pluggable data source 'QP_1'
         at oracle.reports.jsp.ObjectsTag.doEndTag(ObjectsTag.java:180)
         at jsp.reports._schedule._XMLscheduleReport._jspService(_XMLscheduleReport.java:87)
    ....

    Never mind, I discovered the problem. I wasn't using the necessary xml escape characters for the user parameter embedded in the xml.

  • Error in user parameter list when I try to export my imovie project

    Please help!  iMovie cannot export this particular movie project, which is 14 minutes and 40 seconds.  It will export for several minutes, then give the following error message:
    Unable to prepare project for publishing.
    The project could not be prepared for publishing because an error occurred. (Error in user parameter list)
    What the heck?  I have iMovie 9.0.4, OSX 10.7.3
    Thank you!!!

    My latest attempt to export resulted in this crash and crash report:
    Date/Time:       2012-02-22 08:42:00 -0800
    OS Version:      10.7.3 (Build 11D50)
    Architecture:    x86_64
    Report Version:  9
    Command:         iMovie
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Version:         9.0.4 (1635)
    Build Version:   2
    Project Name:    iMovieApp
    Source Version:  16350000
    App Item ID:     408981434
    App External ID: 3919357
    Parent:          launchd [172]
    PID:             2402
    Event:           hang
    Duration:        0.32s
    Steps:           4 (100ms sampling interval)
    Pageins:         1
    Pageouts:        0
    Process:         iMovie [2402]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Architecture:    i386
    UID:             501
      Thread 0x1df3d    
      User stack:
        4 ??? (in iMovie) [0x2a6e]
          4 ??? (in iMovie) [0x31b3]
            4 NSApplicationMain + 1054 (in AppKit) [0x9b1a4261]
              4 -[NSApplication run] + 1007 (in AppKit) [0x9af106d5]
                4 ??? (in iMovie) [0x46e9e]
                  4 -[NSApplication sendEvent:] + 4788 (in AppKit) [0x9af7f0e7]
                    4 -[NSWindow sendEvent:] + 7533 (in AppKit) [0x9afe6ca5]
                      4 -[NSControl mouseDown:] + 943 (in AppKit) [0x9b01dcf3]
                        4 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 501 (in AppKit) [0x9b0a2551]
                          4 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2295 (in AppKit) [0x9b01f2b0]
                            4 -[NSCell _sendActionFrom:] + 160 (in AppKit) [0x9b01fef3]
                              4 -[NSControl sendAction:to:] + 102 (in AppKit) [0x9b01fff0]
                                4 ??? (in iMovie) [0x44eee]
                                  4 -[NSApplication sendAction:to:from:] + 232 (in AppKit) [0x9b020113]
                                    4 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x9ba39de1]
                                      4 -[NSSavePanel ok:] + 464 (in AppKit) [0x9b4bd155]
                                        4 -[NSSavePanel dismissWindow:] + 154 (in AppKit) [0x9b4bb4ed]
                                          4 ??? (in iMovie) [0x41440]
                                            4 -[NSApplication endSheet:returnCode:] + 337 (in AppKit) [0x9b1e35d2]
                                              4 -[NSSavePanel _didEndSheet:returnCode:contextInfo:] + 317 (in AppKit) [0x9b4be693]
                                                4 ??? (in iMovie) [0x18c064]
                                                  4 ??? (in iMovie) [0xfaead]
                                                    4 ??? (in iMovie) [0x18fb66]
                                                      4 ??? (in iMovie) [0x18f351]
                                                        4 ??? (in iMovie) [0x6f200]
                                                          4 ??? (in iMovie) [0x6fb02]
                                                            4 MovieExportFromProceduresToDataRef + 49 (in QuickTime) [0x946910d4]
                                                              4 CallComponentDispatch + 29 (in CarbonCore) [0x999854a6]
                                                                4 CallComponent + 223 (in CarbonCore) [0x9998545d]
                                                                  4 SpitMovieComponentDispatch + 95 (in QuickTimeComponents) [0x93efdfb3]
                                                                    4 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x99a0f47d]
                                                                      4 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x99a0f43d]
                                                                        4 callComponentStorage_444 + 32 (in CarbonCore) [0x99960546]
                                                                          4 ??? (in QuickTimeComponents) [0x93f006f6]
                                                                            4 ??? (in QuickTimeComponents) [0x93f19c53]
                                                                              4 ??? (in QuickTimeComponents) [0x93f18db3]
                                                                                4 ??? (in QuickTimeComponents) [0x93f18c85]
                                                                                  4 ??? (in iMovie) [0x6d981]
                                                                                    4 ??? (in iMovie) [0x6de2b]
                                                                                       4 ??? (in iMovie) [0x607c9]
                                                                                         4 MoviesTask_priv + 91 (in QuickTime) [0x944e1495]
                                                                                           4 TaskMovie_priv + 3712 (in QuickTime) [0x944d36c0]
                                                                                             4 MediaMoviesTask + 61 (in QuickTime) [0x944d4580]
                                                                                               4 CallComponentDispatch + 29 (in CarbonCore) [0x999854a6]
                                                                                                 4 CallComponent + 223 (in CarbonCore) [0x9998545d]
                                                                                                   4 Video2ComponentDispatch + 95 (in QuickTimeComponents) [0x93ccf252]
                                                                                                     4 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x99a0f47d]
                                                                                                       4 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x99a0f43d]
                                                                                                         4 callComponentStorage_44444 + 47 (in CarbonCore) [0x99960869]
                                                                                                           4 ??? (in QuickTimeComponents) [0x93cd1938]
                                                                                                             4 ??? (in QuickTimeComponents) [0x93cde7df]
                                                                                                               4 ??? (in QuickTimeComponents) [0x93cdc9cb]
                                                                                                                 4 ??? (in QuickTimeComponents) [0x93cdbae7]
                                                                                                                   2 ??? (in QuickTimeComponents) [0x93cdb5a0]
                                                                                                                     2 ??? (in QuickTimeComponents) [0x9428a757]
                                                                                                                       2 CallComponentDispatch + 29 (in CarbonCore) [0x999854a6]
                                                                                                                         2 CallComponent + 223 (in CarbonCore) [0x9998545d]
                                                                                                                           2 SDH_ComponentDispatch + 95 (in QuickTimeComponents) [0x93cb95bf]
                                                                                                                             2 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x99a0f47d]
                                                                                                                               2 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x99a0f43d]
                                                                                                                                 2 callComponentStorage_4 + 15 (in CarbonCore) [0x999602c4]
                                                                                                                                   2 ??? (in QuickTimeComponents) [0x93cbcebf]
                                                                                                                                     2 QTIdleManagerSetNextIdleTimeNever + 22 (in QuickTime) [0x944c3861]
                                                                                                                                       2 QTIdleManagerSetNextIdleTimeNever_priv + 72 (in QuickTime) [0x944c38b4]
                                                                                                                                         1 QTIdleManagerSetNextIdleTime_priv + 172 (in QuickTime) [0x944ac177]
                                                                                                                                           1 pthread_mutex_unlock + 320 (in libsystem_c.dylib) [0x96341c4c]
                                                                                                                                         1 QTIdleManagerSetNextIdleTime_priv + 49 (in QuickTime) [0x944ac0fc]
                                                                                                                                           1 QTMLGrabMutex + 41 (in QuickTime) [0x94485262]
                                                                                                                                             1 pthread_mutex_lock + 704 (in libsystem_c.dylib) [0x963416f6]
                                                                                                                   2 ??? (in QuickTimeComponents) [0x93cdb5a5]
                                                                                                                     2 swtch_pri + 10 (in libsystem_kernel.dylib) [0x97232cfa]
      Kernel stack:
        3 hndl_allintrs + 290 (in mach_kernel) [0xffffff80002d7bd2]
          3 interrupt + 192 (in mach_kernel) [0xffffff80002c2790]
            3 lapic_interrupt + 121 (in mach_kernel) [0xffffff80002c7859]
              3 cpu_signal_handler + 172 (in mach_kernel) [0xffffff80002c970c]
                3 sync_iss_to_iks + 118 (in mach_kernel) [0xffffff80002c1bc6]
        1 hndl_mach_scall + 213 (in mach_kernel) [0xffffff80002d8015]
      Thread 0x1df4e      DispatchQueue 1701273966
      User stack:
        4 _dispatch_mgr_thread + 53 (in libdispatch.dylib) [0x959ca6a7]
          4 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x97234b5e]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x1e107    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254 (in FWAVCPrivate) [0xf84763]
              4 CFRunLoopRun + 129 (in CoreFoundation) [0x9b9eb1a1]
                4 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x9b9da47c]
                  4 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9b9dada4]
                    4 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x9b9d1c7a]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x97232c22]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1e4a0    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 __select + 10 (in libsystem_kernel.dylib) [0x97234b42]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x1e4dd    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93cbebe6]
              4 TSWaitOnSemaphoreRelative + 24 (in CarbonCore) [0x9995bf76]
                4 TSWaitOnSemaphoreCommon + 490 (in CarbonCore) [0x9995c165]
                  4 TSWaitOnConditionTimedRelative + 178 (in CarbonCore) [0x9995c3ef]
                    4 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x96346f7b]
                      4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e54a    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x94199e43]
              4 ??? (in QuickTimeComponents) [0x93d2ed0d]
                4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x1e59c    
      User stack:
        4 pthread_cond_timedwait$UNIX2003 + 70 (in libsystem_c.dylib) [0x962f73e0]
          4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e5e9    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93de0b7d]
              4 pthread_cond_wait + 48 (in libsystem_c.dylib) [0x962ee82a]
                4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e5ea    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93de0b7d]
              4 pthread_cond_wait + 48 (in libsystem_c.dylib) [0x962ee82a]
                4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e5eb    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93de0b7d]
              4 pthread_cond_wait + 48 (in libsystem_c.dylib) [0x962ee82a]
                4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x21689    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeH264.scalar) [0x69a9bedb]
              4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x2168a    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeH264.scalar) [0x69a9bedb]
              4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x2168b    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeH264.scalar) [0x69a9bedb]
              4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x22325    
      User stack:
        4 start_wqthread + 30 (in libsystem_c.dylib) [0x963466fe]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x9723502e]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32738    
      User stack:
        4 start_wqthread + 30 (in libsystem_c.dylib) [0x963466fe]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x9723502e]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
          0x1000 -   0x441feb  com.apple.iMovieApp 9.0.4 (1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
        0xf80000 -   0xfb0ff7  com.apple.FWAVCPrivate 52.47 (47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0x69800000 - 0x69b8dfe3  QuickTimeH264.scalar ??? (???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
      0x936d2000 - 0x94422feb  com.apple.QuickTimeComponents.component 7.7.1 (2315) <1826E4DB-15C2-3495-A278-A17ADEDB0A62> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
      0x94482000 - 0x94707fe3  com.apple.QuickTime 7.7.1 (2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
      0x959c9000 - 0x959d7fff  libdispatch.dylib ??? (???) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
      0x962e6000 - 0x963b1fff  libsystem_c.dylib ??? (???) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
      0x9721c000 - 0x9723aff7  libsystem_kernel.dylib ??? (???) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
      0x9991e000 - 0x99c20fff  com.apple.CoreServices.CarbonCore 960.20 (960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
      0x9af0b000 - 0x9b99eff6  com.apple.AppKit 6.7.3 (1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
      0x9b99f000 - 0x9bb76fff  com.apple.CoreFoundation 6.7.1 (635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         AirPort Base Station Agent [218]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x1155       DispatchQueue 1
      User stack:
        4 ??? (in AirPort Base Station Agent) [0x1045f8654]
          4 ??? (in AirPort Base Station Agent) [0x104609353]
            4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
              4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                  4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                    4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1174       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x117e     
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 __select + 10 (in libsystem_kernel.dylib) [0x7fff83493df2]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x1045f7000 -        0x10460efff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <4B2DADB0-223B-32AA-9438-30FBEA0A8FE6> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         airportd [2788]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    UID:             0
      Thread 0x32894    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32895      DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x32896      DispatchQueue 6
      User stack:
        4 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8a402954]
          4 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff83494022]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x32897    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328ae    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328af    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
             0x10a8d6000 -        0x10a90efff  airportd ??? (???) <229F3A9D-B095-3B7D-932E-28F9586C7FD1> /usr/libexec/airportd
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         AppleSpell [206]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             501
      Thread 0x113b       DispatchQueue 1
      User stack:
        4 ??? (in AppleSpell) [0x10ee66a7c]
          4 ??? (in AppleSpell) [0x10ee66d2e]
            4 -[NSSpellServer run] + 74 (in Foundation) [0x7fff85d54c66]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x113f       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Binary Images:
             0x10ee65000 -        0x10ef21ff7  com.apple.AppleSpell 1.7.1 (131.1) <A994D9F1-C4D8-3361-B0F4-112A7BAED8BD> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff85bf8000 -     0x7fff85f11ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         ARDAgent [209]
    Path:            /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
    Architecture:    x86_64
    UID:             501
      Thread 0x114c       DispatchQueue 1
      User stack:
        4 ??? (in ARDAgent) [0x10966b924]
          4 ??? (in ARDAgent) [0x10966ba9c]
            4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
              4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                  4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                    4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1161       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x1190     
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 PrivateMPEntryPoint + 58 (in CarbonCore) [0x7fff8c8b2e36]
              4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x1191     
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 PrivateMPEntryPoint + 58 (in CarbonCore) [0x7fff8c8b2e36]
              4 __recvfrom + 10 (in libsystem_kernel.dylib) [0x7fff83493d7a]
      Kernel stack:
        4 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          4 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            4 recvfrom_nocancel + 248 (in mach_kernel) [0xffffff8000586608]
              4 shutdown + 495 (in mach_kernel) [0xffffff8000585edf]
                4 soreceive + 5591 (in mach_kernel) [0xffffff800057fbb7]
                  4 sbwait + 171 (in mach_kernel) [0xffffff800058428b]
                    4 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                      4 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                        4 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                          4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                            4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                              4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x10966a000 -        0x10972ffff  com.apple.RemoteDesktopAgent 3.5.2 (3.5.2) <9990876B-F973-31E7-80A4-CB93667C9F65> /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8c829000 -     0x7fff8cb45ff7  com.apple.CoreServices.CarbonCore 960.20 (960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         autofsd [80]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x29d        DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x29e        DispatchQueue 6
      User stack:
        4 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8a402954]
          4 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff83494022]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x10eaca000 -        0x10eacbfff  autofsd ??? (???) <A02D5E70-1BB1-30ED-A699-375CB0CCE901> /usr/libexec/autofsd
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         blued [22]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    UID:             0
      Thread 0x14e        DispatchQueue 1
      User stack:
        4 ??? (in blued) [0x10d9ffe78]
          4 ??? (in blued) [0x10da356af]
            4 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff85c03e8b]
              4 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff85c03f9f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x155        DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x1f8      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 __select + 10 (in libsystem_kernel.dylib) [0x7fff83493df2]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x10d9fe000 -        0x10dab3fff  blued ??? (???) <85D33825-1A68-3F2C-A78D-6B9E43F3DCA9> /usr/sbin/blued
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff85bf8000 -     0x7fff85f11ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         com.apple.dock.extra [202]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:    x86_64
    UID:             501
      Thread 0x10de       DispatchQueue 1
      User stack:
        4 ??? (in com.apple.dock.extra) [0x100365974]
          4 xpc_service_main + 448 (in XPCService) [0x7fff86ef55ed]
            4 NSApplicationMain + 867 (in AppKit) [0x7fff8628bb88]
              4 -[NSApplication run] + 470 (in AppKit) [0x7fff8600d19d]
                4 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff86010861]
                  4 _DPSNextEvent + 659 (in AppKit) [0x7fff86010f5d]
                    4 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff892fd456]
                      4 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff892fd5c9]
                        4 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff892f631f]
                          4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                            4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                              4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                                4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1105       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x32993    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32994    
      User stack:
      Kernel stack:
        4 workqueue_exit + 1088 (in mach_kernel) [0xffffff80005a1450]
      Binary Images:
             0x100364000 -        0x100368fff  com.apple.dock.extra 1.0 (1) <A3B7E3DB-E53E-32E4-83F6-6CFF99B13BB1> /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff86008000 -     0x7fff86c0cfff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff86ef3000 -     0x7fff86efaff7  com.apple.XPCService 1.3 (1) <4C0AE300-9325-3950-A132-1562C03B05CE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
          0x7fff892f4000 -     0x7fff8961eff7  com.apple.HIToolbox 1.8 (???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         configd [16]
    Path:            /usr/libexec/configd
    Architecture:    x86_64
    UID:             0
      Thread 0x113        DispatchQueue 1
      User stack:
        4 ??? (in configd) [0x105bdafcc]
          4 ??? (in configd) [0x105bdb783]
            4 ??? (in configd) [0x105bdc088]
              4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                  4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                    4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x120        DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff83493e06]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x122      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 ??? (in configd) [0x105bdca66]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x135      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 ??? (in configd) [0x105be73dd]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1c4      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 __select + 10 (in libsystem_kernel.dylib) [0x7fff83493df2]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x1c5      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 pppcntl_run_thread + 2194 (in PPPController) [0x10601a142]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x32890    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32891    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328b0    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328b1    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
             0x105bda000 -        0x105c03ff7  configd ??? (???) <2F1DBCF7-E9C0-348D-B806-1AA71E536A84> /usr/libexec/configd
             0x10600c000 -        0x10604bfff  com.apple.SystemConfiguration.PPPController 1.7 (1.7) <E9A5AB07-EF72-34E2-9742-112AEB9C98AE> /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPCont roller
          0x7fff8347d000 -     0x7

  • How to reference a user parameter in program unit

    I tried to define a user parameter in Oracle Report 6i and I could reference it (&p_where_clause) in the main query but I failed to reference it in one of the program units. Here is the logic:
    function CF_OTHER_COURSESFormula return Char is
    cnt           number;
    priority     number;
    class_code     varchar2(8);
    oc           varchar2(100) := null;
    cursor oc_cur is
    select class_code, branch_priority
    from nominations n, employments e
    where n.hkic_no = e.hkic_no
    and e.staff_status_code = 'EMP'
    and &p_where_clause --> contain "n.course_code in ('A','B','C')"
    and n.hkic_no = :hkic_no
    and n.class_code != :class_code;
    begin
    cnt := 1;
    open oc_cur;
    loop
    fetch oc_cur into class_code, priority;
    if oc_cur%notfound then
         exit;
    end if;
    if cnt = 1 then
    oc := oc||class_code||'('||priority||')';
    else
    oc := oc||', '||class_code||'('||priority||')';
    end if;
    cnt := cnt + 1;
    end loop;
    close oc_cur;
    return oc;
    exception
    when no_data_found then      
    return '';
    end;
    Does anyone tell me how to reference it in program unit? Does Oracle Reports 6i support this operation?

    There hasn't been any changes to the way lexicals and bind variables work in Reports between 2.5 and 6i. There are different versions of PL/SQL and you might be hitting some problem here.
    In your case, you shouldn't be using the query lexical "&p_where_clause" just the PL/SQL bind variable syntax ":p_where_clause". Since you're creating a PL/SQL cursor, you should probably use dynamic sql creation with a concatenation of the where clause to build up the SQL for the cursor. Check out the PL/SQL documentation for this.

  • Crystal Reports 2008 parameter panel

    Hello,
    I'm using Crystal Reports 2008 stand-alone application to design reports. I'm wondering is there a possibility to change information display on parameter panel?
    The problem is that I've created a parameter with option "prompt with description only" set to true. This parameter has value and description. When it's prompting for parameter everything goes fine, it prompts with description only, but in parameter panel it's only values (not descriptions) displayed. This is confusing for report users as the value is key (int type) and description is name (string that actually says something to user).
    Maybe there is something to be set in Crystal Reports Viewer component properties?
    Thanks in advance.

    Hello Gemi,
    I recommend to post this query to the [Crystal Reports Design|SAP Crystal Reports; forum.
    This forum is dedicated to topics related to the creation and design of Crystal Report documents. This includes topics such as database connectivity, parameters and parameter prompting, report formulas, record selection formulas, charting, sorting, grouping, totaling, printing, and exporting but also installation and registering.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports Design queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Adjusting frame size or Border size based on user parameter

    Hi,
    I'm using Oracle 10g developerr suite and working on Oracle reports. I've a requirement to change the frames in the report dynamically based on user parameter value. The same if possible I want to try with report border also.
    If anyone have came across this kind of requirement could you please advise how can I proceed on this or Suggest first of all whether is it possible to achieve this requirement.
    Anyone please suggest your views.
    Thanks,
    Subu

    There is another way to change the frame automatically
    this can be done by horizontally elasticity and vertical elasticity properties to the frame, You can set them as variable or expand to make them elastic due to the data

  • Parameter Form-How to use a user parameter to retrieve list of values for another par

    I am developing a report in Reports 6i. There are 2 parameters on parameter form namely year and month.
    LOV for Year is retrieved from database. After user selects a value from LOV for year, I want to retrieve another LOV for month parameter based on selected year. That is how can we use a user parameter's value to dynamically retrieve an LOV for another parameter on the same parameter form.
    Pl. guide.
    Thanks in anticipation.

    You can't restrict the "List of Values" of one parameter based on the value of another parameter within the Reports Builder/Runtime parameter form.
    The SQL select statements within LOV's are only executed once. They aren't re-calculated when you enter, leave or change other field values in the parameter form. This is mainly because there is no event model in the Reports parameter form and it only supports basic form functionality.
    To do what you're after in a client-server environment you need to create an Oracle Forms "parameter form" and use that to execute the Report using the run_product() call. Actually, you should probably use Oracle Forms for any more generic "form" functionality such as radio buttons or check boxes.
    If you're in a Web rather than Client-Server environment, it may be easier to create a JSP based parameter form. You can then use Reports 9i since it has JSP support to assist here.

  • Reports 9i parameter form

    Hi,
    I have a simple problem, not sure where I'm going wrong.
    I have a report that I want to be able to redirect to a few destinations. In order to make things easy for the user, I've set up a user parameter that makes use of an LOV that lists the destination options.
    Depending on the option, I change the system parameter. ie. an entry in my LOV is WebPage. Selecting this option will result in :DESFORMAT := 'HTMLCSS' and :DESTYPE = 'CACHE'. I'm making these changes in the 'AFTER PARAMETER FORM' Trigger.
    Should this approach work? It isn't completely. Is there any problem with attempting to change the system parameters after the Parameter Form? When I make the parameter form objects change the system parameters directly, everything works as expected. But this is a bit cumbersome, needing to specify the type, format and name, as well as knowing which settings are appropriate.
    Any suggestions are appreciated.
    Jim

    Hi Again,
    I've determined that the :DESFORMAT is taking effect, but the :DESTYPE is not.
    user parameter validation trigger code:
    WHEN UPPER(LTRIM(RTRIM(:myuserparm))) = 'FILE_CSV' THEN
    begin
    :DESTYPE := 'FILE';
    :DESFORMAT := 'DELIMITED';
    :DESNAME := 'LORDOR'||LTRIM(RTRIM(:PCOUNTYCODE))||'.PDF';
    return (TRUE);
    end;
    destype and desname do not have any effect on the output.
    is there a white paper on this? i've search OTN with no success.
    Again, thanks for any help
    Jim

Maybe you are looking for

  • Access Denied Error Message in KM

    Hi,   Whenever we publish a Report from Bex Report Designer using Bex Broadcaster the report is getting published in the right KM Folder we choose, but when we click that link with in KM and choose Details we get a message saying "Access Denied". Due

  • Storage location consideration during MRP Run

    Hi All, Within a company code, i am having 2 plants namely PS12 & PS13. In plant PS12, i am  three storage locations namely 1201, 1202,1203. Similarly in plant PS13, i am having stores 1301,1302,1303. During MRP run, i do not want to consider the sto

  • Roll in and Roll out action in sm50

    I am getting roll in roll out action in sm50 tcode because of this server getting slow please help me out to slove this proble. Thanx Kvl

  • Different movie file sizes - different videos??

    I downloaded the Flex 4 In a Week videos for offline viewing a few months ago. Today I noticed that, in conjunction with an overhaul of the Flex In A Week web page, the movie files posted therein have changed in size.  They are several megs smaller t

  • Process overview.

    Hi While executing transaction code sm50, we oculd find dialog and background proces.Apart from that there are also proces like upd enq spo up2, can any one explain abt this..? Regards Arun