Inline list of values from APEX views/tables

Hi All,
What table/view should I refer to get all the inline list of values from form on a table or view not reports (tabular forms). I want data similar to the one obtained for tabular form reports using APEX_APPLICATION_PAGE_RPT_COLSAppreciate your reply.
Thanks and Regards,
-Senthil

I think the sun caught meVery little chance of me being similarly afflicted. Typical Scottish summer.. {noformat};-){noformat}

Similar Messages

  • How to create a dropdown list to list the values from two different tables?

    Hi,
    I have the following requirement:
    1. I have to create a dropdown list to display all the values from the second column of  a table.
    2. Another dropdown list to display all the values from the second column of another table.
    3. A text box should help me to add the selected values.
    How to get this done in a PDF? Please help.
    Regards,
    Latha

    Is this a LC form? Because Acrobat forms have no concept of tables, just
    individual fields...

  • List rows with a certain value from a different table?

    Hi,
    I'm trying to list certain rows from a different table. Similar to the filter feature, kind of like a report.
    To be specific, I have 12 tables (Jan-Dec) with many entries each (as rows). Each row has a date, text and further data. Now I want to create an additional table that lists rows from the other tables that have a certain date.
    I would like to just enter that date in a header row cell so I can make a quick query. Using LOOKUP only shows the first row of that date. Is that even possible?

    Hi papalapapp,
    If you don't mind using a script, you're using Numbers 3, and all of your monthly tables are on the same sheet, then you could do something like this:
    Copy-paste script to Script Editor
    Enter date you want to filter on in the designated filterCell (here A1 of the Extract table). Make sure it is formatted exactly like the dates in the monthly tables.
    Clear any existing values from the Extract table, and make sure there are enough blank rows.
    Click the run button in Script Editor.
    SG
    property targetTable : "Extract"
    property filterCell : "A1"
    tell application "Numbers"
      tell document 1's active sheet
      set dateFilter to table targetTable's cell filterCell's formatted value
      --get all data in tables (excluding Extract table)
      set vv to {}
      repeat with t in tables
      if t's name is not targetTable then
      set vv to vv & t's rows's cells's formatted value
      end if
      end repeat
      --filter data
      set vvFilt to {}
      repeat with i from 1 to vv's length
      if vv's item i's item 1 is dateFilter then
      set vvFilt to vvFilt & {vv's item i}
      end if
      end repeat
      --write filtered data to table
      tell table targetTable
      repeat with r from 1 to (vvFilt's length)
      repeat with c from 1 to vvFilt's item 1's length
      set row (r + 1)'s cell c's value to vvFilt's item r's item c
      end repeat
      end repeat
      end tell
      end tell
    end tell

  • List of values from Database Adapter - BPM Forms

    Hi all,
    Can anyone tell me how to get list of values from Database adapter and a ServiceTask.
    As example lets say a table has Employee and Department columns.
    I want to list down all the Employees in BPM form (Select One List Box) once i provide the department to the Database Adapter.
    Is it possible from the DB Adapter?? What will be the variable type?
    Thanks,
    Nir

    Hi DanielAtwood,
    Thanks for your reply...
    Actually when i send the variable in 'WHERE Clause' in Db Adapter query it will retrieve more than one record as the output.
    I want to put that values to a 'SelectOneChoice' component and list down all the values..
    First I tried with data control. But i couldn't find the way to pass the value to the variable(in WHERE clause) to the query in data control view.
    Thanks,
    Nir

  • How I can stop the combo box with list of values from fireing validations

    Hi I'm using Jdeveloper 11.1.2.3.0
    Using Hr Schema employees table
    I Display employees data in af:table
    and I make List Of values on Department_id filed to easy change the employee department
    and another one on Job_id filed
    and Imake them UI Hints as ( combo box with list of values ) in the employeesVO
    the problem is when I Select a value from department or jobs ( combo box with list of values )
    fires the entire filed validations for mandatory atributes
    Note : the af:table Property ( contedelivery) is set to (immediate )
    How I can stop the combo box with list of values from fireing validations

    check it out.,
    http://andrejusb.blogspot.in/2012/09/what-to-do-when-adf-editable-table.html

  • Issue with creating List of Values in Business View Manager

    Hi,
    Could any one help me to figure out what this issue refers to?
    When i created a List of Values in Business View Manager, it is throwing the following error!!!!
    The List of Values used by this parameter cannot be based on a Business View derived from the current Data Foundation or Business Element.
    Prior to creating LoV, i've done successfully with creating Data connection, Data foundation, Business element and Business View..
    Thanks
    Viswa

    Hi Visaw,
    Firstly,
    -->Open Repository Explorer,
    -->where you are have related DF,DC,BV,BEand LOV's
    -->Right click on LOV's -->There you can find Schedule list of values.Then schedule list of values and check if it prompts for errors.
    If you face the same problem, what is the error you are getting.
    Else try to use the LOV's and proceed further.
          -->Check whether the LOV's are pointing to the same Business View and check the Business view pointing to the same Datafoundation.
    If you are facing the same problem then try with the below steps:
    -->Try to Create a report at designer level Using then Business view
    -->Create two new parameters and select the existing parameters(LOV parameter's)
    -->Check whether it is working.
    -->If you  face the same problem ,Update the connection of Business view manager.
    Go to Database tab-->Select Set DataSource  location and update it with current Businessview Manager.
    Try this ,and let us know.
    Regards,
    Navin

  • How  to retrieve a column field value from an ADF table ?

    All,
    I have a backing bean where I have bounded a field of an ADF table.
    I would like, in the bean, to read the value of that field so that I can use it inside a task flow router.
    The question: how to read a value from a ADF table column field ?
    In the bean I have the getter and setter of the RichInputText ADF table field. But when I type:
    System.out.println("the name is: " + this.getName().getValue());
    or
    System.out.println("the name is: " + this.Name().getValue());
    I get a null pointer exception.
    Thanks in advance,
    Sergio.

    Thanks Marvin, but this is not really what I'm looking for. Or at least, it does not sounds like to be :)
    I need to get the value contained in a row cell of an ADF table.
    Let's say the table (two rows, three cells) contains these values:
    "table_A", "123", "John"
    "table_B", "456", "Peter"
    When I click on the first row, I need the value: "table_A". Once I got that value, I extract the last char, in this case: "A", and then I call a specific task flow from a task flow router (specified in the task flow router Cases property).
    When I click on the second row, the same process applies, only the router now points to another flow view.
    So to summarize, I need to get the value of a row cell in an ADF table. How to do that from within a javaBean in JDeveloper 11g Release 2 ?
    This is what I have in the bean; so far I've bounded the related row cell (herkunft) to the bean. Each time I select a row on the ADF table, the function setHerkunft() runs - I see that from within the JDeveloper console - but when I try to get its value, I get a null value - hence the surrounding if statement.
    package bean;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    +public class taskFlowBean {+
    public RichInputText herkunft;
    public static String taskFlowView = "C";
    +public taskFlowBean() {+
    System.out.println("taskFlowBean constructor call");
    +}+
    +public void setHerkunft(RichInputText herkunft) {+
    System.out.println("set herkunft");
    this.herkunft = herkunft;
    if (this.getHerkunft().getValue() != null )
    System.out.println("herkunft is: " + this.getHerkunft().getValue());
    +//here taskFlowView will set accordingly with the herkunft value.+
    +}+
    +public RichInputText getHerkunft() {+
    System.out.println("get herkunft");
    return herkunft;
    +}+
    +public String getTaskFlowView() {+
    System.out.println("get taskFlowView ! : " this.taskFlowView);+
    return this.taskFlowView;
    +}+
    +}+
    Regards,
    Sergio.

  • Can COPA pull values from material classification tables

    Hi All,
    I know COPA can pull values from standard SAP tables like material master tables (e.g. MARA) but can it also pull values from material classification table(s)?
    Your help is greatly appreciated,
    Points will be rewarded

    Hi Kati,
    In order to derive CO-PA chars from material classification view for a
    specific material value you have to implement the CO-PA derivation exit
    (include ZXKKEU11) accordingly. It's indeed table AUSP from which you
    can get the corresponding value (field ATWRT) for each classifying
    attribute (field ATINN). In order to find out the field name for each
    ATINN number (so that the mapping to corresponding CO-PA chars can be
    done in a sensible way) you have to select additionally the ATNAM value
    from table CABN (for given ATINN number).
    BR,
    MLM

  • Retrieve values from a HTML table !!!

    Hi.
    How can i retrieve values from a HTML table using javascript ?
    I´m trying to use the command "document.getElementsByTagName" without success.
    Thanks in advance.
    Eduardo

    Hi, Deepu.
    I´m still with trouble in retrieving the value in HTML.
    In debug the C_CELL_ID seems to be correctly updated but
    when using the command "document.getElementById" the value is always "null".
    I implemented in the method DATA_CELL the code :
      if i_x = 3 and i_y = 2.
      C_CELL_ID             = 'zs'.
      C_CELL_CONTENT = 10. 
      endif.
    And in HTML :
    var ztest = document.getElementById('zs');
    alert(ztest);
    Could you help me please.
    Many regards
    Eduardo S.
    Message was edited by: Eduardo   Silberberg

  • Distinct values from dynamic internal tabls

    Hi All,
    I have a dynamic internal tables like <dy_table> , i want to get distinct  values from this internal tables,
    how to do that, structure of dynamic internal tables is dynamic acc. to user conditions.
    regards,
    Anuj

    Hi Anuj
    Just try this,
    CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
    it_fieldcatalog = tb_fields_for_it
    IMPORTING
    ep_table = gp_dyn_table.
    ASSIGN gp_dyn_table->* TO <gt_table>.
    ASSIGN LOCAL COPY OF INITIAL LINE OF <gt_table> TO <fs_table>.
    LOOP AT tb_output.
    *To assign value for serial number.
    ASSIGN COMPONENT 1 OF STRUCTURE <fs_table> TO <ls_field>.
    <ls_field> = tb_output-sno.
    UNASSIGN <ls_field>.
    *To assign value for Sales Organization.
    ASSIGN COMPONENT 2 OF STRUCTURE <fs_table> TO <ls_field>.
    <ls_field> = tb_output-vkorg.
    UNASSIGN <ls_field>.
    *To assign Rate for its respective Condition type.
    LOOP AT tb_konp WHERE knumh = tb_output-knumh.
    READ TABLE tb_fieldcat1 WITH KEY fieldname = tb_output-kschl.
    IF sy-subrc EQ 0.
    lv_count = tb_fieldcat1-col_pos.
    ASSIGN COMPONENT lv_count OF STRUCTURE <fs_table> TO <ls_field>.
    IF tb_konp-konwa EQ '%'.
    tb_konp-kbetr = tb_konp-kbetr / co_10.
    <ls_field> = tb_konp-kbetr.
    ELSE.
    <ls_field> = tb_konp-kbetr.
    ENDIF.
    ENDIF.
    ENDLOOP.
    lv_count = lv_count + 1.
    APPEND <fs_table> TO <gt_table>.
    CLEAR <fs_table>.
    ENDLOOP.
    Hope this proves helpful to you.

  • How to retrieve the values from PL/SQL table types.

    Hi Every one,
    I have the following procedure:
    DECLARE
    TYPE t1 IS TABLE OF emp%ROWTYPE
    INDEX BY BINARY_INTEGER;
    t t1;
    BEGIN
    SELECT *
    BULK COLLECT INTO t
    FROM emp;
    END;
    This procedure works perfectly fine to store the rows of employee in a table type. I am not able to retrieve the values from Pl/SQL table and display it using dbms_output.put_line command.
    Can anybody help me please!!!!!
    Thanks
    Ahmed.

    You mean, you can't add this
    for i in t.first..t.last loop
    dbms_output.put_line(t(i).empno||' '||t(i).ename||' '||t(i).job);
    end loop;or you can't add this
    set serveroutput onor maybe, you are working in third party application where dbms_output is not applicable at all?
    You see, not able like very similar it is not working - both are too vague...
    Best regards
    Maxim

  • How to set value from one view to other view's context node attr b4 save

    HI all,
    My requirement is as below:
    There are two views in component BP_CONT.
    BP_CONT/ContactDetails    IMPL class
    BP_CONT/SalesEmployee   SALESEMPLOYEE    STRUCT.SALESEMPLOYEE
    I want to set value from first view to second view's context node's attribute.
    i get Sales Employee BP number in ContactDetails view, from here i want to set that value in to STRUCT.SALESEMPLOYEE
    of second view in the same component.
    please send me code snippet for doing the same.
    Thanks in advance.
    seema

    Hi Seema
    You can access the fields from different views by either using custom controllers or by using component controllers, in your case you can access the Sales employee BP number from the Component controller.
    first access the component controller  as below in BP_CONT/SalesEmployee  (in do_prepare_output method) or in (specific setter method)
    lv_compcontroller type ref to CL_BP_CONT_BSPWDCOMPONENT_IMPL,
    lv_partner type ref to cl_crm_bol_entity,
    lv_role type string,
    lv_partner_no type string.
    lv_employee TYPE REF TO if_bol_bo_property_access,
    lv_compcontroller  = me->COMP_CONTROLLER.
    lv_partner ?= lv_compcontroller  ->typed_context->-partner->collection_wrapper->get_current( ).
    lv_role = lv_partner->get_property( iv_attr_name = 'BP_ROLE' )
    IF LV_ROLE = 'SALESEMPLOYEE'
      lv_partner_no ?= lv_current->get_property( iv_attr_name = 'BP_NUMBER' ).
    endif.
    now set the value
    lv_employee ?= me->typed_context->salesemployee->collection_wrapper->get_current( )
    CHECK lv_employee IS BOUND.
        lv_employee->set_property( iv_attr_name = 'SALESEMPLOYEE' iv_value =  lv_partner_no  )
    Thanks & Regards
    Raj

  • Bringing a list of values from a table in another sheet

    Hey everybody - Numbers / Spreasheet novice here working slowly through my project.
    So in the first image I've got 2 cells with drop-down menus for "Day of week" and "Hour of day"  - Using the both of them causes 1 of the cells in the table below it to print "True"
    My goal is to link the "True" statement with a whole bunch of different tables on other sheets.
    For example:  IF Monday / 8am is "True"  > Print the list from Sheet-2::8am
    If I want to use the same blank table for "Monday / 9am" and "Monday / 10am" am I going to have to nest 119 separate equations in the same cell?
    Is there an easier way to do this?
    Thanks!!

    "All the data is located on tables on separate sheets..."
    From your most recent description, it appears that table shown, named 8am, is the only source for the data to fill the table Day/Hour List when the two pop-up menus in the small table are set to Mon and 8am respectively, and that all of the data on 8am is to br copied to Day/Hour List.
    Extending that, I would assume that there is a similar source table for each combination of DAY and HOUR, and that setting the two pop-up menu cells determines which of these 105 tables becomes the source table for Day/Hour List.
    Since the source table ("8am") does not contain an indication of which day it is for, I'd further assume that this information is included in the Sheet name of the Sheet on which 8am is placed, and that the Sheet names are identical except for the (short) day name.
    "My dilemma - how do I write a function for the blank table that would copy the contents of the 27 row long "8am" table into the blank table
    How do I make that same function work to do the same thing if say "Tuesday 8am" was "True" instead?"
    Why bother? You can see from the small table with the day and hour pop-ups wich day and hour are selected. and it's easier to write the formula retrieving the data using those two values than to use values determined by which cell contains TRUE on a 7x15 table.
    Regarding "Mon 8am" and "Tuesday 8am": You will need to decide whether you are using full day names or short day names, then be fully consistent in that use in all instances—Sheet names, pop-up cell menu items, column headers, or any where else they might be needed in formulas.
    Does 8am contain "blank" as indicated, or is this an added note to indicate that these are actually empty cells? Do you want Day/Time List to show the text "blank", or to appear 'empty'?
    Note that only cells where data is entered directly are likely to be truly 'blank'; there's no way directly available to the user to create a truly empty cell using a formula or a pop-up menu. The closest approximation is a null string, which appears 'empty', but actually contains a zero length string (and a formula).
    Here's a possible solution, based on the assumptions above. The first example shows the result with Mon  8am selected. To the right, past the image of part of the sidebar, are images of the tables 8am and 9am from the selected sheet, Mon.
    The second example shows the same two tables (on the left), with the settings changed to Tue  9am.
    An image of two of the source charts from the Tue sheet are shown to the right of the Sheets list. Note that the Header Row in these is empty. The Header row cell in Day/Time List is filled using the data in the two pop-up menu cells.
    Formulas:
    Small table (Day Time): none. Header cells are directly entered data. Row 1 cells are pop-up menus.
    Day/Time List:
    A1: =Day Time :: A2&"  "&Day Time :: B
    A2, and filled down:
    =IF(LEN(OFFSET(INDIRECT(Day Time::$A$2&"::"&Day Time::$B$2&"::$A$1"),ROW()-1,0))<1,"",OFFSET(INDIRECT(Day Time::$A$2&"::"&Day Time::$B$2&"::$A$1"),ROW()-1,0))
    The core of this formula is this repeated part: OFFSET(INDIRECT(Day Time::$A$2&"::"&Day Time::$B$2&"::$A$1"),ROW()-1,0)
    INDIRECT is used to build an absolute reference to a cell (A1) on the table named in Day Time::B2 on a sheet named in Day Time ::A2.
    OFFSET uses the referenced cell as its base, and returns the value from the cell ROW()-1 rows below it and 0 columns to the right.
    OFFSET is enclosed in an IF statement: IF(LEN(result of formula)<1,"",result of formula)
    In the first instance of OFFSET, the result is passed to LEN(), which measures its length in characters. IF that LEN is less than 1, IF returns a null string to 'my cell'. Otherwise, IF calls OFFSET once again, and the result is returned to 'my cell.'
    Expanding the result to a 27 row table requires only adding rows to the Day/Time List table, and filling the formula into those rows.
    Regards,
    Barry

  • Poplist and displaying corresponding values from the database table

    Hi
    I have a poplist in a control block, the values of which are populated using a procedure. This is called in when-new-form-instance.
    This part works fine and values are filled in the poplist when form is opened..
    The datablock is based on a view. 3 columns from the view are selected to be displayed.
    Also the databock is filled with all values (for selected columns)
    Now when the poplist value is changed, I need the values in the datablock to be changed as well, but this is not happening.
    In my when-list-changed trigger, I have:
    go_block('datablock');
    execute_query;Please tell , where and what should I add to display the datablock values as per the poplist value.
    i.e, something like,
    select col1,col2,col3 from <view> where col4 =:control.col4
    Note:I tried in the where clause property of the block, but then nothing is displayed in the datablock
    Thanks

    This does not work , either..
    Before, when I changed the values from the list, it was still displaying same data on datablock always(all records)
    Now when I give this code,data is displayed in datablock only once(first time when the form opens)
    I have defined the Query data source type property on data block as "Table" but infact this datablock is based on a view..is this correct?
    Anything else I could try?

  • 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

Maybe you are looking for

  • Firefox for Mac: accidentally disabled full screen Flash video for Yahoo. How to reenable??

    I was looking at a video on screen.yahoo.com, and that annoying "Now entering full screen... allow/don't allow" (paraphrasing) dialog came up at the top. I must have inadvertently selected the option to disable, because now when I click the fullscree

  • Does iPad 1 support Facetime?

    Hello, I know the 1st gen iPad doesn't have the cameras. But is it still possible to support the Facetime, I mean to receive the video/audio from the other user and send only audio out? Thanks!

  • Date order in SSRS report

    Hi All; I am using below formula for date order in SSRS =Format( Fields!scheduledstartValue.Value, "MM yyyy") Date comes in teh order as below for teh year 2014 order is right but 2015 should be at the last Any much appreciated Thanks Pradnya07

  • "HP Solution Center cannot run because your device installation is not complete"

    I cannot use HP Solution Center because I only get this message when I start it: "HP Solution Center cannot run because your device installation is not complete". I am running Windows XP with an HP PhotoSmart Premium. I can print just fine and the pr

  • Edit in IPhoto

    I can see some photos in a certain event, but when I double click to edit I get a black empty screen. I know they are in the library, but why can't I edit them?