Hi,
You may know or may not that Informatica has pecular repository and methods of change propagations that are not all so "simple" least said.
Now,if Your Informatica is installed on Oracle Server that what You can do:
1.create dblink to You infa server
2.create directories on Your infa server:
examples:
create directory R_BAD as '/etl/stage001/BadFiles/R/'
3.create some structures to authomatically create external tables in the directory

Now,You have unique ability to run the comparisons of Your database data with Infa server data(see example) and create views poiting there
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
create view v_infa_source_logs (source_name,
                                                        mapping_name,
                                                        target_name
                                                       )
AS
   SELECT NVL (s.source_name, 'NO SOURCE') source_name, t.mapping_name,
          t.target_name
     FROM informatica.rep_src_mapping@p_etl s,
          informatica.rep_targ_mapping@p_etl t,
          informatica.rep_sess_tbl_log@p_etl l
--  WHERE
   WHERE  t.mapping_name = s.mapping_name
      AND s.subject_area = 'PROD'
      AND s.subject_area = l.subject_area
      AND s.source_name = l.table_name