How to get distinct values from a list and display in a ListView webpart.

Hi,
I have a requirement in which I need to pull unique/distinct values from a custom list and then display it via a listview webpart. Can any one suggest how this can be done.
If possible please share the CAMEL query to fetch distinct values from a custom list.
Thanks,
Ankit

Hi Ankit,
Is there any particular reason that the values need to be shown in a list view web part?  Are you going to use that web part for filtering via web part connections?
I ask because the enterprise site collection features include the SharePoint List Filter web part, which may accomplish what you're looking for.
If you just need to display the values in a grid view, you might have more luck with the JavaScript Client Object Model.  Try putting the following in a text file:
<style>
.CustomTableClass{display:table;table-layout:fixed}
.CustomRowClass{display:table-row;}
</style>
<div id="distinct_values_div" class="CustomTableClass">
<img src="/_layouts/loading.gif" />
</div>
<script language="JavaScript" type="text/JavaScript">
var siteUrl = '/sitecollection/web'; //use the actual subsite URL here
var listName = 'mylist'; // use the actual list name here
var field = "Title" // use the actual field you want to display here
var divToUpdate = document.getElementById("distinct_values_div");
var rowClass = "CustomRowClass";
ExecuteOrDelayUntilScriptLoaded(function(){
var clientContext = new SP.ClientContext(siteUrl);
var web = clientContext.get_web();
var lists = web.get_lists();
var list = lists.getByTitle(listName);
var camlQuery = new SP.CamlQuery();
camlQuery.set_viewXml('<View><Query></Query><RowLimit>500</RowLimit></View>');
this.collListItem = list.getItems(camlQuery);
clientContext.load(collListItem,"Include ("+field+")");
clientContext.executeQueryAsync(
Function.createDelegate(this, this.onQuerySucceeded),
Function.createDelegate(this, this.onQueryFailed));
},"sp.js");
function onQueryFailed(sender, args){
divToUpdate.innerHTML = 'Unable to retrieve values: '+args.get_message());
function onQuerySucceeded(sender, args){
var allValues = [];
var listItemEnumerator = collListItem.getEnumerator();
divToUpdate.innerHTML = "";
while(listItemEnumerator.moveNext()){
var listItem = listItemEnumerator.get_current();
if(!containsString(allValues,listItem.get_item(field)){
var value = listItem.get_item(field);
allValues.push(value);
var newDiv = document.createElement("div");
newDiv.className = rowClass;
newDiv.innerHTML = value;
divToUpdate.appendChild(newDiv);
function containsString(strArray, text){
var contains = false;
for (var i=0; i<strArray.length; i++){
if(strArray[i]==text){contains = true; break;}
return contains;
</script>
Upload the text file to a library on the site, then add a content editor web part to a page where you want the distinct values to appear. In the content editor web part's properties, edit the Content Link so that it links directly to the text file.  This
will cause the JavaScript to run on the page.

Similar Messages

  • How to get actual value from LOV list

    Like Subject says: How to get actual value from LOV list. Any help will be appreciated.
    Thanks.

    Thanks Shay, I did it with bind variable because I'm not using JSF. Is there any chance to post solution using standard JSTL or HTML expression. I have something like this: LOV displays some Companies names:
    <html:select property="UserJobCompanyId"
                             disabled="${!bindings[\'UserJobCompanyId\'].updateable}"
                             onchange="submitform();">
                  <html:optionsCollection label="prompt" value="index" property="UserJobCompanyId.displayData"/>                                                     
                </html:select>and I want to get CompanyID of selected Company.
    Thanks, again.

  • How to get Distinct Values from Answers

    Hi,
    How to get Distinct values from answers, i've tried to put some functions on it.
    Thanks,
    Malli

    Malli,
    Are you trying to fetch data from Dimension Attr OR Fact Measures? Did you try the advance tab - > Advanced SQL Clauses - > Check this box to issue an explicit Select Distinct.

  • How to get multiple values from the list

    I've a list of an item which I queried it from the database. I also created a button that will takes a selected items from the list when it was clicked. I used javabean to get the data from database.
    <%     // clicked on Select District Button
    Vector vselectedDistrict = new Vector();
    Vector vdistrictID = new Vector();
    String tmpSelectDistrict = "";
    tmpSelectDistrict = request.getParameter("bSelectDistrict");
    if(tmpSelectDistrict != null)
         // get multiple values from the list
         String[] selectedDistrict = request.getParameterValues("usrTDistrict");
         vselectedDistrict.clear();
         vdistrictID.clear();
         if((selectedDistrict != null) && (selectedDistrict.length != 0))
                             for(int i=0;i<selectedDistrict.length;i++)
                   vselectedDistrict.addElement(selectedDistrict);           
              vdistrictID = dbaseInfo.getcurrentDistrictID(nstate,vselectedDistrict);
              for(int i=0;i<vdistrictID.size();i++)
                   out.println("district = " + selectedDistrict[i]);                         out.println("district ID= " + vdistrictID.get(i).toString());
    %>
    // get vdistrict from the database here......
    <select name="usrTDistrict" size="5" multiple>
    <%     for(int i = 0; i< vdistrict.size(); i++)
    %>
         <option value="<%=vdistrict.get(i).toString()%>"><%=vdistrict.get(i).toString()%></option>
    <%
    %>          
    </select>
    <input type="submit" name="bSelectDistrict" value="Select District">
    Lets say the item that i selected from the list is 'Xplace' and I clicked on the Select District button,
    what I got is this error message:
    org.apache.jasper.JasperException: Unable to convert string 'Xplace' to class java.util.Vector for attribute usrTDistrict: java.lang.IllegalArgumentException: Property Editor not registered with the PropertyEditorManager
    So where is going wrong and what the message means?. Any help very much appreciated. Thanks

    These are just guesses that might hopefully steer you in directions you haven't looked in yet.
    I presume you used triangle brackets (< >) to avoid having the Jive Forum think it was the "italics" tag?
    Are you certain this: dbaseInfo.getcurrentDistrictID(nstate,vselectedDistrict);
    expects a Vector as its second parameter? And returns a Vector?
    I don't believe you've shown how you use the javabean, or its code? Perhaps it should be rewritten to accept an array of strings instead of a Vector?

  • How to get the value from a JavaScript and send the same to Java file?

    Hi.
    How to get the value from a JavaScript (this JS is called when an action invoked) and send the value from the JS to a Java file?
    Thanks and regards,
    Leslie V

    Yes, I am trying with web application.
    In the below code, a variable 'message' carries the needed info. I would like to send this 'message' variable with the 'request'.
    How to send this 'message' with and to the 'request'?
    Thanks for the help :-)
    The actual JS code is:
    function productdeselection()
    var i=0;
    var j=0;
    var deselectedproduct = new Array(5);
    var message = "Are you sure to delete Product ";
    mvi=document.forms[0].MVI;
    mei=document.forms[0].MEI;
    lpi=document.forms[0].LPI;
    if(null != mvi)
    ++i;
    if(null != mei )
    ++i;
    if(null != lpi)
    ++i;
    if(null != mvi && mvi.checked)
    deselectedproduct[++j]="MVI?";
    if(null != mei && mei.checked)
    deselectedproduct[++j]="GAP?";
    if(null != lpi && lpi.checked)
    deselectedproduct[++j]="LPI?";
    if( 0!=j)
    if(i!=j)
    for (x=0; x<deselectedproduct.length; x++)
    if(null != deselectedproduct[x])
    message =message+ "-" +deselectedproduct[x];
    alert(message);
    else
    //alert(" You cannot remove all products!");
    return false;
    return true;
    }

  • How to get the value from select list to text box

    Hi,
    I have a select list i want to retrieve the value from select list to text box.
    How can i do that???
    Regards,
    Sakthi.

    Hi Sakthi,
    Yo can use the Java script for that..
    Dynamically the value will come into text box.
    Use the below script.
    <script type="text/javascript">
    function disFormItems()
    var lReturn = $v(here your select list name)
    alert(lReturn);
    document.getElementById(here your text box name).value =lReturn; }
    </script>Cheers,
    Shan

  • How to get total value from checkbox list?

    I have a list of checkbox items - all number values. I want to then get the total value from all of the check items and add that value to the database. Can this be done?
    Also, anyone know of one source where I can get detailed information on how to best use Web Apps and all of it's possibilities and limitations? Most of the tutorials that I have seen so far say that you can do most anything with Web Apps; however, the tutorial examples leave a lot of questions unanswered. I saw that Adobe has an article that shows how to build a basic web app and that it is "part 1" in a series. Anyone know where to find parts 2, 3, etc?
    Thanks,

    Hi there,
    Good day, i hope this will give you some ideas
    for example this is your html
    <input type="checkbox" name="test" value="1">1
    <input type="checkbox" name="test" value="2">2
    <input type="checkbox" name="test" value="3">3
    <input type="checkbox" name="test" value="4">4
    and this is your jquery script
    <script type="text/javascript">
    jQuery("input@[name='test']").click(function() {
        var istrue = jQuery(this).is(":checked");
        if(istrue == true) {
            var urvalue = jQuery(this).val();
            alert(urvalue);
    </script>
    hope this helps you

  • How to get distinct values from this view

    I had created a view to get to display from 2 tables.But i got duplicate values in this.
    Please give any solution for this view code.
    CREATE OR REPLACE VIEW TRADEQUOTEHISTORY_VIEW
    (BOND_ID, BOND_NAME, COMM_PER_SHARE, QUOTE_DATE_TIME, TYPE,
    STOCK_PRICE, BID_PRICE, ASK_PRICE, ACTUAL_HEDGE, SOURCE_ORDER_ID,
    SOURCE_ORDER_NAME, NOTES, SIDE_ID, BIDNUKED, ASKNUKED,
    REALSTOCK, LAST_UPDATED_DATE)
    AS
    SELECT bi.bond_id, bi.bond_name,
    ( (bs.comm_per_share * bi.cv_cnvs_ratio * bs.hedge)
    / (bi.px_pos_mult_factor)
    nq.quote_date_time, bi.market_sector_des, nq.stock_price,
    nq.bid_price, nq.ask_price, nq.actual_hedge, so.source_order_id,
    so.source_order_name, nq.notes, bs.side_id,
    ( bs.bid_price
    + ( (csv.lastprice - bs.stock_price)
    * bi.cv_cnvs_ratio
    * bs.hedge
    / bi.px_pos_mult_factor
    ( bs.ask_price
    + ( (csv.lastprice - bs.stock_price)
    * bi.cv_cnvs_ratio
    * bs.hedge
    / bi.px_pos_mult_factor
    csv.lastprice,
    bs.last_updated_date
    FROM mtsc_bondinfo bi,
    mtsc_basissheet bs,
    mtsc_newquoteorder nq,
    mtsc_sourceorder so,
    mtsc_stock_v csv
    WHERE bi.bond_id(+) = bs.bond_id
    AND bs.bond_id(+) = nq.bond_id
    AND csv.bondid = bs.bond_id
    AND so.source_order_id(+) = nq.source_order_id
    UNION
    SELECT bi.bond_id, bi.bond_name,
    ( (bs.comm_per_share * bi.cv_cnvs_ratio * bs.hedge)
    / (bi.px_pos_mult_factor)
    nq.quote_date_time, bi.market_sector_des, bs.stock_price,
    bs.bid_price, bs.ask_price, bs.hedge, so.source_order_id,
    so.source_order_name, nq.notes, bs.side_id,
    ( bs.bid_price
    + ( (csv.lastprice - bs.stock_price)
    * bi.cv_cnvs_ratio
    * bs.hedge
    / bi.px_pos_mult_factor
    ( bs.ask_price
    + ( (csv.lastprice - bs.stock_price)
    * bi.cv_cnvs_ratio
    * bs.hedge
    / bi.px_pos_mult_factor
    ),csv.lastprice,
    bs.last_updated_date
    FROM mtsc_bondinfo bi,
    mtsc_basissheet bs,
    mtsc_newquoteorder nq,
    mtsc_sourceorder so,
    mtsc_stock_v csv
    WHERE bi.bond_id(+) = bs.bond_id
    AND bs.bond_id(+) = nq.bond_id
    AND csv.bondid = bs.bond_id
    AND so.source_order_id(+) = nq.source_order_id
    ORDER BY last_updated_date DESC
    result is coming like this
    BOND_ID     BOND_NAME     ((BS.COMM_PER_SHARE*BI.CV_CNVS_RATIO*BS.HEDGE)/(BI.PX_POS_MULT_FACTOR))     QUOTE_DATE_TIME     MARKET_SECTOR_DES     STOCK_PRICE     BID_PRICE     ASK_PRICE     ACTUAL_HEDGE     SOURCE_ORDER_ID     SOURCE_ORDER_NAME     NOTES     SIDE_ID     (BS.BID_PRICE+((CSV.LASTPRICE-BS.STOCK_PRICE)*BI.CV_CNVS_RATIO*BS.HEDGE/BI.PX_POS_MULT_FACTOR))     (BS.ASK_PRICE+((CSV.LASTPRICE-BS.STOCK_PRICE)*BI.CV_CNVS_RATIO*BS.HEDGE/BI.PX_POS_MULT_FACTOR))     LASTPRICE     LAST_UPDATED_DATE
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     9     135     104     25     41     STREET MARKET     AN     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     9     135     104     25     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     9     135     104     25     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     9     135     104     25     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     9     300     400     25     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     9     300     400     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     9     300     400     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     9     300     400     25     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:55:15 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     135     104     25     41     STREET MARKET     AN     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     300     300     25     41     STREET MARKET     AN     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     135     104     25     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     300     300     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     135     104     25     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     300     300     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     135     104     25     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     300     300     25     41     STREET MARKET     New Notes     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80066.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     9     200     200     25     41     STREET MARKET     AN     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     9     200     200     25     41     STREET MARKET     fgdf dfgf     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     9     200     200     25     41     STREET MARKET     HGH HHGHF     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     9     200     200     25     41     STREET MARKET     New Notes     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79966.4     79966.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     08/01/2007     Corp     9     300     400     25     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     09/01/2007     Corp     9     300     400     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     11/01/2007     Corp     9     300     400     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     17/07/2007 7:06:20 PM     Corp     9     300     400     25     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     5591906636.41908     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:55:14 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     9     135     104     25     41     STREET MARKET     AN     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     9     135     104     25     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     9     135     104     25     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     9     135     104     25     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     08/01/2007     Corp     9     300     400     25     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     9     300     400     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     11/01/2007     Corp     9     300     400     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     9     300     400     25     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     62812767.6093129     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:49:17 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     01/08/2007 12:49:04 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     200     200     25     41     STREET MARKET     AN     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     200     200     25     41     STREET MARKET     fgdf dfgf     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     200     200     25     41     STREET MARKET     HGH HHGHF     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     200     200     25     41     STREET MARKET     New Notes     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79966.4     79966.4     905     01/08/2007 12:48:22 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     300     400     25     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     300     400     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     300     400     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     300     400     25     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:02:32 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     300     400     25     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     300     400     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     300     400     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     300     400     25     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 12:01:05 PM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     08/01/2007     Corp     9     300     400     25     41     STREET MARKET     AN     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     9     300     400     25     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     11/01/2007     Corp     9     300     400     25     41     STREET MARKET     HGH HHGHF     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     9     300     400     25     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     705563.241890625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     80066.4     80166.4     905     01/08/2007 11:58:23 AM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     08/01/2007     Corp     9     135     104     25     41     STREET MARKET     AN     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     9     135     104     25     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     11/01/2007     Corp     9     135     104     25     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     9     135     104     25     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     7925.450625     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     31/07/2007 10:55:09 PM
    106     007903AK3 Corp     89.025     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     08/01/2007     Corp     9     135     104     25     41     STREET MARKET     AN     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     09/01/2007     Corp     9     135     104     25     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     11/01/2007     Corp     9     135     104     25     41     STREET MARKET     HGH HHGHF     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     17/07/2007 7:06:20 PM     Corp     9     135     104     25     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79901.4     79870.4     905     31/07/2007 5:53:25 PM
    106     007903AK3 Corp     89.025     08/01/2007     Corp     6     7     78     78     41     STREET MARKET     AN     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     08/01/2007     Corp     9     130     104     25     41     STREET MARKET     AN     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     09/01/2007     Corp     9     130     104     25     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     09/01/2007     Corp     200     5     7     8     41     STREET MARKET     fgdf dfgf     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     11/01/2007     Corp     4     6     6     8     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     11/01/2007     Corp     9     130     104     25     41     STREET MARKET     HGH HHGHF     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     17/07/2007 7:06:20 PM     Corp     9     130     104     25     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    106     007903AK3 Corp     89.025     17/07/2007 7:06:20 PM     Corp     67     78     90     34     41     STREET MARKET     New Notes     110     79896.4     79870.4     905     31/07/2007 1:05:18 AM
    Regards
    Kishore B

    BOND_ID     BOND_NAME     ((BS.COMM_PER_SHARE*BI.CV_CNVS_RATIO*BS.HEDGE)/(BI.PX_POS_MULT_FACTOR))     QUOTE_DATE_TIME     MARKET_SECTOR_DES     STOCK_PRICE     BID_PRICE     ASK_PRICE     ACTUAL_HEDGE     SOURCE_ORDER_ID     SOURCE_ORDER_NAME     NOTES     SIDE_ID     (BS.BID_PRICE+((CSV.LASTPRICE-BS.STOCK_PRICE)*BI.CV_CNVS_RATIO*BS.HEDGE/BI.PX_POS_MULT_FACTOR))     (BS.ASK_PRICE+((CSV.LASTPRICE-BS.STOCK_PRICE)*BI.CV_CNVS_RATIO*BS.HEDGE/BI.PX_POS_MULT_FACTOR))     LASTPRICE     LAST_UPDATED_DATE
    109     018490AL6 Corp     18871.341129          Corp     27     139     166     87                    110     120752.494     120779.494     905     01/08/2007 12:55:26 PM
    109     018490AL6 Corp     18871.341129          Corp          null     null     null     null               110     120752.494     120779.494     905     01/08/2007 12:55:26 PM
    I am not inserting values into newquoteorder,but i got values from that table ask,bid,stock values, it shows that values as null

  • How to get the values from table region and how to set

    Hi,
    I have a requirement as Seeded Page Having One Table Region having around 8 columns, In That Item Description field is there. My Requirement is I need add one more field for that Region and assign the value depending Item Description.
    I will create one new Item in that region and will give name as Item, But how to set the values to Item Depending on Item Description.
    Is it possible to through CO Extension, If yes..Pls help how to get it.
    Thanks in Advance,
    Hanimi

    Hi Hanimi,
    1. You need to extend the VO, add a new Attribute.
    2. In VORowImpl of the extended VO, you can find the getter for your new attribute (example getItem())
    3. In this getter method you can write some code like:
    if("ABC".equals(getItemDescription())
    return "XYZ" ;
    -Prince
    http://princekapoor82.blogspot.com

  • Getting Email Value from web.xml and displaying in JSF

    HI,
    I have a web.xml with the entry:
    <env-entry>
            <description>The email address for the Support Team.</description>
            <env-entry-name>support</env-entry-name>
            <env-entry-type>java.lang.String</env-entry-type>
            <env-entry-value>[email protected]</env-entry-value>
    </env-entry>I want to display on the JSF the value *"[email protected]"*. I dont want to Hard Code the Email Id on the JSF hence I am looking for this solution.
    One way would be to get the value of the email in a backing bean and then setting a managedBeanValue which will be accessed in the JSF Display page.
    My question is how do I get the email value in my backing bean ?
    Thanks in advance !!!

    I tried using this code:
        FacesContext context = FacesContext.getCurrentInstance();
        ServletContext servletContext = (ServletContext)context.getExternalContext().getContext();
        String value = (String)(servletContext.getAttribute("support");But when I do a System Out on value I get null
    Please Help.
    Thanks in advance

  • How to get the value from a label and store it in an sql database?

    I have tried all kinds of different ways and I always get the error that it is not a member of string or whatever data type I try.
    Try
    scoringlbl.Text.Validate()
    scoreinglbl.Text.HighScoresBindingSource.EndEdit()
    scoringlbl.Text.HighScoresTableAdapter.Update(Me.ScoresDataSet.HighScores)
    MsgBox("Update successful")
    Catch ex As Exception
    MsgBox("Update failed")
    End Try

    I know nothing about data binding, but maybe this works, or at least point you in the right direction:
    Try
    scoringlbl.Validate()
    HighScoresBindingSource.EndEdit()
    HighScoresTableAdapter.Update(ScoresDataSet.HighScores)
    MsgBox("Update successful")
    Catch ex As Exception
    MsgBox("Update failed")
    End Try
    Armin

  • How to get the value from databank

    Hi,
    How to get the value from databank? and how to set the same value to visual script object?
    thanks,
    ra

    Hi,
    You can use GetDatabankValue(HeaderName, Value) to get the value from databank and SetDataBankValue(HeaderName, Value) to set the value to databank.
    You can refer to the API Reference to see list of associated functions and techniques we can use with related to Data Bank.
    This is the for OFT but if you are using Open Script then you have direct access for getting the databank value but when it comes to setting a value you have to use File operation and write you own methods to do the set operation.
    Thanks
    Edited by: Openscript User 100 on Nov 13, 2009 7:01 AM

  • How to get string value from xml in JSF??

    In JSF How to get string value from xml, .ini and properties file. I want to get string value from xml or text to JSF

    Just use the appropriate API's for that. There are enough API's out which can read/parse/write XML, ini and properties files. E.g. JAXP or DOM4J for xml files, INI4J for ini files and Sun's own java.util.Properties for propertiesfiles.
    JSF supports properties files as message bundle and resource bundle so that you can use them for error messages and/or localization.

  • How to get a value from JavaScript

    How to get return value from Java Script and catch it in c++ code. I have tried following code, but its not working in my case.
    what I want is if it returns true then call some function if it returns false then do nothing, so how to get those values in c++
    ScriptData::ScriptDataType fDataType = resultData.GetType();
    if (fDataType == kTrue)
           CAlert::InformationAlert("sucess");
           //call some function
                        else
                                  CAlert::InformationAlert("Error");
         // do nothing
    JavaScript Code:
        if(app.scriptArgs.isDefined("paramkeyname1"))
               var value = app.scriptArgs.get("paramkeyname1");
               alert(value);
                return true;
      else
               alert ("SORRY");
               return false;

    How to get java script result into JSResult i m not getting it.
    I have wriiten follwing code in c++ :
              WideString scriptPath("\\InDesign\\Source1.jsx");
              IDFile scriptFile(scriptPath);
              InterfacePtr<IScriptRunner>scriptRunner(Utils<IScriptUtils>()->QueryScriptRunner(scriptFi le));
              if(scriptRunner)
                        ScriptRecordData arguments;
                        ScriptIDValuePair arg;
                        ScriptID aID;
                        ScriptData script(scriptFile);
                        ScriptData resultData;
                        PMString errorString;
                        KeyValuePair<ScriptID,ScriptData> ScriptIDValuePair(aID,script);
                        arguments.push_back(ScriptIDValuePair);
                        PMString paramkeyname1;
                        Utils<IScriptArgs>()->Save();
                        Utils<IScriptArgs>()->Set("paramkeyname1",scriptPath);
                        Utils<IScriptUtils>()->DispatchScriptRunner(scriptRunner,script,arguments,resultData,erro rString,kFalse);
                        Utils<IScriptArgs>()->Restore();
                        ScriptData::ScriptDataType fDataType = resultData.GetType(); // here i should get true or false which i m passing it from javascript code......not as s_boolean
                        if (fDataType == kTrue)
                                       //CAlert::InformationAlert("sucess");
                                     iOrigActionComponent->DoAction(ac, actionID, mousePoint, widget);
                        else
                                    this->PreProcess(PMString(kCstAFltAboutBoxStringKey));
    Java script code:
    function main()
           var scrpt_var;
           var scriptPath,scrptMsg;
           var frntDoc=app.documents[0];
           if(app.scriptArgs.isDefined("paramkeyname1"))
               var value = app.scriptArgs.get("paramkeyname1");
                alert(value);
                 return true; // i want this value i should get in c++ code...How to get these values in c++
           else
              alert ("Error");
              return false; // i want this value i should get in c++ code...How to get these values in c++

  • How to get selected value from selectOneRadio ???

    Hi...i want to how to get selected value from selectOneRadio and use it in another page and in backing bean.
    Note i have about 10 selectOneRadio group in one page i want to know value of each one of them.
    Plzzzzzzzz i need help

    You have a datatable in which each row is a question, correct?
    Also in each row you have 5 possible answers that are in a radio, correct?
    So,
    You need to put in your datatable model, a question, and a list of answers (5 in yor case) and the selected one.
    So you will have a get to the question, an SelectItem[] list to populate the radios and another get/set to the selected question.
    ex:
    <h:selectOneRadio value="#{notas.selectedString}" id="rb">
    <f:selectItem itemValue="#{notas.valuesList}"/>
    </h:selectOneRadio>
    Search the web for examples like yours.

Maybe you are looking for