Submitted Questions

  • Distinct Value in Value Set

    How to get distinct value for any column in value set.E.g Table is emp, to Type value set for job then in lov it has to display distinct job.

    Bhaskar Bethi

    • Aug 12th, 2011

    select PERIOD_YEAR
    from gl_periods
    where rowid in (select max(rowid) from gl_periods group by
    PERIOD_YEAR )
    order by PERIOD_YEAR

    Follow the same with required table.