Oracle Applications - Find Application (Module) Long Name from Short name


/ Published in: SQL
Save to your folder(s)

use this SQL query to find out an applications full name (aka long name) and/or application id based on the application short name. This can obviously be re-written to perform the reverse.


Copy this code and paste it in your HTML
  1. SELECT application_name, application_short_name, fa.application_id
  2. FROM fnd_application fa, fnd_application_tl fat
  3. WHERE application_short_name LIKE 'AR'
  4. AND fa.application_id = fat.application_id
  5. ORDER BY fa.application_id

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.