Advertisement
psi_mmobile

Untitled

Feb 24th, 2025
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.55 KB | None | 0 0
  1. SELECT m.module_id,
  2.        m.module_category_id,
  3.        m.name,
  4.        str.str_value reportName,
  5.        m.description,
  6.        m.view_name,
  7.        m.graphical_symbol,
  8.        gm.order_num,
  9.        m.group_type,
  10.        gm.gui_user_id
  11. FROM gu_module gm , module m, str str, gui_users gu, gui_users cur_gu
  12. WHERE gm.module_id = m.module_id
  13. AND str.str_id = m.title_str_id
  14. AND m.module_category_id = 6
  15. AND gu.gui_user_id = gm.gui_user_id
  16. AND gu.loginname = 'of_admin'
  17. AND cur_gu.gui_user_id = ?
  18. AND str.language = cur_gu.language
  19. ORDER BY "ORDER_NUM"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement