Select statement help

I need somebody to look at this statement for me.  I can't figure out why it is giving me a syntax error:
DATA: meg001 LIKE coss-meg001,
      meg002 LIKE coss-meg002,
      meg003 LIKE coss-meg003,
      meg004 LIKE coss-meg004,
      meg005 LIKE coss-meg005,
      meg006 LIKE coss-meg006,
      meg007 LIKE coss-meg007,
      meg008 LIKE coss-meg008,
      meg009 LIKE coss-meg009,
      meg010 LIKE coss-meg010,
      meg011 LIKE coss-meg011,
      meg012 LIKE coss-meg012.
    SELECT SINGLE meg001 meg002 meg003 meg004 meg005 meg006 meg007 meg008 meg009 meg010 meg011 meg012
            INTO (d_meg001, d_meg002, d_meg003, d_meg004, d_meg005, d_meg006, d_meg007, d_meg008, d_meg009, d_meg010, d_meg011, d_meg012)
            FROM coss WHERE objnr = wa_table-objnr.
Regards,
Aaron

Where did you declare d_meg001?
it should be into (meg001 , meg002....)
DATA: meg001 LIKE coss-meg001,
      meg002 LIKE coss-meg002,
      meg003 LIKE coss-meg003,
      meg004 LIKE coss-meg004,
      meg005 LIKE coss-meg005,
      meg006 LIKE coss-meg006,
      meg007 LIKE coss-meg007,
      meg008 LIKE coss-meg008,
      meg009 LIKE coss-meg009,
      meg010 LIKE coss-meg010,
      meg011 LIKE coss-meg011,
      meg012 LIKE coss-meg012.
data: v_objnr type coss-objnr.
    SELECT SINGLE meg001 meg002 meg003 meg004 meg005 meg006 meg007 meg008 meg009 meg010 meg011 meg012
            INTO (meg001, meg002, meg003, meg004, meg005, meg006, meg007, meg008, meg009, meg010, meg011, meg012)
            FROM coss WHERE objnr = v_objnr.

