User Defined Enums as List of Values for Filtering, English Only User Defined Enums as List of Values for Filtering, Internalized

Creating OAAM Oracle BI Publisher Reports 19-9 AND status =1 ORDER BY data_row ASC, data_col ASC;

19.2.3.2 Build Transaction Data SQL Queries and Views

Use the information from the previous section and build a SQL query that represents transaction data based on the following: Note: It is recommended to build a view based on this Query so that it is easier to build reports SELECT trx.LOG_ID, trx.USER_ID, trx.REQUEST_ID, trx.EXT_TRX_ID, trx.TRX_TYPE, trx.STATUS, trx.SCORE, trx.RULE_ACTION, trx.TRX_FLAG, trx.POST_PROCESS_STATUS, trx.POST_PROCESS_RESULT, TxnDataRowNrow.DATAcol data_column_name, TxnDataRowNrow.NUM_DATAcol 1000.0 numeric_column_name, to_timestamp_tzTxnDataRowNrow.DATAcol, YYYY-MM-DD HH24:MI:SS TZH:TZM date_column_name, SELECT entTrxMap.MAP_OBJ_ID FROM VT_ENT_TRX_MAP entTrxMap WHERE entTrxMap.DEF_MAP_ID = Transaction to Entity Mapping Id of Entity1_ Name AND entTrxMap.TRX_ID = trx.LOG_ID EntityN_Name, SELECT entTrxMap.MAP_OBJ_ID FROM VT_ENT_TRX_MAP entTrxMap WHERE entTrxMap.DEF_MAP_ID = Transaction to Entity Mapping Id of Entity2_ Name AND entTrxMap.TRX_ID = trx.LOG_ID EntityN+1_Name, trx.CREATE_TIME, trx.UPDATE_TIME, TRUNCtrx.create_time, HH24 created_hour, TRUNCtrx.create_time, DDD created_day, TRUNCtrx.create_time, DAY created_week, TRUNCtrx.create_time, MM created_month, TRUNCtrx.create_time, YYYY created_year FROM VT_TRX_DEF trxDef, VT_TRX_LOGS trx LEFT OUTER JOIN VT_TRX_DATA TransactionDataRowN ON TransactionDataRowN.TRX_ID = trx.LOG_ID AND TransactionDataRowN.ROW_ORDER = rowN LEFT OUTER JOIN VT_TRX_DATA TransactionDataRowN+1 ON TransactionDataRowN+1.TRX_ID = trx.LOG_ID AND TransactionDataRowN+1.ROW_ORDER = rowN+1 WHERE trx.TRX_DEF_ID = trxDef.TRX_DEF_ID and trxDef.TRX_DEF_KEY=Transaction Definition Key 19-10 Oracle Fusion Middleware Developers Guide for Oracle Adaptive Access Manager

19.2.4 Build Reports

Follow the instructions in this section to build reports for entities and transactions.

19.2.4.1 Building Entity Data Reports

Use the SQL Queries or Views built using the information mentioned in Section 19.2.2.3, Build Entity Data SQL Queries and Views.

19.2.4.2 Building Transaction Data Reports

Use the SQL Queries or Views built using the information mentioned in Section 19.2.3.2, Build Transaction Data SQL Queries and Views.

19.2.4.3 Joining Entity Data Tables and Transaction data tables

You can join the transaction data views you built with entity data view using VT_ ENT_TRX_ MAP.MAP_OBJ_ID which is indicated using the pseudo column EntityN_Name.