I want bank account status in Oracle Apps R12

291 views Asked by At

I want to check bank account status either it is active or inactive by giving bank account name in oracle apps r12 Could anyone please give me the query?

1

There are 1 answers

4
zealous On

This may work as per your problem statement

select
  account,
  status
from bank_account
where account_name = 'ABC'