This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

user overview after 3days of exit date

Hi Experts,

Could you please help me on the query to generate a report of user's overview after 3 days of last day.

Thanks,

Vijay

Parents
  • I think the SQL query should be simple enough for this, then you can use it to form your report. Something like:

    select * from Person p
    join UNSAccountB ub on ub.UID_Person = p.UID_Person
    join UNSAccountBInUNSGroupB uag on uag.UID_UNSAccountB = ub.UID_UNSAccountB
    join UNSGroupB ub on ub.UID_UNSGroupB = uag.UID_UNSGroupB
    where p.IsInActive=1
Reply
  • I think the SQL query should be simple enough for this, then you can use it to form your report. Something like:

    select * from Person p
    join UNSAccountB ub on ub.UID_Person = p.UID_Person
    join UNSAccountBInUNSGroupB uag on uag.UID_UNSAccountB = ub.UID_UNSAccountB
    join UNSGroupB ub on ub.UID_UNSGroupB = uag.UID_UNSGroupB
    where p.IsInActive=1
Children
No Data