Please provide the subject area or an SQL tables to retrieve transaction approvers from the Learning module (24B).
I have tried using this one, but it doesn't return any results.
select wft.*
from
Fusion.hrc_txn_header txnh
, Fusion.hrc_txn_data txnd
, FA_FUSION_SOAINFRA.wftask wft
, fusion.hrc_txn_error txne
, Fusion.per_all_people_f p
Where Txnh.Transaction_Id = Txnd.Transaction_Id
and txnh.transaction_id = txne.transaction_id(+)
And To_Char(Txnh.Transaction_Id) = Wft.Identificationkey(+)
And Txnh.subject_id = p.person_id(+)
And Txnh.Transaction_Id in (300000060123719)