CE function to get distinct values from Column table

Hi All,
Could you please let me know the appropriate CE function to get the distinct values from column table.
IT_WORK = SELECT DISTINCT AUFNR FROM :IT_WO_DETAILS;
Thank you.

Hi,
If you have 10g, you can use Model( with model performance is better than connect by )
Solution
========================================================================
WITH t AS
(SELECT '0989.726332, 1234.567432, 3453.736379, 3453.736379, 0989.726332, 3453.736379, 1234.567432, 1234.567432, 0989.726332'
txt
FROM DUAL)
SELECT DISTINCT TRIM(CHAINE)
FROM T
MODEL
RETURN UPDATED ROWS
DIMENSION BY (0 POSITION)
MEASURES (CAST( ' ' AS VARCHAR2(50)) AS CHAINE ,txt ,LENGTH(REGEXP_REPLACE(txt,'[^,]+',''))+1 NB_MOT)
RULES
(CHAINE[FOR POSITION FROM  1 TO NVL(NB_MOT[0],1) INCREMENT 1] =
CASE WHEN NB_MOT[0] IS NULL THEN TXT[0] ELSE REGEXP_SUBSTR(txt[0],'[^,]+',1,CV(POSITION)) END );
=========================================================================
Demo
=======================================================================
SQL> WITH t AS
2 (SELECT '0989.726332, 1234.567432, 3453.736379, 3453.736379, 0989.726332, 3453.736379, 123
4.567432, 1234.567432, 0989.726332'
3 txt
4 FROM DUAL)
5 SELECT DISTINCT TRIM(CHAINE)
6 FROM T
7 MODEL
8 RETURN UPDATED ROWS
9 DIMENSION BY (0 POSITION)
10 MEASURES (CAST( ' ' AS VARCHAR2(50)) AS CHAINE ,txt ,LENGTH(REGEXP_REPLACE(txt,'[^,]+',''))+1 NB_MOT)
11 RULES
12 (CHAINE[FOR POSITION FROM  1 TO NVL(NB_MOT[0],1) INCREMENT 1] =
13 CASE WHEN NB_MOT[0] IS NULL THEN TXT[0] ELSE REGEXP_SUBSTR(txt[0],'[^,]+',1,CV(POSITION)) END );
TRIM(CHAINE)
3453.736379
1234.567432
0989.726332
SQL>
========================================================================