Similar Messages

  • MySQL Select Statement Help Required

    I am trying to generate a report in VS 2008 (C#) using a mysql select statement but cannot get it right.
    I have groups that meet on a weekly basis on different days. I want to generate a report that shows me all the members that have not attended their group where they have missed 3 meetings in a row.
    Below is the select statement I have tried but it does not give me the results I am looking for. I have tried to look at all the meetings in a 4 week period but would prefer to look at the last 3 meetings that are recorded. Some groups might not record a meeting every week. So I want to look at the last 3 recorded meetings and count each members attendance and only report on the members with more than 3 meetings missed.
    SELECT COUNT(`groupattendance`.`Attended`) AS Attendance, `smallgroupform`.`MeetingDate`, `userinfo`.`FirstName`, `userinfo`.`Surname`, `smallgroup`.`GroupName`, `groupattendance`.`Attended`, `groupattendance`.`UserID`, `groupattendance`.`GroupID`
    FROM ((`anatomy`.`groupattendance` `groupattendance`
    INNER JOIN `anatomy`.`smallgroupform` `smallgroupform` ON `groupattendance`.`FormID` = `smallgroupform`.`FormID`)
    INNER JOIN `anatomy`.`userinfo` `userinfo` ON `groupattendance`.`UserID` = `userinfo`.`UserID`)
    INNER JOIN `anatomy`.`smallgroup` `smallgroup` ON `groupattendance`.`GroupID` = `smallgroup`.`GroupID`
    WHERE (`smallgroupform`.`MeetingDate` >= DATE_SUB(CURDATE(),INTERVAL 4 WEEK) AND `smallgroupform`.`MeetingDate` <= CURDATE()) AND `groupattendance`.`Attended` = 'False'
    GROUP BY `userinfo`.`UserID`
    HAVING Attendance >= 3
    Thanks,
    Garth.

    Hi Garth,
    Seems no one can help you directly. Try googling your SQL request. Someone may be able to help you. At this point its not really a Cr problem.
    One option is to get all the data and add filtering using the record selection formula.
    Thank you
    Don

  • SQL select statement help

    Say i have a table that has the following fields...
    ID    field1    field2   field3  field4   field5   field6   field7
     1        1           2         E         NW     SW  
         n         n
     2        1           2         E         NE      SW  
         n          n 
     3        1           3         W        NE      SE  
          n          n 
    10,000 plus entries in this table:  it is state quarter quarter data if it helps... 
    So i was handed a list on paper that has about 500 of these quarters from the above said table but there is no ID. I am having a someone build an excel spread
    sheet in the fashion above but the only fields will be as follows
    ID(NOT THE SAME AS ABOVE)  field1   field2  field3 field4  field5
    1                                                  
    1           1         W      NW    NE
     500 or so entries in this table
    no field 6 or 7
    how would i go about selecting all the fields from the top table that match exactly fields 1-5 in the excel sheet?
    and no there are no duplicate entries in the top table.
    thanks,
    james
    dogdaynoon

    Is field6 and field7 nullable fields in yourtable?
    If yes you can simply ignore them in your insert statements
    If you're directly dumping the contents of excel to table then it would be like
    INSERT YourTable (field1,field2,field3,field4,field5)
    SELECT field1,field2,field3,field4,field5
    FROM OPENROWSET(....) AS f
    if you're populating a tsgaing table you can do like this
    INSERT YourTable (field1,field2,field3,field4,field5)
    SELECT field1,field2,field3,field4,field5
    FROM StagingTable s
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Attendance Report Select Statement Help

    Hello , 
    i am working on the a Report for Attendance , for each employee , i want to show the report for a Date Range , i want to show 
    all days even if he is absent , the table structure for getting the attendance is just one Table , where i take the min time and max time for the employee 
    i want to show it as the below : 
    Date    Time In     Time Out 
    1-1     7:45            16:00 
    1-2     7:05            16:48 
    1-3     Null      Null 
    1-4     8:00            14:00 
    i have created a table TCalendar with all Dates and want to join it with the Transactions Table 
    Select UserID ,FirstName + ' ' + LastName as [Employee Name],  Convert(Varchar,min(OccurDateTime),108) as MinDate, Convert(Varchar,max(OccurDateTime),108) as maxDate
      , Department , Rank , Cast(ISNull(Datediff(mi,min(OccurDateTime),max(OccurDateTime)),'') as Decimal(4,0)) / 60 as [Total Hours] , DATENAME(DW,max(OccurDateTime))+ ' ' +  CONVERT(varchar, Record_Day, 106) as Date
    from
      TTransactionLog1 T Full Outer Join TCalendar C On C.Record_Day = T.OccurDateTime
      where OccurDateTime between '2015-01-01' and '2015-01-06' and UserID <> '' and UserID = 'AKHG1030'
    group by CONVERT(varchar, OccurDateTime, 106), UserID , FirstName , LastName , Department , Rank 
    The Results currently show like this 
    UserID Employee Name
    MinDate maxDate
            Total Hours
    Date
    AKHG1030 Osama Ashraf
    07:44:37 12:27:07
    4.716666
    NULL
    AKHG1030 Osama Ashraf
    11:08:18 15:49:12
    4.683333
    NULL
    AKHG1030 Osama Ashraf
    07:43:00 15:31:30
    7.800000
    NULL
    AKHG1030 Osama Ashraf
    07:27:35 18:56:22
    11.483333
    NUL
    need your Help 

    I think this is what you're aiming for:
    DECLARE @transactions TABLE (ID INT IDENTITY, empID INT, datetime DATETIME)
    INSERT INTO @transactions (empID, datetime)
    VALUES (1, '2015-01-01 07:44:37'),(1, '2015-01-01 12:27:07'),(1, '2015-01-02 11:08:18'),(1, '2015-01-02 15:49:12'),(1, '2015-01-03 07:43:00'),(1, '2015-01-03 15:31:30'),(1, '2015-01-05 07:27:35'),(1, '2015-01-05 18:56:22')
    DECLARE @employees TABLE (ID INT, firstName VARCHAR(30), lastName VARCHAR(30), userID VARCHAR(8))
    INSERT INTO @employees (ID, firstName, lastName, userID)
    VALUES (1, 'Osama', 'Ashraf', 'AKHG1030')
    SELECT c.today, e.ID, MIN(datetime) AS inTime, MAX(datetime) AS outTime, DATEDIFF(MINUTE,MIN(datetime),MAX(datetime))/60.0 AS hours
    FROM toolbox.dbo.calendar c
    FULL JOIN @employees e
    on e.id = e.id
    LEFT OUTER JOIN @transactions t
    ON c.today = CAST(t.datetime AS DATE)
    WHERE c.today BETWEEN '2015-01-01' AND '2015-01-05'
    GROUP BY c.today, e.ID
    ORDER BY c.today
    I created mock ups of a transactions table which holds the transactions data, and an employee ID column and an employee table which holds employee data.
    I am using my calendar table/functions which you can read about here:
    http://social.technet.microsoft.com/wiki/contents/articles/29260.tsql-calendar-functions-and-tables.aspx.
    We full joined the employee table (creating a cartesian product between the date and all employees) so we always show every employee for every date. Then, we left outer join the transaction table to find the records for that date. We aggregate the min and
    max, and use them in a date add to find the total number of hours between them. I'ved used minutes and devided by 60.0 (to force the decimal) to give partial hours.
    hth.

  • Simplify the query/select statement help

    select distinct B_Billing_key, B_COMPANY_ID "Company" ,
    to_char(to_date('01/'||trim(substr(B_REPORT_PERIOD,5,2))||'/'||
    trim(substr(B_REPORT_PERIOD,1,4)),'DD/MM/YYYY'),'Month YYYY') "Billing Period",
    (nvl(SURCH_AMOUNT,0)+nvl(ADJUST_AMOUNT,0)+nvl(PI_AMOUNT,0))-(nvl(sum(AMOUNT),0))"Period_Balance",
    decode(sign((nvl(SURCH_AMOUNT,0)+nvl(ADJUST_AMOUNT,0)+nvl(PI_AMOUNT,0))-(nvl(sum(AMOUNT),0))),1, 'Yes'
    ,'No'
    )"outstanding_balance"
    p.PROGRAM_NAME_ID|| ' . ' ||p.PROGRAM_NAME_DESCR "Programname"
    FROM tuff_balance_view,MV_PROG_SURCH S,MV_PAYMENT_HOLDING H,MV_PROGRAM_DICT P where
    b_company_id = 'XYZ'
    and B_Billing_key=s.BILLING_KEY
    and S.PROGRAM_KEY = P.PROGRAM_KEY
    and P.PROGRAM_KEY= H.PROGRAM_KEY
    GROUP BY B_Billing_key,B_COMPANY_ID,B_REPORT_PERIOD,SURCH_AMOUNT,ADJUST_AMOUNT,PI_AMOUNT,PROG_SURCH_KEY,
    S.PROGRAM_KEY,p.PROGRAM_NAME_ID|| ' . ' ||p.PROGRAM_NAME_DESCR,AMOUNT
    order by B_Billing_key desc
    B_Billing_key is the primary key. I am looking for the output only one record for each biling perid. there are 2 programs for each billing period. if any of the program has period balance >0 then outstanding balance should be yes.
    The output from the above query is as below.
    biling_key company billing period period_balance outstandingbalance programname
    123 xyz January 2011 4 Yes ABC
    123 xyz January 2011 -5 NO DEF
    456 xyz February 2011 -3.0 No ABC
    456 xyz February 2011 2 Yes DEF
    Need the output as below from the above query. Can you please help to simplify query. If anyof theprogram having outstanding balance for that particular period show the outstandigbalance as yes. Else NO.
         company billing period outstandingbalance programname
    xyz January 2011 Yes ABC
    xyz February 2011 Yes DEF
    Thanks,
    vi

    <font face="courier">
    <font color="green">-- this just simulates the results of your original query - meant just to play with until everything works</font>
    <br>
    with
    your_query as
    (select 123 billing_key,'xyz' company,'Jan 2011' billing_period,'No' outstandingbalance,'ABC' programname from dual union all
     select 123,'xyz','Jan 2011','Yes','DEF' programname from dual union all
     select 123,'xyz','Jan 2011','No','GHI' programname from dual union all
    <font color="green">--comment out some data row to see what happens when having just 5 programs
    --</font> select 123,'xyz','Jan 2011','No','JKL' programname from dual union all
     select 123,'xyz','Jan 2011','Yes','MNO' programname from dual union all
     select 123,'xyz','Jan 2011','No','PQR' programname from dual union all
     select 456,'xyz','Feb 2011','No','ABC' programname from dual union all
     select 456,'xyz','Feb 2011','No','DEF' programname from dual union all
     select 456,'xyz','Feb 2011','No','GHI' programname from dual union all
     select 456,'xyz','Feb 2011','No','JKL' programname from dual union all
     select 456,'xyz','Feb 2011','No','MNO' programname from dual union all
     select 456,'xyz','Feb 2011','No','PQR' programname from dual
    <font color="green">-- end of generated data
    -- the "real" query follows
    </font>
    <br>
    <font color="blue">
    select billing_key,
           company,
           billing_period,
           case when programname = ',,,,,' then 'No' else 'Yes' end outstandingbalance,
           case when programname != ',,,,,'
                then trim(',' from replace(replace(replace(programname,',',',~'),'~,'),'~'))
           end programname
      from (select billing_key,company,billing_period,'Yes' outstandingbalance,
                   max(case when outstandingbalance = 'Yes' and programname = 'ABC' then 'ABC' end) || ',' ||
                   max(case when outstandingbalance = 'Yes' and programname = 'DEF' then 'DEF' end) || ',' ||
                   max(case when outstandingbalance = 'Yes' and programname = 'GHI' then 'GHI' end) || ',' ||
                   max(case when outstandingbalance = 'Yes' and programname = 'JKL' then 'JKL' end) || ',' ||
                   max(case when outstandingbalance = 'Yes' and programname = 'MNO' then 'MNO' end) || ',' ||
                   max(case when outstandingbalance = 'Yes' and programname = 'PQR' then 'PQR' end) programname
              from (
                     <font color="green">--your_query here</font><br>
    <font color="red">
                    select distinct B_Billing_key, B_COMPANY_ID "Company" ,
                    to_char(to_date('01/'||trim(substr(B_REPORT_PERIOD,5,2))||'/'||
                    trim(substr(B_REPORT_PERIOD,1,4)),'DD/MM/YYYY'),'Month YYYY') "Billing Period",
                    (nvl(SURCH_AMOUNT,0)+nvl(ADJUST_AMOUNT,0)+nvl(PI_AMOUNT,0))-(nvl(sum(AMOUNT),0))"Period_Balance",
                    decode(sign((nvl(SURCH_AMOUNT,0)+nvl(ADJUST_AMOUNT,0)+nvl(PI_AMOUNT,0))-(nvl(sum(AMOUNT),0))),1, 'Yes'
                    ,'No'
                    )"outstanding_balance"
                    p.PROGRAM_NAME_ID|| ' . ' ||p.PROGRAM_NAME_DESCR "Programname"
                    FROM tuff_balance_view,MV_PROG_SURCH S,MV_PAYMENT_HOLDING H,MV_PROGRAM_DICT P where
                    b_company_id = 'XYZ'
                    and B_Billing_key=s.BILLING_KEY
                    and S.PROGRAM_KEY = P.PROGRAM_KEY
                    and P.PROGRAM_KEY= H.PROGRAM_KEY
                    GROUP BY B_Billing_key,B_COMPANY_ID,B_REPORT_PERIOD,SURCH_AMOUNT,ADJUST_AMOUNT,PI_AMOUNT,PROG_SURCH_KEY,
                    S.PROGRAM_KEY,p.PROGRAM_NAME_ID|| ' . ' ||p.PROGRAM_NAME_DESCR,AMOUNT
                    order by B_Billing_key desc
    </font>
             group by billing_key,company,billing_period
    </font>
    </font>
    Regards
    Etbin
    your simplified query should look somehow like below
    you didn't provide table structures and sample data so:
    aliases were assigned arbitrarily
    using sum(nvl(s.SURCH_AMOUNT,0) + nvl(s.ADJUST_AMOUNT,0) + nvl(s.PI_AMOUNT,0) - nvl(v.AMOUNT,0)) is most certainly wrong
    select v.B_Billing_key,
           v.B_COMPANY_ID company,
           to_char(to_date(substr(v.B_REPORT_PERIOD,1,6),'yyyymm'),'Month yyyy') billing_period
           case when sum(nvl(s.SURCH_AMOUNT,0) + nvl(s.ADJUST_AMOUNT,0) + nvl(s.PI_AMOUNT,0) - nvl(v.AMOUNT,0)) > 0
                then 'Yes'
                else 'No'
           end outstandingbalance,
           p.PROGRAM_NAME_ID programname
      FROM tuff_balance_view v,
           MV_PROG_SURCH S,
           MV_PAYMENT_HOLDING H,
           MV_PROGRAM_DICT P
    where v.B_COMPANY_ID = 'U-7052-C'
       and v.B_Billing_key = s.BILLING_KEY
       and S.PROGRAM_KEY = P.PROGRAM_KEY
       and P.PROGRAM_KEY = H.PROGRAM_KEY
    group by B_Billing_key,
              B_COMPANY_ID,
              to_char(to_date(substr(B_REPORT_PERIOD,1,6),'yyyymm'),'Month yyyy'),
              p.PROGRAM_NAME_IDEdited by: Etbin on 2.3.2011 22:44

  • Report Select Statement Help

    I need some help with creating a report.
    I have a table with two columns
    (ROOM number, NAME varchar2(15))
    I need to create a report that identifies each room and on the same line all the people that are in that room.
    It needs to looks like this:
    room Name
    101 Smith,Jones,Roberts,Flores,Larson,etc
    Thanks in advance for any help,
    Kirk

    There are a few ways to do this. Just write a function with a cursor and in the loop , create the output string.
    There is some info to do this in asktom which you can search to find the answer

  • Select statement help for sql/oracle newbie

    I have a db for a fake airline. i have a route table that has columns for "FIRST_CLASS_FARE", "COACH_FARE", and "ECONOMY_FARE". I then have a flight table that references the route#, then a trip table that references the flight#. I also have a passenger table and a reservation table that has the passenger # in it. The reservation table also has a column called "reservation class" that has a 'f' for first class fare, 'c' for coach fare, 'e' for economy fare.
    What I am trying to do is create a fill for each individual passenger that shows the total amount they spent on all of their reservations.
    Any suggestions on how to join the tables to create this bill?
    Thanks in advance!

    Is it the way the passenger table has columns and is populated,
    for a passenger A, takes a route - 1 with First class fare - $2500 on flight- B123, to a trip - t1 and reserved for class - 'f'
    If this is the way, then you get the bill from the fare column

  • SELECT statement in FROM clause - syntax help

    Hi,
    I want to have a SELECT statement in the FROM clause. I get syntax error when doing this and since I am new to ABAP I need som help.
    I want to do the following, (and if anyone has any SELECT statement from their own system which you know there is no syntax error in please post it here so I can analyze the syntax):
    *I leave the INTO itab clause out, since I only want to demonstrate the functionality
    I am trying to get.
    <b>SELECT</b> tableOne~someField
    <b>FROM</b> tab <b>AS</b> tableOne (<b>SELECT</b> someField
                                         <b>FROM</b> tab
                                         <b>WHERE</b> someFiled > 1) <b>AS</b> tableTwo
    <b>WHERE</b> tableOnesomeField > tableTwosomeField
    like I said, the problem is that the select statement in the parenthesis in the from clause seems to be incorrect because I get "wrong expression" when trying to compile. Is this because I cannot have a select statement in the from clause or is it because of a minor syntax error, such as I forgot a dot, or some other sign?
    thanks and regards
    Baran

    sorry i am not enough familiar with sub queries but some error i can see which i will state here.
    1> you have to use sub queries i.e. select in ( ) after where clause because here you are fulfilling a where clause by another select statement.
    like this
    SELECT * FROM SFLIGHT
        INTO WA
        WHERE SEATSOCC = ( SELECT MAX( SEATSOCC ) FROM SFLIGHT ).
    2> you cannot specify field name without into clause either you have to use
    select *  or select f1 into tab-f1  like this...
    but if you are using select * without into you have to define
    tables : dbtab.
    selec * from dbtab. like that.
    regards
    shiba dutta

  • [u][b]Performance Tuning Help[/b][/u] : Repeating HUGE Select Statement...

    I have a select statement that I am repeating 12 times with the only difference between them all being the date range that is grabbed. Essentially, I am grabbing the last 12 months of information from the same table here is a copy of one of the sections:
    (select
    a.account_id as account_id,
    a.company_id as company_id,
    a.account_number as acct_number,
    to_char(a.trx_date, 'YYYY/MM') as month,
    sum(a.amount_due_original) as amount
    from
    crystal.financial_vw a
    where
    a.cust_since_dt is not null
    and a.cust_end_dt is null
    and a.trx_date > add_months(sysdate, -13)
    and a.trx_date <= add_months(sysdate, -12)
         group by
              a.account_id,
              a.company_id,
              a.account_number,
              to_char(a.trx_date, 'YYYY/MM')) b
    I am now looking to do some tuning on this and was wondering if anyone has any suggestions. My initial thought was to use cursors or some sort of in memory storage to temporarily process the information into a pipe-delimited flat file.

    "Don't need:
    to_char(a.trx_date, 'YYYY/MM')"
    Are you sure?
    "Change to (just to make it easier to read):
    a.trx_date between add_months(sysdate, -13)
    and a.trx_date <= add_months(sysdate, -12)"
    What? That's not even valid syntax is it? Besides the fact that the BETWEEN operator is inclusive (i.e. > add_months(sysdate, -13) is not the same as between add_months(sysdate, -13) ...).
    "And be sure you have an index on:
    cust_since_dt, cust_end_dt, trx_date in financial_vw."
    What information did you base this conclusion on. Just because something is in the where clause doesn't mean you should automatically throw an index on it. What if 90% of the rows satisfy those null/not null criteria? What if there's only one year of data in this table? Are you certain an index would help pick out all the data for one month more efficiently than a full table scan?
    My immediate question was why are you breaking the data for each month up into separate subqueries like this at all? What is it that your doing with these subqueries that you don't believe can be accomplished with a single grouped query?

  • Need Help in Select Statement

    Dear gurus
    Below is my select statement. Im having problem with statement.
    the problem is that  the table vbfa  have some entries like this
    800     1400004654     10     3900012235     10     M     424,672.68
    800     1400004654     10     3900012257     10     M     137,093.36
    800     1400004654     20     3900012311     20     M     214,257.36
    800     1400004654     30     3900012412     30     M     81,248.44
    800     1400004654     30     3900012901     30     M     166,920.68
    When the select statement is run it does not fetch the data of LINE number 2 and Line number 5
    LOOP AT itab1.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbfa
        FROM vbfa
        WHERE vbelv = itab1-vgbel
        AND posnn = itab1-vgpos
        AND vbtyp_n = 'M'.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbrk
          FROM vbrk
          WHERE vbeln = wa_vbfa-vbeln
          AND vbtyp = 'M'.
        IF sy-subrc = 0.
            itab1-lfimg = wa_vbfa-rfmng.
           itab1-old_price = wa_vbfa-rfwrt.
           MODIFY itab1.
           ELSE.
        ENDIF.
      ENDLOOP.
    Please Help
    Regards
    Saad Nisar

    Hello Saad,
    The reason why you are not getting the 2nd and 5th entries is that, the where conditions vbelv, posnn and vbtyp_n matches for both the 1st and 2nd record where select will pick only the 1st record. The same way for 4th and 5th record. so its picking only 4th.
    So to avoid this add even vbeln in the where condition of the select query
    LOOP AT itab1.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbfa
        FROM vbfa
        WHERE vbelv = itab1-vgbel
        AND posnn = itab1-vgpos
       AND vbeln = itab1-field           " Add the corresponding field here
        AND vbtyp_n = 'M'.
        SELECT SINGLE * INTO CORRESPONDING FIELDS OF wa_vbrk
          FROM vbrk
          WHERE vbeln = wa_vbfa-vbeln
          AND vbtyp = 'M'.
        IF sy-subrc = 0.
            itab1-lfimg = wa_vbfa-rfmng.
           itab1-old_price = wa_vbfa-rfwrt.
           MODIFY itab1.
           ELSE.
        ENDIF.
      ENDLOOP.
    Vikranth

  • Need help on select statement...

    Hi,
    I need to fetch from vbfa table those records where vbeln starts with '0800'.
    my select statement given below gives a syntax error..pl help.
    SELECT * FROM vbfa WHERE vbeln(4) = '0800'.
    vbeln(4) is not accepted and i get the message ' field vbeln(4) is unknown' ...what to do?
    thks

    Use LIKE. Please see F1 on this.
    Rob
    (changed CP to LIKE)
    Edited by: Rob Burbank on Sep 15, 2008 11:18 AM

  • Select statement issue- urgent pls help

    Hi
    The following select statement is always  failed, even LIKP table has data. pls help me
      LOOP AT LT_VBRP.
        IF LV_KEEP_VGBEL <> LT_VBRP-VGBEL.
          LV_KEEP_VGBEL = LT_VBRP-VGBEL.
          CLEAR LIKP.
          SELECT single  VBELN TRAID TRATY VERUR BOLNR LFDAT
          FROM LIKP INTO
          (LIKP-VBELN,LIKP-TRAID,LIKP-TRATY,LIKP-VERUR,LIKP-BOLNR,LIKP-LFDAT)
            WHERE BOLNR = LT_VBRP-VGBEL.
          IF SY-SUBRC = 0.
            LV_ASN_FOUND = 'X'.
          ELSE.
            CLEAR LV_ASN_FOUND.
          ENDIF.
        ENDIF.
        MOVE-CORRESPONDING LT_VBRP TO LT_LIPOV.
        IF LV_ASN_FOUND = 'X'.
          LT_LIPOV-VBELN    = LIKP-VBELN.             "ASN #
          LT_LIPOV-LFDAT    = LIKP-LFDAT.
         lt_lipov-verur    = likp-verur.
          LT_LIPOV-BOLNR    = LIKP-BOLNR.             "DDL#
          LT_LIPOV-KOMAU    = LIKP-VBELN.
    get the ASN line number details.
          SELECT VBELN POSNR MATNR ERDAT LFIMG ERNAM WERKS VGBEL VGPOS FROM LIPS INTO
          TABLE LT_LIPOV
           WHERE VBELN = LIKP-VBELN.
        ELSE.
          CLEAR LT_REP-VBELN.
          CLEAR LT_REP-LFDAT.
          CLEAR LT_REP-VERUR.
          CLEAR LT_REP-BOLNR.
          LT_REP-KOMAU = LT_VBRP-VBELN.             "Inv no
          LV_MESSAGE = TEXT-504.
          PERFORM CREATE_REPORT_RECORD_LIN01.
          LT_REP-LINE_COLOUR = 'C610'.  " red Intensified
        ENDIF.
        APPEND LT_REP.
        APPEND LT_LIPOV.
        CLEAR LT_LIPOV.
        CLEAR LT_REP.
      ENDLOOP.

    Hi Kumar....
    if statement should not be like ..
    if lv_keep_vgbel lt_vbrp-vgbel.
    Should be like this  if lv_keep_vgbel = lt_vbrp-vgbel.
    and try to use work area and table to select and loop the data...
    Have YOu checked whether da data in it_vbrp...
    there few error in way You are writing...
    And one more thing in the table LIKP the field BOLNR is 35 Char and VGBEL of VBRP is 10 char ...and your are equalling that to extract the data which will not happen even..
    So before select statement change VBRP-VGBEL as 35 char varible by using like this
    data : v_vgbel type likp-bolnr.
    loop at lt_vbrp.
    if lv_keep_vgbel lt_vbrp-vgbel. " Why did you right the statement like this
        if lv_keep_vgbel = lt_vbrp-vgbel.
            clear likp.
                call function 'CONVERSION_EXIT_ALPHA_INPUT'
                  exporting
                    input  = lt_vbrp-vgbel
                  importing
                    output = v_vgbel.
                  select single vbeln traid traty verur bolnr lfdat
                                                      from likp into
                                                     (likp-vbeln,likp-traid,likp-traty,likp-verur,likp-bolnr,likp-lfdat)
                                                      where bolnr = v-vgbel.
    regards,
    sg
    Edited by: Suneel Kumar Gopisetty on May 26, 2008 4:41 AM

  • Need help using Select statement  to  retrieve one record

    Hi guys, my first post so be gentle please. The basis of this fucntion is to search my dtabase using the select statement to find the record the user wants, by retrieving the name of theitem from the text box. details are then displayed on a joption message box.
    Everytime I run this program it throws an exception 'Exception: null'. Can anyone see where I am going wrong, I have only bn learning java for thepast 6 months so perhaps I am doing something wrong.
    Or perhaps there is another way for me to close the st, con, rs?
    Your help appreciated
    public void searchproducts(){
    Connection con = null;
    Statement st = null;
    ResultSet rs = null;
    try{
    //creating and loading a database connection
    String dbUrl = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=db2.mdb;"; // String dbUrl = "jdbc:odbc:people";
    String user = "";
    String password = "";
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection c = DriverManager.getConnection(
    dbUrl, user, password);
    int count;
    st = con.createStatement();
    rs = st.executeQuery("SELECT ItemName, Country, Yearmade, ValuePrice, Forsale FROM Collectman WHERE ItemName="+" '"+txtsearchproduct.getText()+"'" );
    while(rs.next()) {
    String ItemName = rs.getString(1);
    String Country = rs.getString(2);
    String Yearmade = rs.getString(3);
    String ValuePrice = rs.getString(4);
    String Forsale = rs.getString(5);
    JOptionPane.showMessageDialog(null, "product details are: " + ItemName + " " + Country + " " + Yearmade + " " + ValuePrice + " " + Forsale);
    //It keeps on throwing this excpetion with null
    catch (Exception e) {
    System.err.println("Exception: " + e.getMessage());
    } finally {
    try {
    if(rs != null)
    rs.close();
    if(st != null)
    st.close();
    if(con != null)
    con.close();
    } catch (SQLException e) {
    }

    And while we're waiting on that, I'll just say it's nice to see you almost got the general layout of a db call correct...that's a rare thing around here. The finally should have a try/catch round each of the close statements and not around all three in one go. If the resultset throws an exception in your version then you would fail to close either the statement or the connection.
    The second thing is, look up PreparedStatements. They're a better choice for handling SQL requiring variables than using a bog standard Statement.

  • Help!  Crashing JVM while doing SELECT statement through JDBC-ODBC bridge

    Hi everyone,
    Help please. I am working on a project on my own computer using the jdk version 1.5.0_04.
    The project involves running a select on a Microsoft Access 2003 database via the JDBC-ODBC bridge. The database is registered in the ODBC database sources, and it works fine in those other projects.
    Yet, when I'm running similar code in this project, it crashes the Java Virtual Machine. I get the following in a log file:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c901010, pid=2308, tid=1364
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_04-b05 mixed mode, sharing)
    # Problematic frame:
    # C [ntdll.dll+0x1010]
    --------------- T H R E A D ---------------
    Current thread (0x000360f8): JavaThread "main" [_thread_in_native, id=1364]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000018
    Registers:
    EAX=0x00000004, EBX=0x26bb5250, ECX=0x7ffde000, EDX=0x00000004
    ESP=0x0007f8d8, EBP=0x0007f8f0, ESI=0x00000000, EDI=0x02ea1590
    EIP=0x7c901010, EFLAGS=0x00010246
    Top of Stack: (sp=0x0007f8d8)
    0x0007f8d8: 74355a16 00000004 02ea15b4 7432139f
    0x0007f8e8: 02ea15b4 02ea1590 0007f900 74322c5d
    0x0007f8f8: 02ea15b4 000361b4 0007f914 74325fa0
    0x0007f908: 02ea1590 74350000 00390000 0007f930
    0x0007f918: 7432740e 02ea1590 0007f950 00000003
    0x0007f928: 00aabe20 000361b4 0007f948 6d3e11da
    0x0007f938: 02ea1590 0007f950 000360f8 26bb5250
    0x0007f948: 0007f980 00ad826f 00000000 0007f99c
    Instructions: (pc=0x7c901010)
    0x7c901000: 90 90 90 90 90 64 8b 0d 18 00 00 00 8b 54 24 04
    0x7c901010: 83 7a 14 00 75 4f f0 ff 42 04 75 19 8b 41 24 89
    Stack: [0x00040000,0x00080000), sp=0x0007f8d8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x1010]
    C [ODBC32.dll+0x2c5d]
    C [ODBC32.dll+0x5fa0]
    C [ODBC32.dll+0x740e]
    C [JdbcOdbc.dll+0x11da]
    j sun.jdbc.odbc.JdbcOdbc.allocStmt(J[B)J+0
    j sun.jdbc.odbc.JdbcOdbc.SQLAllocStmt(J)J+47
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement(II)Ljava/sql/Statement;+27
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement()Ljava/sql/Statement;+7
    j LUDatabaseWorker.getBoxScoreFromDB(LStatisticalItems/BoxScore;)LStatisticalItems/BoxScore;+215
    j NewUSCHOLiveUpdate.processTheBoxScores()V+78
    j NewUSCHOLiveUpdate.main([Ljava/lang/String;)V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x82696]
    V [jvm.dll+0xd6fd9]
    V [jvm.dll+0x82567]
    V [jvm.dll+0x895e6]
    C [java.exe+0x14c0]
    C [java.exe+0x64cd]
    C [kernel32.dll+0x16d4f]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.jdbc.odbc.JdbcOdbc.allocStmt(J[B)J+0
    j sun.jdbc.odbc.JdbcOdbc.SQLAllocStmt(J)J+47
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement(II)Ljava/sql/Statement;+27
    j sun.jdbc.odbc.JdbcOdbcConnection.createStatement()Ljava/sql/Statement;+7
    j LUDatabaseWorker.getBoxScoreFromDB(LStatisticalItems/BoxScore;)LStatisticalItems/BoxScore;+215
    j NewUSCHOLiveUpdate.processTheBoxScores()V+78
    j NewUSCHOLiveUpdate.main([Ljava/lang/String;)V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00a6e550 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2240]
    0x00a6d258 JavaThread "CompilerThread0" daemon [_thread_blocked, id=736]
    0x00a6c440 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2252]
    0x00a47808 JavaThread "Finalizer" daemon [_thread_blocked, id=3352]
    0x00a46328 JavaThread "Reference Handler" daemon [_thread_blocked, id=1560]
    =>0x000360f8 JavaThread "main" [_thread_in_native, id=1364]
    Other Threads:
    0x00a67a68 VMThread [id=2700]
    0x00a6f8c8 WatcherThread [id=2480]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 404K [0x22b90000, 0x22c30000, 0x23070000)
    eden space 512K, 70% used [0x22b90000, 0x22bea738, 0x22c10000)
    from space 64K, 66% used [0x22c20000, 0x22c2a990, 0x22c30000)
    to space 64K, 0% used [0x22c10000, 0x22c10000, 0x22c20000)
    tenured generation total 1408K, used 846K [0x23070000, 0x231d0000, 0x26b90000)
    the space 1408K, 60% used [0x23070000, 0x231438e0, 0x23143a00, 0x231d0000)
    compacting perm gen total 8192K, used 507K [0x26b90000, 0x27390000, 0x2ab90000)
    the space 8192K, 6% used [0x26b90000, 0x26c0ed38, 0x26c0ee00, 0x27390000)
    ro space 8192K, 66% used [0x2ab90000, 0x2b0e9dc0, 0x2b0e9e00, 0x2b390000)
    rw space 12288K, 46% used [0x2b390000, 0x2b927e98, 0x2b928000, 0x2bf90000)
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\jdk1.5.0_04\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d6b0000 - 0x6d839000      C:\jdk1.5.0_04\jre\bin\client\jvm.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x6d2f0000 - 0x6d2f8000      C:\jdk1.5.0_04\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d680000 - 0x6d68c000      C:\jdk1.5.0_04\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\jdk1.5.0_04\jre\bin\java.dll
    0x6d6a0000 - 0x6d6af000      C:\jdk1.5.0_04\jre\bin\zip.dll
    0x6d3e0000 - 0x6d3ed000      C:\jdk1.5.0_04\jre\bin\JdbcOdbc.dll
    0x74320000 - 0x7435d000      C:\WINDOWS\system32\ODBC32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\COMCTL32.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\SHELL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x20000000 - 0x20017000      C:\WINDOWS\system32\odbcint.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x0f9a0000 - 0x0f9ab000      C:\WINDOWS\system32\VBAJET32.DLL
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    VM Arguments:
    java_command: NewUSCHOLiveUpdate
    Environment Variables:
    JAVA_HOME=C:\jdk1.5.0_04
    CLASSPATH=C:\jdk1.5.0_04\bin\NewLiveUpdate;C:\jdk1.5.0_04\bin\NewLiveUpdate\StatisticalItems;C:\jdk1.5.0_04\bin\NewLiveUpdate\Exceptions;C:\jdk1.5.0_04\bin\NewLiveUpdate\Helper;
    PATH=C:\jdk1.5.0_04\bin;C:\JavaTools\ant\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;;c:\program files\devstudio\sharedide\bin\ide;c:\program files\devstudio\sharedide\bin;c:\program files\devstudio\vc\bin
    USERNAME=Kevin Yetman
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 3, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1047020k(627436k free), swap 2518436k(2161900k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_04-b05) for windows-x86, built on Jun 3 2005 02:10:41 by "java_re" with MS VC++ 6.0
    The code that is causing the problem is in the class shown below. It is in the method getBoxScoreFromDB. When it attempts to run the first select statement, it causes the crash that I showed above.
    The connection is set up by the calling class. The calling class constructs a LUDatabaseWorker, sets the necessary parameters (dbURL, driver class, username and password), and calls the openDBConnection().
    // LUDatabaseWorker.java
    import StatisticalItems.*;
    import java.sql.*;
    import java.util.*;
    public class LUDatabaseWorker
       private StatisticalItems.BoxScore m_CurrentBoxScoreInDB;
       private Connection                m_Connection;
       private String                    m_dbURL;
       private String                    m_dbUsername;
       private String                    m_dbPassword;
       private String                    m_dbDriverClass;
       public LUDatabaseWorker()
       public StatisticalItems.BoxScore getCurrentBoxScoreInDB()
       {  return m_CurrentBoxScoreInDB;
       public void setDBURL(String dbURL)
       {  m_dbURL=new String(dbURL);
       public void setDBUsername(String dbUsername)
       {  m_dbUsername=new String(dbUsername);
       public void setDBPassword(String dbPassword)
       {  m_dbPassword=new String(dbPassword);
       public void setDBDriverClass(String dbDriverClass)
       {  m_dbDriverClass=new String(dbDriverClass);
       public void openDBConnection()
          throws SQLException, ClassNotFoundException
          Class.forName(m_dbDriverClass);
          m_Connection=DriverManager.getConnection(m_dbURL, m_dbUsername, m_dbPassword);
       public void closeDBConnection()
          throws SQLException
          m_Connection.close();
       public Hashtable<String, Integer> getUSCHOCodeToMyTeamIndexMap()
          throws SQLException
          Hashtable<String, Integer> ht=new Hashtable<String, Integer>();
          String sqlQuery="SELECT TeamIndex, TeamCode FROM TeamLiveUpdateUSCHO";
          Statement st=m_Connection.createStatement();
          ResultSet rs=st.executeQuery(sqlQuery);
          while(rs.next())
             String uschoCode=new String(rs.getString(2));
             Integer myTeamIndex=new Integer(rs.getInt(1));
             ht.put(uschoCode, myTeamIndex);
          rs.close();
          st.close();
          return ht;
       public StatisticalItems.BoxScore getBoxScoreFromDB(StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          StatisticalItems.BoxScore  boxScoreFromDB=new StatisticalItems.BoxScore();
          // get the basic game info from the live update box score.
          StatisticalItems.Game    luBasicGameData=luBoxScore.getBasicGameData();
          // get the basic game data.
          String sqlQuery="SELECT * FROM Game WHERE (Year=" + luBasicGameData.getYear() + ") AND (Month='";
          if( luBasicGameData.getMonth() < 10 )
          {  sqlQuery+="0";
          sqlQuery+=luBasicGameData.getMonth() + "') AND (Day='";
          if( luBasicGameData.getDay() < 10 )
          {  sqlQuery+="0";
          sqlQuery+=luBasicGameData.getDay() + "') AND (HomeTeamIndex=" + luBasicGameData.getHomeTeamIndex();
          sqlQuery+=") AND (VisitorTeamIndex=" + luBasicGameData.getVisitorTeamIndex() + ")";
          System.out.println(sqlQuery);
          Statement st=m_Connection.createStatement();
          ResultSet rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.Game  dbGame=boxScoreFromDB.getBasicGameData();
             dbGame.setGameIndex(rs.getInt("GameIndex"));
             dbGame.setHomeTeamIndex(rs.getInt("HomeTeamIndex"));
             dbGame.setVisitorTeamIndex(rs.getInt("VisitorTeamIndex"));
             dbGame.setHomeTeamGoals(rs.getInt("HomeTeamGoals"));
             dbGame.setVisitorTeamGoals(rs.getInt("VisitorTeamGoals"));
             dbGame.setHomeTeamScoredFirst(rs.getString("HomeTeamScoredFirst"));
             dbGame.setYear(rs.getInt("Year"));
             dbGame.setMonth(rs.getInt("Month"));
             dbGame.setDay(rs.getInt("Day"));
             dbGame.setLeagueGame(rs.getBoolean("LeagueGame"));
             dbGame.setNeutralSiteGame(rs.getBoolean("NeutralSiteGame"));
             dbGame.setForfeitHome(rs.getBoolean("ForfeitHome"));
             dbGame.setForfeitVisitor(rs.getBoolean("ForfeitVisitor"));
             dbGame.setPlayoffGame(rs.getBoolean("PlayoffGame"));
             boxScoreFromDB.setBasicGameData(dbGame);
          StatisticalItems.Game  dbGame=boxScoreFromDB.getBasicGameData();
          // get the home team goals per period.
          sqlQuery="SELECT * FROM GameDetailGoalsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getHomeTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailGoalsPerPeriod dbHomeGPP=boxScoreFromDB.getHomeTeamGoalsPerPeriod();
             dbHomeGPP.setGameDetailGoalsPerPeriodIndex(rs.getInt("GameDetailGoalsPerPeriodIndex"));
             dbHomeGPP.setGameIndex(rs.getInt("GameIndex"));
             dbHomeGPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbHomeGPP.setPeriod1(new Integer(rs.getInt("GoalsFirstPeriod")));
             dbHomeGPP.setPeriod2(new Integer(rs.getInt("GoalsSecondPeriod")));
             dbHomeGPP.setPeriod3(new Integer(rs.getInt("GoalsThidPeriod")));
             dbHomeGPP.setOvertime(new Integer(rs.getInt("GoalsOvertime")));
             dbHomeGPP.setEmptyNetGoals(rs.getInt("EmptyNetGoals"));
             dbHomeGPP.setFoundInDatabase(true);
             boxScoreFromDB.setHomeTeamGoalsPerPeriod(dbHomeGPP);
          // get the visitor team goals per period. 
          sqlQuery="SELECT * FROM GameDetailGoalsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getVisitorTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailGoalsPerPeriod dbVisitorGPP=boxScoreFromDB.getVisitorTeamGoalsPerPeriod();
             dbVisitorGPP.setGameDetailGoalsPerPeriodIndex(rs.getInt("GameDetailGoalsPerPeriodIndex"));
             dbVisitorGPP.setGameIndex(rs.getInt("GameIndex"));
             dbVisitorGPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbVisitorGPP.setPeriod1(new Integer(rs.getInt("GoalsFirstPeriod")));
             dbVisitorGPP.setPeriod2(new Integer(rs.getInt("GoalsSecondPeriod")));
             dbVisitorGPP.setPeriod3(new Integer(rs.getInt("GoalsThidPeriod")));
             dbVisitorGPP.setOvertime(new Integer(rs.getInt("GoalsOvertime")));
             dbVisitorGPP.setEmptyNetGoals(rs.getInt("EmptyNetGoals"));
             dbVisitorGPP.setFoundInDatabase(true);
             boxScoreFromDB.setVisitorTeamGoalsPerPeriod(dbVisitorGPP);
          // get the home team shots per period.
          sqlQuery="SELECT * FROM GameDetailShotsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getHomeTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailShotsPerPeriod dbHomeSPP=boxScoreFromDB.getHomeTeamShotsPerPeriod();
             dbHomeSPP.setGameDetailShotsPerPeriodIndex(rs.getInt("GameDetailShotsPerPeriodIndex"));
             dbHomeSPP.setGameIndex(rs.getInt("GameIndex"));
             dbHomeSPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbHomeSPP.setPeriod1(new Integer(rs.getInt("ShotsFirstPeriod")));
             dbHomeSPP.setPeriod2(new Integer(rs.getInt("ShotsSecondPeriod")));
             dbHomeSPP.setPeriod3(new Integer(rs.getInt("ShotsThidPeriod")));
             dbHomeSPP.setOvertime(new Integer(rs.getInt("ShotsOvertime")));
             dbHomeSPP.setFoundInDatabase(true);
             boxScoreFromDB.setHomeTeamShotsPerPeriod(dbHomeSPP);
          // get the visitor team shots per period. 
          sqlQuery="SELECT * FROM GameDetailShotsPerPeriod WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getVisitorTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailShotsPerPeriod dbVisitorSPP=boxScoreFromDB.getVisitorTeamShotsPerPeriod();
             dbVisitorSPP.setGameDetailShotsPerPeriodIndex(rs.getInt("GameDetailShotsPerPeriodIndex"));
             dbVisitorSPP.setGameIndex(rs.getInt("GameIndex"));
             dbVisitorSPP.setTeamIndex(rs.getInt("TeamIndex"));
             dbVisitorSPP.setPeriod1(new Integer(rs.getInt("ShotsFirstPeriod")));
             dbVisitorSPP.setPeriod2(new Integer(rs.getInt("ShotsSecondPeriod")));
             dbVisitorSPP.setPeriod3(new Integer(rs.getInt("ShotsThidPeriod")));
             dbVisitorSPP.setOvertime(new Integer(rs.getInt("ShotsOvertime")));
             dbVisitorSPP.setFoundInDatabase(true);
             boxScoreFromDB.setVisitorTeamShotsPerPeriod(dbVisitorSPP);
          // get the home team special teams.
          sqlQuery="SELECT * FROM GameDetailSpecialTeams WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getHomeTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailSpecialTeams dbHomeST=boxScoreFromDB.getHomeTeamSpecialTeams();
             dbHomeST.setGameDetailSpecialTeamsIndex(rs.getInt("GameDetailSpecialTeamsIndex"));
             dbHomeST.setGameIndex(rs.getInt("GameIndex"));
             dbHomeST.setTeamIndex(rs.getInt("TeamIndex"));
             dbHomeST.setPowerplayGoals(rs.getInt("PowerPlayGoals"));
             dbHomeST.setShorthandedGoals(rs.getInt("ShortHandedGoals"));
             dbHomeST.setPowerplayOps(rs.getInt("PowerPlayOps"));
             dbHomeST.setShorthandedOps(rs.getInt("ShortHandedOps"));
             dbHomeST.setPenalties(rs.getInt("Penalties"));
             dbHomeST.setPenaltyMinutes(rs.getInt("PenaltyMinutes"));
             dbHomeST.setFoundInDatabase(true);
             boxScoreFromDB.setHomeTeamSpecialTeams(dbHomeST);
          // get the home team special teams.
          sqlQuery="SELECT * FROM GameDetailSpecialTeams WHERE (GameIndex=" + dbGame.getGameIndex() + ") AND ";
          sqlQuery+="(TeamIndex=" + dbGame.getVisitorTeamIndex() + ")";
          rs=st.executeQuery(sqlQuery);
          if( rs.next() )
             StatisticalItems.GameDetailSpecialTeams dbVisitorST=boxScoreFromDB.getVisitorTeamSpecialTeams();
             dbVisitorST.setGameDetailSpecialTeamsIndex(rs.getInt("GameDetailSpecialTeamsIndex"));
             dbVisitorST.setGameIndex(rs.getInt("GameIndex"));
             dbVisitorST.setTeamIndex(rs.getInt("TeamIndex"));
             dbVisitorST.setPowerplayGoals(rs.getInt("PowerPlayGoals"));
             dbVisitorST.setShorthandedGoals(rs.getInt("ShortHandedGoals"));
             dbVisitorST.setPowerplayOps(rs.getInt("PowerPlayOps"));
             dbVisitorST.setShorthandedOps(rs.getInt("ShortHandedOps"));
             dbVisitorST.setPenalties(rs.getInt("Penalties"));
             dbVisitorST.setPenaltyMinutes(rs.getInt("PenaltyMinutes"));
             dbVisitorST.setFoundInDatabase(true);
             boxScoreFromDB.setVisitorTeamSpecialTeams(dbVisitorST);
          rs.close();
          st.close();
          return boxScoreFromDB;    
       public void updateBoxScoreInDB(StatisticalItems.BoxScore  dbBoxScore,
                                      StatisticalItems.BoxScore  luBoxScore,
                                      LUBoxScoreComparator       bsc)
          throws SQLException
          if( bsc.getGameChanged() )
             updateGameInDB(dbBoxScore, luBoxScore);
          if( bsc.getHomeGoalsPerPeriodChanged() )
             updateHomeGoalsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getVisitorGoalsPerPeriodChanged() )
             updateVisitorGoalsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getHomeShotsPerPeriodChanged() )
             updateHomeShotsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getVisitorShotsPerPeriodChanged() )
             updateVisitorShotsPerPeriod(dbBoxScore, luBoxScore);
          if( bsc.getHomeSpecialTeamsChanged() )
             updateHomeSpecialTeams(dbBoxScore, luBoxScore);
          if( bsc.getVisitorSpecialTeamsChanged() )
             updateVisitorSpecialTeams(dbBoxScore, luBoxScore);
       protected void updateGameInDB(StatisticalItems.BoxScore dbBoxScore,
                                     StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          // the only fields that NEED to be updated are HomeTeamGoals, VisitorTeamGoals, HomeTeamScoredFirst,
          // and LeagueGame.  You can't determine from the LU box Score:
          // Forfeits, NeutralSite, or Playoff.
          // the GameIndex, Both team indexes, and the game date will NEVER change from the database.
          Statement st=m_Connection.createStatement();
          String sqlStmt="UPDATE Game SET ";
          sqlStmt+="HomeTeamGoals=" + luBoxScore.getBasicGameData().getHomeTeamGoals() + ", ";
          sqlStmt+="VisitorTeamGoals=" + luBoxScore.getBasicGameData().getVisitorTeamGoals() + ", ";
          sqlStmt+="HomeTeamScoredFirst='" + luBoxScore.getBasicGameData().getHomeTeamScoredFirst() + "', ";
          sqlStmt+="LeagueGame=" + luBoxScore.getBasicGameData().getLeagueGame() + " ";
          sqlStmt+="WHERE GameIndex=" + dbBoxScore.getBasicGameData().getGameIndex();
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateHomeGoalsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                               StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getHomeTeamGoalsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailGoalsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getHomeTeamGoalsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="GoalsFirstPeriod=" + luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="GoalsSecondPeriod=" + luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="GoalsThirdPeriod=" + luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="GoalsOvertime=" + luBoxScore.getHomeTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+="EmptyNetGoals=" + luBoxScore.getHomeTeamGoalsPerPeriod().getEmptyNetGoals() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getHomeTeamGoalsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamGoalsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailGoalsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, GoalsFirstPeriod, GoalsSecondPeriod, GoalsThirdPeriod, ";
             sqlStmt+="GoalsOvertime, EmptyNetGoals) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamGoalsPerPeriod().getEmptyNetGoals() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateVisitorGoalsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                                  StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getVisitorTeamGoalsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailGoalsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getVisitorTeamGoalsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="GoalsFirstPeriod=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="GoalsSecondPeriod=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="GoalsThirdPeriod=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="GoalsOvertime=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+="EmptyNetGoals=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getEmptyNetGoals() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getVisitorTeamGoalsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamGoalsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailGoalsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, GoalsFirstPeriod, GoalsSecondPeriod, GoalsThirdPeriod, ";
             sqlStmt+="GoalsOvertime, EmptyNetGoals) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getOvertime() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamGoalsPerPeriod().getEmptyNetGoals() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateHomeShotsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                               StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getHomeTeamShotsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailShotsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getHomeTeamShotsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="ShotsFirstPeriod=" + luBoxScore.getHomeTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="ShotsSecondPeriod=" + luBoxScore.getHomeTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="ShotsThirdPeriod=" + luBoxScore.getHomeTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="ShotsOvertime=" + luBoxScore.getHomeTeamShotsPerPeriod().getOvertime() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getHomeTeamShotsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamShotsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailShotsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, ShotsFirstPeriod, ShotsSecondPeriod, ShotsThirdPeriod, ";
             sqlStmt+="ShotsOvertime) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getHomeTeamShotsPerPeriod().getOvertime() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateVisitorShotsPerPeriod(StatisticalItems.BoxScore dbBoxScore,
                                                  StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getVisitorTeamShotsPerPeriod().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailShotsPerPeriod SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getVisitorTeamShotsPerPeriod().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+="ShotsFirstPeriod=" + luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+="ShotsSecondPeriod=" + luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+="ShotsThirdPeriod=" + luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+="ShotsOvertime=" + luBoxScore.getVisitorTeamShotsPerPeriod().getOvertime() + " ";
             sqlStmt+="WHERE GameIndex=" + dbBoxScore.getVisitorTeamShotsPerPeriod().getGameIndex() + " AND ";
             sqlStmt+="TeamIndex=" + luBoxScore.getVisitorTeamShotsPerPeriod().getTeamIndex();
          else
             sqlStmt="INSERT INTO GameDetailShotsPerPeriod ";
             sqlStmt+="(GameIndex, TeamIndex, ShotsFirstPeriod, ShotsSecondPeriod, ShotsThirdPeriod, ";
             sqlStmt+="ShotsOvertime) VALUES(";
             sqlStmt+=dbBoxScore.getBasicGameData().getGameIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getTeamIndex() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod1() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod2() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getPeriod3() + ", ";
             sqlStmt+=luBoxScore.getVisitorTeamShotsPerPeriod().getOvertime() + ")";
          st.executeUpdate(sqlStmt);
          st.close();
       protected void updateHomeSpecialTeams(StatisticalItems.BoxScore dbBoxScore,
                                             StatisticalItems.BoxScore luBoxScore)
          throws SQLException
          Statement st=m_Connection.createStatement();
          String sqlStmt="";
          if( dbBoxScore.getHomeTeamSpecialTeams().getFoundInDatabase() )
             sqlStmt="UPDATE GameDetailSpecialTeams SET ";
             sqlStmt+="GameIndex=" + dbBoxScore.getHomeTeamSpecialTeams().getGameIndex() + ", ";
             sqlStmt+="TeamIndex=" + luBoxScore.getHomeTeamSpecialTeams().getTeamIndex() + ", ";
             sqlStmt+="PowerplayGoals=" + luBoxScore.getHomeTeamSpecialTeams().getPowerplayGoals() + ", ";
             sqlStmt+="PowerplayOps=" + luBoxScore.getHomeTeamSpecialTeams().getPowerplayOps() + ", ";
             sqlStmt+="ShorthandedGoals=" + luBoxScore.getHomeTeamSpecialTeams().getShorthandedGoals() + ", ";
             sqlStmt+="ShorthandedOps=" + luBoxScore.getHomeTeamSpecialTeams().getShorthande                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    its because you use hungarian notation - that was the hollywood squares answer.
    It looks like a bug in either the ntdll or the JdbcOdbc dll, so I'd see if you can't isolate the problem (like using a smaller bit of code) and file a bug report. Find out exacty what your sql statement is which causes this to crash - hint : line 215

  • Report help select statements

    Hi frnds i want to write select statement as like this
    Table    Table                  Key         join           
    EKKO,Purchase order header, EBELN    Key for EKPO
    LFA1 ,     Vendor manster ,   LIFNR ,Join with EKKO on LIFNR (One to one)
    EKPO,     PO Lines          EBELN & EBELP,Join with EKKO on EBELN (One to many
    EKET,     PO line schedule, EBELN & EBELP,  Join with EKPO on (EBELN & EBELP)One to many (pick first record)
    EKKN     PO line accounting        EBELN & EBELP     Outer join with EKPO on EBELN & EBELP (One to many)
    EKBE     PO History  EBELN & EBELP Outer join with EKPO on EBELN & EBELP (One to many
    CSKS     Cost center master KOSTL     Inner join with EKKN-KOSTL (One to many - select according to validity)
    <B>NOTE : THE COLUMNS ARE TABLE --- TABLE - TABLE KEY- JOIN</B>
    frnds i hav tried writing first select staement can anyone hlp me in writing other statements
    select aebeln abstyp absart aaedat aernam alifnr aekorg aekgrp awaers awkurs aknttp apstyp aerekz aprdat aretpo bebelp bloekz belikz bmatnr btxz01 bwerks blgort bmatkl bmenge bmeinr bbprme bbpumz bbpumn bnetpr bpeinh bnetwr into corresponding fields of table it_ekko_ekpo from ekko inner join ekpo on ekkoebeln = ekpo~ebeln where select option condtions.....
    thnk u all
    <b>Point are assured </B>
    regards,
    karan
    Message was edited by:
            karan kakkad
    Message was edited by:
            karan kakkad

    Nice table....Erwan.         <a href="http://astore.amazon.com/cuteseller08-20?node=7"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=2"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=3"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=4"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=5"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=6"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=7"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=8"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=9"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=10"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=11"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=12"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=13"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=14"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=15"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=16"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=17"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=18"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=19"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=20"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=21"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=22"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=23"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=24"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=25"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=26"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=27"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=28"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=29"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=30"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=31"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=32"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=33"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=34"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=35"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=36"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=37"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=38"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=39"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=40"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=41"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=42"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=43"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=44"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=45"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=46"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=47"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=48"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=49"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=50"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=51"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=52"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=53"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=54"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=55"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=56"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=57"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=58"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=59"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=60"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=61"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=62"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=63"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=64"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=65"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=66"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=67"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=68"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=69"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=70"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=71"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=72"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=73"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=74"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=75"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=76"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=77"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=78"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=79"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=80"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=81"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=82"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=83"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=84"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=85"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=86"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=87"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=88"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=89"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=90"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=91"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=92"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=93"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=94"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=95"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=96"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=97"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=98"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=99"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=100"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=101"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=102"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=103"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=104"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=105"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=106"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=107"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=108"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=109"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=110"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=111"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=112"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=113"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=114"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=115"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=116"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=117"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=118"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=119"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=120"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=121"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=122"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=123"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=124"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=125"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=126"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=127"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=128"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=129"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=130"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=131"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=132"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=133"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=134"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=135"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=136"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=137"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=138"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=139"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=140"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=141"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=142"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=143"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=144"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=145"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=146"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=147"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=148"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=149"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=150"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=151"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=152"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=153"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=154"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=155"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=156"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=157"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=158"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=159"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=160"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=161"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=162"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=163"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=164"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=165"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=166"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=167"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=168"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=169"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=170"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=171"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=172"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=173"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=174"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=175"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=176"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=177"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=178"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=179"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=180"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=181"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=182"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=183"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=184"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=185"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=186"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=187"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=188"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=189"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=190"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=191"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=192"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=193"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=194"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=195"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=196"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=197"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=198"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=199"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=200"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=201"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=202"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=203"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=204"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=205"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=206"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=207"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=208"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=209"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=210"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=211"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=212"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=213"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=214"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=215"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=216"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=217"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=218"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=219"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=220"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=221"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=222"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=223"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=224"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=225"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=226"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=227"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=228"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=229"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=230"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=231"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=232"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=233"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=234"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=235"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=236"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=237"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=238"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=239"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=240"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=241"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=242"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=243"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=244"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=245"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=246"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=247"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=248"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=249"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=250"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=251"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=252"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=253"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=254"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=255"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=256"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=257"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=258"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=259"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=260"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=261"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=262"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=263"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=264"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=265"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=266"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=267"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=268"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=269"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=270"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=271"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=272"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=273"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=274"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=275"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=276"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=277"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=278"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=279"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=280"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=281"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=282"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=283"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=284"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=285"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=286"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=287"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=288"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=289"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=290"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=291"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=292"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=293"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=294"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=295"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=296"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=297"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=298"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=299"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=300"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=301"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=302"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=303"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=304"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=305"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=306"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=307"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=308"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=309"></a><a href="http://astore.amazon.com/cuteseller08-20?node=7&page=310

Maybe you are looking for

  • Can't drag and drop or copy multiple photos from iPhoto 9.4.2

    I am trying to export multiple edited (not originals) photo files from iPhoto to finder (actually to place in my Dropbox folder to share with friends/family). This used to be (in previous versions of iPhoto?) an easy case of dragging and dropping a s

  • NullPointerException when deploying sateless session bean

    I'm deploying a simple Stateless Session Bean, my deployment descriptors are being generated with xdoclet. I'm getting the following exception: weblogic.management.ApplicationException: Exception:weblogic.management.ApplicationException: prepare fail

  • ODBC Driver - Save Password for datasource

    Is there a way to save the password in a report so it is not required to be entered every time the report is opened? We have two ODBC drivers for our report.  The one for MySQL saves the password in the ODBC DSN config.  The second is a DataDirect dr

  • Feature Request: uploading Textures from StageVideo/NetStream

    Right now the only way to currently upload a video texture is to use the non-hardware-accelerated apis, which adds a lot of unwanted processing power when trying to get bits to the video card.  It would be very nice to be able to update texture infor

  • Updater not allowin to update n70

    cant seem to upgrade n70 to ver 5 it say update to pc did download nokia software updater that now sayin minimum memory 256 requiired how can i updte phone