Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by iceman42

  1. iceman42

    Flash and 3d Animation

    I have a project that will need to show some apparel slowly spinning, similar to the Adidas Gigaride does with the 360 spin. I am wondering if they have a physical shoe and shoot it a certain way and then add those into Flash, or if they shoot the shoe and then put the frames into like RayDream...
  2. iceman42

    Query Help

    Nevermind I forgot the group by :(
  3. iceman42

    Query Help

    Okay this is where I am at. SELECT B.RDSTAT, COUNT(*) FROM ORPRDETL A, ORPRDETL B WHERE A.RDSTAT = 200 AND B.\"RDORD#\" = A.\"RDORD#\" AND B.RDENDX = '2006-02-27' AND B.RDENDX <> '1940-01-01' AND B.RDSTAT = (SELECT MAX( C.RDSTAT) FROM ORPRDETL C WHERE C.\"RDORD#\" = B.\"RDORD#\" AND C.RDENDX <>...
  4. iceman42

    Query Help

    I've been looking at this, although not with an open mind, for about 2 days and I dont see anyway to get the current location of an item that left area 2 on x date, I might be wrong. This one got me counts. SELECT B.STAT, COUNT(*) FROM ORTL A ,ORTL B WHERE A.STAT = 3 AND B.INVOICE =...
  5. iceman42

    Query Help

    Yeah thats sounds like a better idea, I'll post back what I find out.
  6. iceman42

    Query Help

    The total for the last query is 131 out of a total number of 849 items that left area 2 on 3/1/2006.
  7. iceman42

    Query Help

    I wish I could edit my posts :) sorry about the one line reply my mouse got ahead of my brain. I changed it a little bit to SELECT B.STAT, COUNT(*) FROM ORTL A ,ORTL B WHERE A.STAT = 3 AND B.INVOICE = A.INVOICE AND B.NDX >= 2006-01-31 AND B.STAT = (SELECT MAX(C.STAT) FROM...
  8. iceman42

    Query Help

    Result for that is 8 = 56814.
  9. iceman42

    Query Help

    SELECT B.STAT, COUNT(*) FROM ORTL A ,ORTL B WHERE A.STAT = 3 AND B.INVOICE = A.INVOICE AND B.NDX >= A.NDX AND B.STAT > A.STAT GROUP BY B.STAT This query seems to get me the counts for each area that the order has been too, however I need the query to not count the area if an order is...
  10. iceman42

    Query Help

    This is the second time I'm going to attempt to post this, last time it didnt seem to take :( Anyway I'm using iSeries Access Driver for ODBC v9.blah.blah. Currently I am configuring a System DNS for each Library, I have tried to list multiple Libraries, on the 2nd tab, the driver for some...
  11. iceman42

    Query Help

    Might have figured this one out myself.
  12. iceman42

    Query Help

    The way I did my ODBC was through the Data Sources control panel, but I only saw where I could specify one Library, not very familiar with the window DSN setup.
  13. iceman42

    Query Help

    There is one problem and that is I am doing this through and ODBC connection to an AS/400 and the two tables are in two seperate libraries, so I dont think the joins will work.
  14. iceman42

    Query Help

    Okay thanks, just getting back to it after being out a few days.
  15. iceman42

    Query Help

    There is no flag, however my report starts when the invoice leaves area 2

Part and Inventory Search

Back
Top