Similar Messages

  • 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 string value from database table using Visual Studio 2005?

    Hi,
    Im developing plugin in illustrator cs3 using visual studio 2005. I need to get the values eneterd in database. Im able to get the integer values. But while getting string values it is returning empty value.
    Im using the below code to get the values from database table
    bool Table::Get(char* FieldName,int& FieldValue)
        try
            _variant_t  vtValue;
            vtValue = m_Rec->Fields->GetItem(FieldName)->GetValue();
            FieldValue=vtValue.intVal;
        CATCHERRGET
        sprintf(m_ErrStr,"Success");
        return 1;
    Im using the below code to get the values.
    AIErr getProjects()
        char buf[5000];
        int i;   
        std::string  catName;
        ::CoInitialize(NULL);
        Database db;
        Table tbl;
        errno_t err;
        err = fopen(&file,"c:\\DBResult.txt","w");
        fprintf(file, "Before Connection Established\n");
        //MessageBox(NULL,CnnStr,"Connection String",0);
        if(!db.Open(g->username,g->password,CnnStr))
            db.GetErrorErrStr(ErrStr);
            fprintf(file,"Error: %s\n",ErrStr);
        fprintf(file, "After Connection Established\n");
    if(!db.Execute("select ProjectID,ProjectName from projectsample",tbl))
            db.GetErrorErrStr(ErrStr);
            fprintf(file,"Error: %s\n",ErrStr);
        int ProjectID;
        int UserID;
        int ProjectTitle;
        char ProjectName[ProjectNameSize];
        if(!tbl.ISEOF())
            tbl.MoveFirst();
        ProjectArrCnt=0;
        for(i=0;i<128;i++)
            buf[i]='\0';
            int j=0;
        while(!tbl.ISEOF())
            if(tbl.Get("ProjectID",ProjectID))
                fprintf(file,"Project ID: %d ",ProjectID);
                ProjectInfo[ProjectArrCnt].ProjectID = ProjectID;
                sprintf(buf,"%d",ProjectID);
                //MessageBox(NULL, buf,"f ID", 0);
                j++;
            else
                tbl.GetErrorErrStr(ErrStr);
                fprintf(file,"Error: %s\n",ErrStr);
                break;
            //if(tbl.Get("ProjectTitle",ProjectName))
            if(tbl.Get("ProjectName",ProjectName))
                MessageBox(NULL,"Inside","",0);
                fprintf(file,"ProjectTitle: %s\n",ProjectName);
                //catName=CategoryName;
                ProjectInfo[ProjectArrCnt].ProjectName=ProjectName;
                //sprintf(buf,"%s",ProjectName);
                MessageBox(NULL,(LPCSTR)ProjectName,"",0);
            else
                tbl.GetErrorErrStr(ErrStr);
                fprintf(file,"Error: %s\n",ErrStr);
                break;
            ProjectArrCnt++;
            //MessageBox(NULL, "While", "WIN API Test",0);
            tbl.MoveNext();
        //MessageBox(NULL, ProjectInfo[i].ProjectName.c_str(),"f Name", 0);
        ::CoUninitialize();
        //sprintf(buf,"%s",file);
        //MessageBox(NULL,buf,"File",0);
        fprintf(file, "Connection closed\n");
        fclose(file);
        for(i=0;i<ProjectArrCnt;i++)
            sprintf(buf,"%i",ProjectInfo[i].ProjectID);
            //MessageBox(NULL,buf,"Proj ID",0);
            //MessageBox(NULL,ProjectInfo[i].ProjectName.c_str(),"Project Name",0);
        return 0;
    In the above code im geeting project D which is an integer value. But not able to get the project name.
    Please some one guide me.

    As I said in the other thread, this really isn't the place to ask questions about a database API unrelated to the Illustrator SDK. You're far more like to find people familliar with your problem on a forum that is dedicated to answering those kinds of questions instead.

  • Need of SQL query in selecting distinct values from two tables

    hi,
    I need a query for selecting distinct values from two tables with one condition.
    for eg:
    there are two tables a & b.
    in table a there are values like age,sex,name,empno and in table b valuses are such as age,salary,DOJ,empno.
    here what i need is with the help of empno as unique field,i need to select distinct values from two tables (ie) except age.
    can anybody please help me.
    Thanks in advance,
    Ratheesh

    Not sure what you mean either, but perhaps this will start a dialog:
    SELECT DISTINCT a.empno,
                    a.name,
                    a.sex,
                    b.salary,
                    b.doj
    FROM    a,
            b
    WHERE   a.empno = b.empno;Greg

  • Get distinct values from a coma seperated string variable

    Hi ,
    I am getting an comma seperated string as in parameter, now i want to get the distinct values from that string and will use those values to pass it to a query.
    any help

    try this:
    sorry about the messiness - it's just quickly copied from some badly formatted code....
    TYPE T_FieldArray IS TABLE OF varchar2(255) INDEX BY BINARY_INTEGER;
    function SPLIT_CSV_FIELDS (
    p_Input_Str in varchar2,
    p_Delimiter in varchar2,
    p_Quote_Char in varchar2)
    return t_fieldarray is
    v_FieldArray T_FieldArray;
    v_input_str varchar2(4000);
    v_field_str varchar2(255);
    v_pos number;
    e number := 0;
    v_delim_str varchar2(3);
    cur_pos number;
    begin
    loop
    -- find each delimiter char in string
    v_pos := INSTR(v_input_str, p_Delimiter);
    -- each time delimiter char is found
    if v_pos > 0 then
    -- current field value is current string to position prior to delimiter char
    v_field_str := UPPER(SUBSTR(v_input_str, 1, v_pos - 1));
    -- remove quote char from end of field (if any)
    v_field_str := TRIM(TRANSLATE(v_field_str, NVL(p_Quote_Char, p_Delimiter), ' '));
    -- increment element number
    e := e + 1;
    -- get remainder of input string to check
    v_input_str := SUBSTR(v_input_str, v_pos + 1, LENGTH(v_input_str) - v_pos);
    v_FieldArray(e) := v_field_str;
    else
    -- increment element number
    e := e + 1;
    -- last field value is what's left of input string less quote char (if any)
    v_field_str := TRIM(TRANSLATE(UPPER(v_input_str), NVL(p_Quote_Char, p_Delimiter), ' '));
    v_FieldArray(e) := v_field_str;
    exit;
    end if;
    end loop;
    return v_FieldArray;
    end;

  • Get distinct values from plsql array

    Hi,
    I have declared a variable as below in plsql proc.
    type t_itemid is table of varchar2(10);
    inserted set of items in to this using a program
    now i want distinct values from that array how can i get it.

    I am using 9i so i cannot use set operator and more over my problem is that i am declaring the variable inside the plsql block . when i tried i am getting the below errors:
    SQL> r
    1 declare
    2 type t_type is table of varchar2(10);
    3 v_type t_type;
    4 begin
    5 v_type := t_type('toys','story','good','good','toys','story','dupe','dupe');
    6 for i in (select column_value from table(v_type)) loop
    7 dbms_output.put_line(i.column_value);
    8 end loop;
    9* end;
    for i in (select column_value from table(v_type)) loop
    ERROR at line 6:
    ORA-06550: line 6, column 41:
    PLS-00642: local collection types not allowed in SQL statements
    ORA-06550: line 6, column 35:
    PL/SQL: ORA-22905: cannot access rows from a non-nested table item
    ORA-06550: line 6, column 10:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 7, column 22:
    PLS-00364: loop index variable 'I' use is invalid
    ORA-06550: line 7, column 1:
    PL/SQL: Statement ignored

  • 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.

  • 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 select distinct values from a table when it has composite primary ke

    Hi
    I have the requirement like , I need to select distinct one column values from the table which has composite primary key. How to acheive this functioinality using view object.
    Eg : Table 1 has col1 and col2, col3
    col1 col2 col3
    1 A NA
    1 B NA
    2 A NA
    3 C NA
    2 D NA
    primary key (col1,col2)
    I have to select distinct col1.
    Thanks

    Hi
    I got the solution for above. By Creating the read only view object we can acheive this.
    thanks

  • How to dynamically get default value from a table column

    Hi all,
    Here's my problem: Our front end application sends insert and update queries to a pl/sql package. I've got a procedure that gets a PL/SQL table with all the column names an values, a table-name and a primary key name and value. That procedure creates an insert or update statement. So far, so good.
    Now the problem: our front end doesn't know what the default value for a column is. So when a number field doesn't get a value in the front-end, it's inserted with a value '0' though is should ben NULL. My sollution for this is to know the default value of a column: when there's a default of '0', then the value that will be inserted is '0'. When there's no default value and the column can ben NULL, it'll be inserted as NULL. if the column has a not null constraint, a '0' will be inserted.
    Ofcourse I can get the default value from the system-views all_tab_columns or user_tab_columns, but our application is installed at some 100 clients, and has various database installations. Most of the times, the tables are in the same schema as our procedure that performs the insert or update, but sometimes some of the tables are in another schema (in the same database) and also sometimes some tables are stored in another database. In all these situations, a synonym for that table exists in the schema.
    Is there a api function or procedure that I can call to get the default value of a column? I looked at dbms_sql and dbms_metadata, but those packages don't give me that perticular information. if not, I'll stuck with the 'does table exists in schema' yes->use table, no query user_synonyms to look for the owner of the table (and database link) and query all_tab_columns to get the default value. Only this seems a bit overkill to me.
    I hope I'm clear enough? And please don't reply with "don't do inserts this way"! I know, this is not the most optimal sollution, but it does gives us a couple of advantages in our application...

    there is no way that I can think of, apart from what you have already discovered (i.e. views), where you can determine if a column has a defuault value defined against it.
    The other option is triggers, but I guess doing that across 600 tables would not be an option, and besides I stay clear of triggers.
    A different approach therefore, if you cannot pre-determine the data, is to consider a post problem handler, hence I suggested the use of an exception handler.
    The exception handler works regardless of whether the statement is dynamic or not.
    SQL> truncate table abc;
    Table truncated.
    SQL>
    SQL> declare
      2    NULLVAL exception;
      3    pragma exception_init(NULLVAL, -01400);
      4 
      5  begin
      6 
      7    begin
      8 
      9      execute immediate 'insert into abc (y) values (1)';
    10 
    11      exception
    12        when NULLVAL then
    13          -- handle the error
    14          execute immediate 'insert into abc (x,y) values (0,1)';
    15 
    16    end;
    17 
    18    commit;
    19   
    20  end;
    21  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select * from abc;
             X          Y
             0          1

  • How 2 make a function that gets a value from DB without reloading?

    Hi every1,
    I'm facing this problem where I have to get a value (which always change) from database through a button function which is in Java scriplet.
    Now the scriplets (codes within <% and %>) contain calls to the database which get the value, but this is only done when the page loads. So everytime I neeed to get the latest value, I need to reload the code. Is there a way around this?
    Thanks!
    Regards,
    Venus

    Add a meta refresh header to let the page refresh itself at certain intervals.
    <meta http-equiv="refresh" content="10">This will refresh the current page every 10 seconds.
    By the way, Java code belongs in Java classes, not in JSP files. Avoid scriptlets as much as possible. In this case use a Servlet and a DAO.

  • Get cell value from Woodstock table

    Hello,
    I am using a Woodstock Basic Table from the NB palette.
    One of the columns is editable and I need to get the updated values upon a button click event.
    How do I get the value of a specific cell from the table?
    Thanks

    Hi Rajashekar ,
    here is the code :
    // Get a handle to the table footer bean
    OATableBean tableBean = ...;
    OATableFooterBean tableFooterBean = tableBean.getFooter();
    if (tableFooterBean != null)
    // Get a handle to the total row bean
    OATotalRowBean totalRowBean = tableFooterBean.getTotal();
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Get inputText value from ADF table

    Hi
    I have a read-only table and a custom column of inputText for entering values by user. My question is that how can I get inputText values row by row in backing bean?
    I founded some solutions that got values from binding, but it isn't useful for me. I should get the user entered values.
    I am so confusing than can't find any solution for this common need.
    Thanks
    Ali

    hi user,
    My question is that how can I get inputText values row by row in backing bean?
    have a listener do as like of dvohra says.if it is not work for you means.
    have DCIteratorBindings class grab the corresponding iterator then iterate row by row to get the value. but it should a persistent attribute.
    thanks

  • How to get selected value from a Table?

    Dear Friends,
    when i select a value form the table i want that value to be passed to controller for deleting that record,
    please help in understaning what code must i write for the same?
    the  "Zpms_Master_Input.Output.It_P9001.Employee_Code" is the first field which i want to capture in some context or temp. variable to pass it on to controller for further porcessing.
    please give a sample code on how do i catch this employee code value and use it for my processing.
    Regards,
    Jack
    Edited by: Jack on Dec 6, 2011 11:20 AM

    Hi Kumar you have perfectly understood my requirement .... i tried coding as per your suggestion but not able to get through ...it seems with little help i would make it... the code i am writing here is as follows.
    input.setMode("DEL" );          
    P9009 inputParaABC = new P9009();     
    //inputParaABC.setEmployee_Code("2134"); ---> when i pass a hard coded employee code value i am able to delete
    //<your variable> = wdContext.current<tableNodeElement>.get<fieldname> ; --> your suggestion
    inputParaABC.setEmployee_Code(wdContext.currentIt_P9009Element().getEmployee_Code()); 
                              --> Here as per your  suggestion i am not getting a <tableNodeElement> prompt by the system, it only gives
                              --> wdContext.currentIt_P9009Element() or .createOutputElement etc but no tableNode
    the above code i have wriiten on the Controller where in am executing the RFC, how do we adjust the TableNodeElement thing in my code?? 
    Please help.

  • Getting unique values from internal table

    Hi Gurus,
    From time to time I hit this problem and so far I havn't found any nice solution. I've an internal table with several fields. I would like to get all unique values for one (or several) of these fields. However let say that this table has a lot of entries so making a copy is not an option. Also changing this table in any way is forbiden.
    For example for table below I would like to get all unique values for field Number. In this case it would be 1,2,3,4.
    Name  | Number |
    name1 | 1|
    name2 | 2|
    name3 | 2|
    name4 | 3|
    name5 | 4|
    name5 | 3|
    Can anyone propose me better solution than going in the loop through all entries in table? Maybe there is some ABAP functionality that I don't know about?
    BR
    Marcin Cholewczuk

    Let's say that if I sort this table I won't be able to restore it to previous order which is important for me
    True...If you sort the table you won't be able to restore. So the only option is to copy/move all the records into another table.
    Sorting If you need to retrive unique values. I don't think without sorting the table would be a nice idea and proper programming to proceed ahead.
    Regarding logic, as replied earlier
    Either we can go with DELETE ADJACENT DUPLICATES or proceed as replied in my earlier post. There might be number of algorithms to resolve this. But we cannot go ahead without sorting or looping.

