Transaction - Type - Id Transaction - Type - Name Source Type Id Transaction - Source - Type - Name Action Id Action Name
Transaction - Type - Id Transaction - Type - Name Source Type Id Transaction - Source - Type - Name Action Id Action Name
95 Int Req Direct Org Xfer 7 Internal requisition 3 Direct organization transfer
189 eIB Misc. Receipt from Project 13 Inventory 1 Issue from stores
291 eIB Move Issue to Field 4 Move order 1 Issue from stores
SQL:
SELECT a.transaction_type_id,
a.transaction_type_name,
a.transaction_source_type_id,
b.transaction_source_type_name,
a.transaction_action_id,
c.meaning
FROM mtl_transaction_types a,
mtl_txn_source_types b,
mfg_lookups c
WHERE a.transaction_source_type_id = b.transaction_source_type_id
AND a.transaction_action_id = c.lookup_code
AND c.lookup_type = 'MTL_TRANSACTION_ACTION'
AND transaction_type_id < 1000
ORDER BY transaction_type_id;