Skip to main content
Solved

Any way to which component view belongs to? Any query?

  • January 5, 2023
  • 2 replies
  • 66 views

ZTC ZTC JGOTA
Hero (Customer)
Forum|alt.badge.img+14

Greetings, IFS community.

 

What is the most efficient way to locate the component to which a view belongs? Any Query?

 

Thank you.

JL

Best answer by suneth

select l.module from dictionary_sys_lu l,dictionary_sys_view v WHERE l.lu_name = v.lu_name AND v.view_name = 'View_Name'

2 replies

suneth
Do Gooder (Employee)
Forum|alt.badge.img+6
  • Do Gooder (Employee)
  • 38 replies
  • Answer
  • January 5, 2023

select l.module from dictionary_sys_lu l,dictionary_sys_view v WHERE l.lu_name = v.lu_name AND v.view_name = 'View_Name'


ZTC ZTC JGOTA
Hero (Customer)
Forum|alt.badge.img+14
  • Author
  • Hero (Customer)
  • 235 replies
  • January 5, 2023

@suneth 

Please accept my sincere thanks for your prompt response. This was very helpful.