Maybe you are looking for

  • Can I watch iTunes-purchased movies from an Airport Extreme USB disk?

    With the newest Airport firmware (7.6.1), it seems I should be able to do this. My scenario is so basic, I can't understand why I'm having trouble achieving this. - I have a MacBook Pro running OS X 10.7.2 - since it's a laptop, I don't want to leave

  • Formula planning function in IP

    Hi, I would like to have formula planning function IP. The user is able to input percentage of growth, inflation and savings. Then the system has to calculate the percentages on previous budget and calculate the current budget. How the variant can be

  • SQL Server Analysis Services not showing in Services on Server on Central Admin

    Hi All We have a Sharepoint 2013 farm set up (2xApp, 2xWeb, 1xSQL) and we have a number of excel powerpivot workbooks deployed and refreshing. This was all working fine, until recently when our Excel 2013 Tabular workbooks stopped refreshing manually

  • How can I buy a film from an ohter store?

    How can I buy a film from an ohter iTunes store? I have an Austrian Apple ID and want to buy something from Germany iTunes Store because in the Austrian store you won't get it. I look forward to hearing from someone!

  • 100% zoom vs one/two page display

    If I hit one page view, the text gets scrunched down to a hard to read level.  If I hit 100% zoom I see two pages.  What I'd like to do is see the document in 100% and then simply keep scrolling down.  It seems like Word 2007 really forces you into a