I am using both Oracle Forms version 11g and 12c.
Is it possible to find a table for e.g table1 used in the Oracle Forms application screens including LOV's without opening each FMB individually and searching in it.
Totally there are around 50-75 FMBs in the application.
Thanks
While Forms was a new software product, back then in its 3.0 version (or even lower), you could choose whether you'll keep the form source
.FMB is no longer textual file. Yes, you can open it it a text editor (such as Notepad++) and search for e.g.
FROM(because any table used in form's PL/SQL units or LoVs is part of aSELECTstatement which requires theFROMkeyword) and get something like this:Yes, you'll get "duplicates" if any table is referenced more than once.
Another option is to write a program which will parse the .FMB file and extract tables' names (I can't help with that, though).