Dynamically build parameter list

I'm after an easy way to dynamically build a list of ALL the defined parameters within the additional PL/SQL code section on a portal report. I then want to use p_arg_names / p_arg_values to retrieve and store the passed values in a table.
To clarify, the report may have 10 parameters of which say only 5 are passed on a particular run. I need to then populate 10 columns which includes nulls for the parameters not passed. This way parameter values will always be written to the same column.
I aiming to use this as generic code to apply to several other reports which will write to the same table.
Ron

In case anyone else needs this I'll post the solution myself.
1. p_arg_names and p_arg_values (shows only the populated parameters / values)
2. l_arg_names and l_arg_values (shows all the parameters / values)
So in my case I needed to reference l_arg_names and l_arg_values.

Similar Messages

  • Report Viewer Dynamic Parameter List not showing a complete list of values

    Hi, I have installed the crystal report runtime 13.0.1.220 for framework 4.0 in a 64-bit windows 7 professional server.
    I have an aplication that opens crystal reports using the crystal report viewer control for visual studio 2010, also version 13.0.1.220.
    ISSUE: The report opens fine, but it does not shows all the available values in the dynamic parameter list.
    I have tried setting the MaxRowsetRecords registry key to diferent values but it does not work.
    I do not have any crystal report stand alone version installed in my server.
    Please help me?

    Hi Ludek,
    yes i followed the instructions of the KBase you are mentioning, but it isn't working for me.
    I modified the following keys:
    HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework4.0\Crystal Reports\DatabaseOptions\LOV
    and
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework4.0\Crystal Reports\DatabaseOptions\LOV
    1) I had to create the LOV key under the DatabaseOptions in both keys.
    2) Inside the LOV keys I created the new string value MaxRowsetRecords and set the value to different values. (Ex: 5000, 10000 and 1000000)
    3) I restarted my server. Still not working.
    4) Then after that i modified the following registry keys: (leaving the first 2 keys modified)
    HKEY_CURRENT_USER\Software\SAP BusinessObjects\Crystal Reports for .NET Framework4.0\Crystal Reports\DatabaseOptions\LOV
    and
    HKEY_CURRENT_USER\Software\SAP BusinessObjects\Crystal Reports for .NET Framework4.0\Crystal Reports Designer Component\DatabaseOptions\LOV
    5) Also had to create the LOV key under the DatabaseOptions in both keys.
    6) Inside the LOV keys I created the new string value MaxRowsetRecords and set the value to different values. (Ex: 5000, 10000 and 1000000)
    7) Restarted my server. still not working
    8)  Then after that i modified the following registry key: (leaving the first 4 keys modified)
    HKEY_CURRENT_USER\Software\SAP BusinessObjects\Crystal Reports for .NET Framework4.0\Crystal Reports Designer Component\ReportView
    Inside this key I created the DWORD PromptingLOVBatchSize and gave it a decimal value of 1000000
    9) Restarted the server. Still not working. For crying out LOUD!!

  • Dynamic Parameter List questions: Length and Custom Values

    I've got a Crystal Report that I want to use Dynamic Values for.
    Right now... this report is simply a "SELECT stuff  FROM table" SQL query... with a parameter that the report uses to filter.
    I use a "Select DISTINCT value from table" to generate a list of values. I put those values into a txt. I then import the text into a static list. This creates a parameter list that is 11 "pages" long on the parameter screen. I also have "custom" values allowed. This is to allow for "new" values and also allow not needing to browse 11 pages for one or two known values.
    If I turn the parameter into a Dynamic List based on the same Select statement it stops at 5 pages, obviously cutting off half of the possible values.
    Dynamic List also removes the ability to do Custom Values. The filter option wouldn't be a bad alternative BUT it don't work for pages 6+ that aren't there.
    How can I remove the 5 page limit (or whatever it is) for Dynamic values?
    Thanks
    Chris
    Edited by: WernerCD on Aug 4, 2010 4:14 PM

    There is a limit of 1000 records in dynamic parameters. You can change this by adding a registry value:
    registry key : HKEY_CURRENT_USER\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\DatabaseOptions\LOV
    and then add a key called MaxRowsetRecords and give it a value.
    if you have Crystal 2008 then the above registry folder will say Suite 12.0.

  • Dynamic parameter list values

    Hi all,
    I'm new with Crystal Report, and I have a problem.
    The goal is to create a Price List based on SAP conditions tables.
    So, In my report I have linked table  Axxx KONP KNA1 MAKT  MVKE T179T  TINCT TVSBT.
    All work find except for the customer parameter selection.
    I want create a dynamic list with Customer Number and description (but only those which exist in table Axxx)
    I can create a dynamic list based on KUNAG and KUNWE from table Axxx(master table), but I have only the Number  of customer and no description (because description don't exist in Axxx table)
    I have try to select NAME1 form KNA1 table, but without success.
    I have search in SAP about a table which contain Number, Name1 and Parvw(partner role) but without succes.(table KNVP don't have Name1)
    I have try to create list value from KNA1 but whe have much more customer and the list is > then 1000 occurence(too big!)
    Do someone have an idea to create a dynamic list which take his information from two tables linked ?
    Or another solution to reach the goal...:)
    Thank in advance for your suggestion,
    Regards
    Martine Bombardelli

    Your requirement for me looks like a straight forward task.
    If you need a DP on 2 fields from 2 different tables in SAP using Integration Kit all you need to do is:
    > create a new parameter in the report
    > select 'Dynamic' from the List of Values drop down. Your options in the Parameter window will change for dynamic compared to static.
    > Choose Data Source: New
    > Below 'Value' select table1.Customer number and next to it under 'Description' select the table2.Description and set the further options you require under the Value options.
    Just as an FYI...there is no option to have a custom SQL when working with SAP Intg Kits. Business View Manager is also not helpful.
    So if a dynamic prompt is needed for a Crystal report above are steps it can be achieved, no other option is available today.
    Thanks,
    Madhu

  • IMPORT from database with dynamic parameter list

    Hi Gurus,
    Iu2019m having problems during import from a cluster table.
    I wanu2019t to do an import with a dynamic parameter list, but I cannot get it to work.
    Sample code ********
    DATA: BEGIN OF st_key,
    report LIKE rsvar-report,
    variant LIKE rsvar-variant,
    END OF st_key.
    DATA dirtab1 LIKE cdir OCCURS 10 WITH HEADER LINE.
    DATA dirtab2 LIKE cdir OCCURS 10 WITH HEADER LINE.
    st_key-report = 'ZPRG'.
    st_key-variant = 'VAR1'.
    IMPORT DIRECTORY INTO dirtab1 FROM DATABASE vari(vb) ID st_key.
    IMPORT DIRECTORY INTO dirtab2 FROM DATABASE vari(va) ID st_key.
    DATA: tmp_var(100)   TYPE c.
    This works - P_BWTAR is a parameter from the selection screen registred in VARI
    I'm getting the content of the field in tmp_var
    IMPORT p_bwtar TO tmp_var FROM DATABASE vari(va) ID st_key.
    This does not work - the parameter P_BWTAR is in the dirtab2-name
    I'm not getting the content
    LOOP AT dirtab2.
        IMPORT dirtab2-name FROM DATABASE vari(va) ID st_key.
      ENDIF.
    ENDLOOP.
    I have tried the syntax IMPORT (dirtab2-name) ........
    but this fails the syntax check.
    Please - if you have any suggestions  :o)
    Best Regards,
    Vibeke

    Dear Vibeke,
    Could you please explain us how you solved the problem because you have the same issue ?
    thanks a lot
    KR
    véronique

  • Dynamically Pass a list as input parameter to a Graphical Clac View

    Hi All,
    Can anyone please let me know if it is possible to pass a list of comma separated values as an input parameter to a graphical calculation view and how this list can be parsed inside the view?
    The requirement is to invoke the graphical view using sql script.
    Thanks,
    Goutham

    Hi Goutham,
    Have a look on these documents:
    Using Multiple Values in Input parameter for filtering in Graphical Calculation View
    SAP HANA: Handling Dynamic Select Column List and Multiple values in input parameter
    Regards,
    Krishna Tangudu

  • Dynamically finding Number of Parameters in Parameter List.

    Hi All,
    Does it possible to count the number of parameters in the list.
    I am creating discoverer report so I need to find out how many periods I am passing in parameter list.
    Thanks in advance.
    Regards,
    Bluetooth

    No, you can't "read" a forms parameter-list.

  • Need help dynamically building combo-boxes...

    How can I dynamically build drop down lists?
    I was thinking about using a dynamic page, with bind variables
    set for sql statements inside <oracle></oracle> tags, or passing
    the variable from the first selection to the second selection of
    another page (or the same page?)...
    Another thing I was thinking about would be to base a form on a
    DB procedure, and pass the selections to the procedure, and re-
    build the lists that way...
    I need to avoid client side processing (javascript) because of
    accessiblity concerns.
    Any ideas would be greatly appreciated...
    Ryan

    Ajay,
    The following is an excerpt of the code I used. Because of a
    lack of time, I haven't made the code generic. The code is used
    to interface with Oracle Reports 6i & Oracle Configurator. The
    configurator (config_hdr_id & config_rev_nbr) parameters are
    selected by the user and passed into Oracle Reports using related
    dynamic combo-boxes. Pay particular attention to the
    wwpro_api_parameters.get_value function as well as the onChange
    javascript. Hope you can take pieces of this for an example.
    The following is the code for a Portal dynamic page:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Configurator Reports</title>
    <SCRIPT LANGUAGE="JavaScript1.1">
    <!-- Comment out script for old browsers
    ** this function will open a new URL for the Reports CGI
    ** executable to run the report
    function runReport()
    // semi-constants for JavaScript
    var cgiexe = "runrep.sh";
    var slash = "/";
    var colon = ":";
    var qmark = "?";
    var paramsep = "&";
    ** URL parameter values
    ** We should check for nulls, http://, etc. but not for now
    var dtlist = document.REPFORM.WEBHOST;
    var WEBHOST = dtlist.options[dtlist.selectedIndex].value;
    var WEBPORT = document.REPFORM.WEBPORT.value;
    var dtlist = document.REPFORM.SERVER;
    var SERVER = dtlist.options[dtlist.selectedIndex].value;
    var dtlist = document.REPFORM.REPORT;
    var REPORT = dtlist.options[dtlist.selectedIndex].value;
    var dtlist = document.REPFORM.P_HEADER_ID;
    var P_HDR_ID = dtlist.options[dtlist.selectedIndex].value;
    var P_REV_NBR = document.REPFORM.P_REV_NBR.value;
    var dtlist = document.REPFORM.USERID;
    var USERID = dtlist.options[dtlist.selectedIndex].value;
    var dtlist = document.REPFORM.DESTYPE;
    var DESTYPE = dtlist.options[dtlist.selectedIndex].value;
    var dflist = document.REPFORM.DESFORMAT;
    var DESFORMAT = dflist.options[dflist.selectedIndex].value;
    var dtlist = document.REPFORM.MIMETYPE;
    var MIMETYPE = dtlist.options[dtlist.selectedIndex].value;
    // construct the final URL given the parameters
    var URL = "http://" + WEBHOST + colon + WEBPORT +
    "/dev60cgi/"
    + cgiexe + qmark +
    "server=" + SERVER + paramsep +
    "report=" + REPORT + paramsep +
    "p_header_id=" + P_HDR_ID + paramsep +
    "p_rev_nbr=" + P_REV_NBR + paramsep +
    "userid=" + USERID + paramsep +
    "destype=" + DESTYPE + paramsep +
    "desformat=" + DESFORMAT + paramsep +
    "mimetype=" + MIMETYPE;
    // alert("Opening a window with the following URL : \r\r" +
    URL);
    // open the new window with the constructed URL
    //runWindow = window.open(URL);
    //Point the current window to the URL to run the form
    this.window.location.href=URL;
    function getRevision(form)
    var l_config_hdr_id =
    form.P_HEADER_ID.options[form.P_HEADER_ID.selectedIndex].value;
    window.location.href =
    "/pls/portal30/!PORTAL30.wwpob_page_util.redirect?_pageid=61&_tab
    string=&_portletmode=&_cache=1&cz.p_config_hdr_id="+l_config_hdr_
    id;
    return false;
    //-->
    </SCRIPT>
    </head>
    <body>
    <form NAME="REPFORM" METHOD="GET" onSubmit="return false">
    <table BORDER=0 CELLSPACING="5" valign="top" align="left">
    <tr>
    <td ALIGN=LEFT COLSPAN="2"><font face="arial" size="-1"><B>Enter
    configuration data and click the button to submit the selected
    report.</B></font></td>
    </tr>
    <TR><TD> </TD></TR>
    <tr><td valign="top"><table BORDER=0 CELLSPACING="2">
    <TR><TD COLSPAN="3" ALIGN="LEFT">
    <FONT COLOR="#6666CC" FACE="arial,helvetica"
    SIZE="-1"><NOBR><B>Report Parameters</B></NOBR></FONT>
    </TD></TR>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Report:</font></td>
    <td><font face="arial" size="-1"><select NAME="REPORT">
    <option SELECTED
    VALUE="portal_test_report_6i.rdf">portal_test_report_6i.rdf
    </select></font></td>
    </tr>
    <ORACLE>
    -- Dynamically retrieving the Configurator Header ID's.
    -- kreierso 8-oct-01
    declare
    v_config_hdr_id oc_config_ord_qte_lookup.config_hdr_id%type;
    begin
    v_config_hdr_id :=
    to_number(portal30.wwpro_api_parameters.get_value('p_config_hdr_i
    d','cz'));
    htp.p('<TR><TD ALIGN="left"><font face="arial"
    size="-1">Configuration Header ID:</font></TD>');
    htp.p('<TD><font face="arial" size="-1"><SELECT
    NAME="P_HEADER_ID" onchange="getRevision(this.form)">');
    htp.p('<OPTION VALUE=" "> ');
    for r_get_hdr_values in (
    select cz.config_hdr_id, cz.config_rev_nbr
    from cz_config_hdrs cz
    order by cz.config_hdr_id desc
    ) loop
    if v_config_hdr_id = r_get_hdr_values.config_hdr_id then
    htp.p('<OPTION SELECTED
    VALUE="'||r_get_hdr_values.config_hdr_id||'">'||r_get_hdr_values.
    config_hdr_id);
    else
    htp.p('<OPTION
    VALUE="'||r_get_hdr_values.config_hdr_id||'">'||r_get_hdr_values.
    config_hdr_id);
    end if;
    end loop;
    htp.p('</SELECT></font>');
    htp.p('</TD></TR>');
    htp.p('<TR><TD ALIGN="left"><font face="arial"
    size="-1">Configuration Revision:</font></TD>');
    htp.p('<TD><font face="arial" size="-1"><SELECT
    NAME="P_REV_NBR">');
    for r_get_rev_values in (
    select cz.config_rev_nbr
    from cz_config_hdrs cz
    where cz.config_hdr_id = v_config_hdr_id
    order by cz.config_rev_nbr desc
    ) loop
    htp.p('<OPTION
    VALUE="'||r_get_rev_values.config_rev_nbr||'">'||r_get_rev_values
    .config_rev_nbr);
    end loop;
    htp.p('</SELECT></font></TD></TR>');
    end;
    </ORACLE>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Format:</font></td>
    <td><font face="arial" size="-1"><select NAME="DESFORMAT">
    <option SELECTED VALUE="RTF">RTF
    <option VALUE="PDF">PDF
    <option VALUE="HTML">HTML</select></font></td>
    </tr>
    <tr><td> </td></tr>
    <tr>
    <td ALIGN=RIGHT><FONT face="arial" size="-1"><input TYPE="SUBMIT"
    NAME="Runrep" VALUE="Run Report"
    onClick="runReport();"></FONT></td>
    <td ALIGN=RIGHT><FONT face="arial" size="-1"><input TYPE="RESET"
    NAME="Reset" VALUE="Reset"></FONT></td>
    </tr>
    </table></td>
    <td valign="top"><table BORDER=0 CELLSPACING="2">
    <TR><TD COLSPAN="3" ALIGN="LEFT">
    <FONT COLOR="#6666CC" FACE="arial,helvetica"
    SIZE="-1"><NOBR><B>Report Paremeters (Hidden
    Candidates)</B></NOBR></FONT>
    </TD></TR>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Userid:</font></td>
    <td><font face="arial" size="-1"><select NAME="USERID">
    <option SELECTED
    VALUE="kreierso/password@DEV11">kreierso/password@DEV11
    </select></font></td>
    </tr>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Type:</font></td>
    <td><font face="arial" size="-1"><select NAME="DESTYPE">
    <option SELECTED VALUE="cache">cache
    <option VALUE="Printer">printer
    <option VALUE="File">file
    </select></font></td>
    </tr>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Mimetype:</font></td>
    <td><font face="arial" size="-1"><select NAME="MIMETYPE">
    <option SELECTED VALUE="application/msword">application/msword
    </select></font></td>
    </tr>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Reports
    Server:</font></td>
    <td><font face="arial" size="-1"><select NAME="SERVER">
    <option SELECTED
    VALUE="Rep60_dev11_shane.dci.com">Rep60_dev11_shane.dci.com
    </select></font></td>
    </tr>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Web Host:</font></td>
    <td><font face="arial" size="-1"><select NAME="WEBHOST">
    <option SELECTED VALUE="shane.dci.com">shane.dci.com
    </select></font></td>
    </tr>
    <tr>
    <td ALIGN=LEFT><font face="arial" size="-1">Web Port:</font></td>
    <td><font face="arial" size="-1"><input type=hidden
    NAME="WEBPORT" VALUE="7500">7500</font></td>
    </tr>
    </td></tr></table>
    <TR><TD> </TD></TR>
    <TR><TD ALIGN="CENTER" COLSPAN="2">
    <font face="arial" size="+1" color="#000099">This is currently
    being developed.... ~Thanks, Kirk.</font>
    </TD></TR>
    </table>
    </form>
    </body>
    </html>

  • How and where should I create a parameter list

    Hi, I4m trying to create a parameter lists but I don4t know where and how.
    I guess as a program unit but as function or procedure, sorry I4m new on this for that I4m finding this a bit difficult. Please, someone could help me to understand this:
    PROCEDURE Run_Emp_Report IS
    pl_id ParamList;
    BEGIN
    ** Check to see if the 'tmpdata' parameter list exists.
    pl_id := Get_Parameter_List('tmpdata');
    ** If it does, then delete it.
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List( pl_id );
    END IF;
    ** Create the 'tmpdata' parameter list afresh.
    pl_id := Create_Parameter_List('tmpdata');
    ** Add a data parameter to this parameter list that will
    ** establish the relationship between the named query
    ** 'EMP_QUERY' in the report, and the record group named
    ** 'EMP_RECS' in the form.
    Add_Parameter(pl_id,'EMP_QUERY',DATA_PARAMETER,'EMP_RECS');
    **Pass a Parameter into PARAMFORM so that a parameter dialog
    will not appear
    **for the parameters being passing in.
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    ** Run the report synchronously, passing the parameter list
    Run_Product(REPORTS, 'empreport', SYNCHRONOUS, RUNTIME,
    FILESYSTEM, pl_id, NULL);
    END;

    Hi,
    What you've pasted the code here is absolutely correct.
    You'll have to write the code in Forms builder.
    You can either paste the same code in a procedure & call that procedure
    from button's When-Button-Pressed trigger or paste the code in
    your button's When-Button-Pressed trigger like this :
    DECLARE
    pl_id ParamList;
    BEGIN
    ** Check to see if the 'tmpdata' parameter list exists.
    pl_id := Get_Parameter_List('tmpdata');
    Run_Product(REPORTS, 'empreport', SYNCHRONOUS, RUNTIME,
    FILESYSTEM, pl_id, NULL);
    END;
    However, don't write the code in a function as you will need to return some value from the function.
    Thanks,
    Mayur Shah
    [email protected]

  • CR 2008, all values in parameter list not showing up

    The parameter is not optional, the parameter value exists in the view on SQL server, but at report run-time, only get 5 pages of possible values to select from and user needs to go back farther to get the required report.
    I can get the report to run in full CR version by passing the value into the select expert, but users only get prompt window from the runtime version of CR.
    How can I get ALL the values of the field in the view to show up in parameter list?
    Thanks for any pointers.
    Robert

    Not sure if the help you metion is equivalnet to KB [1218588 - How to increase the number of values in a dynamic parameter list?|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333533383338%7D.do], but have a look.
    Also, make sure you are on SP3:
    https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • 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 select column dynamically with sharepoint list as data source in ssrs report

    Hi all,
    I am creating reports from SharePoint list but i have requirements to select the column name dynamically with SharePoint list as data source. I didn't find any way of doing this.. 
    Can anyone help me to resolve this issue..
    There is no way of specifying column name dynamically here in data set query
    <RSSharePointList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <ListName>test list</ListName>
      <ViewFields>
        <FieldRef Name="ID" />
        <FieldRef Name="ContentType" />
        <FieldRef Name="Title" />
        <FieldRef Name="Modified" />
        <FieldRef Name="Created" />
        <FieldRef Name="Author" />
        <FieldRef Name="Editor" />
        <FieldRef Name="_UIVersionString" />
        <FieldRef Name="Attachments" />
        <FieldRef Name="Edit" />
        <FieldRef Name="LinkTitleNoMenu" />
        <FieldRef Name="LinkTitle" />
        <FieldRef Name="DocIcon" />
        <FieldRef Name="ItemChildCount" />
        <FieldRef Name="FolderChildCount" />
        <FieldRef Name="test_x0020_date" />
        <FieldRef Name="title2" />
      </ViewFields>
    </RSSharePointList>

    Hi MNRSPDev,
    Sorry for the delay.
    According to the current description, I understand that you want to specify column name in dataset query designer dynamically when using SharePoint list data source.
    Based on my research, this is not supported by default. As a workaround, you can use XML data source. The XML content can be embedded directly within the query. This lets you use the expression capabilities within the processing engine to build queries and
    data dynamically within the report. And it can be used for retrieving XML data directly from an external data source, passing it using parameters, and embedding it within the query.
    Reference:
    http://www.codeproject.com/Articles/56817/Dynamic-Reports-with-Reporting-Services
    Hope this helps.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Dynamically build Portal URL

    Hello experts,
    I'm searching for a possibility to build up dynamically a portal url like this:
    http://<hostname>:<port>/irj/portal?NavigationTarget=navurl://dcaceb3f782aa37c63aedfdc8347c7b5&....
    &CurrentWindowId=WIDDefaultExternal1250835714537&NavigationContext=navurl://39fccbe94b41d07fd15b942490ec5e9e
    The goal is it to start the browser with the seached URL from an ABAP report. How to start the internet browser I allready now. Is there any ABAP class for building such urls with parameter support?
    Thanks in advance.
    Best Regards
    Clemens

    hi,
    this is one [WAY|http://help.sap.com/saphelp_nw04/helpdata/en/d3/ab0b5decd045e482d0deae9f9c90d5/frameset.htm]
    let me know is that ok for u or  ......
    if u r using webdynpro for abap  check for the manus Dua post
    How to open URL IView with dynamic url parameter (navigate_absolute)
    let me know u need more info
    ravidndra

  • Keystroke - Navigate to next parameter in parameter list

    I am using JDeveloper Studio Version 10.1.3.0.4 and am concurrently a user of MyEclipse. I love JDeveloper but am wondering what the keystroke is to automatically go to the next parameter in a parameter list. For example, if you were to type rs.setString (1.... after typing the 1, in MyEclipse you hit tab and it automatically will insert the comma and highlight the next parameter. If you are at the last parameter and are completed you hit tab and it will take you outside the end parenthesis.
    I have searched through forums and tried to google it but haven't found something simple as MyEclipse. I know it sounds petty, but efficiency is greatly increased when small keystrokes like this are available. But again, if you read this you already know that.
    Thanks!
    Alex

    I don't think there is a feature that does it right now.
    I logged ER 5981392 for this.
    In the meantime if you are up to the task you can try building an extension that will do this using the extension SDK for JDeveloper.

  • RUN_REPORT_OBJECT and parameter list

    Has anyone been able to get parameters ( user parameters) passed successfully to a report using
    RUN_REPORT_OBJECT?
    In my case the parameter list is build correctly in an oracle form (checked via degugger),
    the name of the user parameter is the same in the form and report,
    but the user parameter does not display on the report.
    I have used the name of the user parameter as the source for the report text item.
    Cheers

    I have never used the run_report_object. I used run_product without any problem.

Maybe you are looking for