LOV Titles - Intergraph Smart Materials - Version 2020 (10.0) - Customization & Programming - Hexagon PPM

Intergraph Smart Materials Customization (2020)

Language
English
Product
Intergraph Smart Materials
Subproduct
Classic
Search by Category
Customization & Programming
Smart Materials/Smart Reference Data Version
2020 (10.0)

In many cases, the titles of standard Smart Materials LOVs are identical to the screen or window title of that screen where you maintain the data you can select from that list of values.

If you implement your LOVs in the same way, you can translate the LOV titles in the following way:

SET_LOV_PROPERTY(‘my_lov’,TITLE,m_pck_dynamic_labels.get_window_title('my_menu_item'));

You can also proceed in the same way as for radio groups, tab pages, or alerts. Sample code looks like this:

DECLARE

l_window_title m_glossary_details.translated_prompt%TYPE;

l_translated_hint m_glossary_details.translated_hint%TYPE;

l_translated_tooltip m_glossary_details.translated_tooltip%TYPE;

BEGIN

m_pck_dynamic_labels.get_translated_prompt (‘My window title’,

l_window_title,

l_translated_hint,

l_translated_tooltip

);

SET_WINDOW_PROPERTY ('my_window', TITLE, l_window_title);

END;