Recent content by prashanth

  1. P

    Import table names and perform a search.

    Thank you all!
  2. P

    Import table names and perform a search.

    I am new to progress!!! Can you please let me know how to solve the above problem using dynamic queries? Thanks in advance.
  3. P

    Import table names and perform a search.

    I have an input Excel file which contains some table names. After importing, how do I do a query on it. Ex:If have to do a for each on the table. Value-of, value etc, does not seem to work. Progress Version : 10.2b
  4. P

    Remove duplicates from Temp table.

    Thank You!
  5. P

    Remove duplicates from Temp table.

    This works. Thanks! But consider one more record(a=100,b=6,c=20,dt=10/10/2012) at the end. Initial records. a b c dt 99 5 10 4/12/2012 100 6 12 5/12/2012 100 6 14 6/12/2012 100 6 10 7/12/2012 101 7 16 8/12/2012 100 6 20 10/10/2012 My final Temp-table should hold values as below. a b c dt 99...
  6. P

    Remove duplicates from Temp table.

    Records would have already been created, and these created values are used at many places. I just wanted this change to happen at only 1 place.
  7. P

    Remove duplicates from Temp table.

    Can anyone please help me out with the below scenario. Def temp-table tt-temp field a as int field b as int field c as int field dt as date. Consider the below records in the above TT. Initial records. a b c dt 99 5 10 4/12/2012 100 6 12 5/12/2012 100 6 14...
Top