What is the underlying IFS database table for help description in context pane below?
What is the underlying IFS database table for help description in context pane below?
Hi
As I Know, there is no direct table connected with this help pane as other windows/table windows. Information fetched to this window is saved in language_attribute_tab Table
Hi
As the
Hi,
I have done a search for below fields with given info.
However , I haven't get the expected result.
Anyone knows what's wrong here?
select lc.context_id,lc.module, lc.path, la.prog_text,la.prog_text_short
from language_context lc, language_attribute la
where lc.module = 'ORDER'
and lc.main_type_db = 'LU'
and lc.path like 'CustomerOrder%'
and lc.context_id = la.context_id
and la.prog_text like '%automatically displayed%';
Hi
Please try the below query
select lc.context_id,lc.module, lc.path, la.prog_text,la.prog_text_short,la.long_prog_text
from language_context_tab lc, language_attribute_tab la
where lc.module = 'ORDER'
--and lc.main_type_db = 'LU'
AND lc.path like '%CustomerOrder%'
and lc.context_id = la.context_id
and la.long_prog_text like '%The site is automatically displayed %';
Hi
Im not getting result for this query either.
Seems data stored in different way?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.