nca_lov_find_value

List Object Functions

Finds a list of values for an object.

int nca_lov_find_value( LPCSTR name, LPCSTR value );
name The logical name of the object whose value(s) you want to find.
value The value to find. Use a % as a wildcard symbol.

The nca_lov_find_value function finds a list of values for an object. This function is recorded when you click the Find button in a List of Values window.

Return Values

Oracle NCA Error Codes

Parameterization

The following variable can be parameterized using standard parameterization: name

Example

In the following example, the nca_lov_find_value function presses the Find button to find values for Journalsbeginning with Ad. Five values are returned, and the user selects Addition.

nca_edit_click("GLXJEENT.FOLDER_QF.BATCH_NAME.0");
nca_button_press("GLXJEENT.TOOLBAR.LIST.0");
nca_lov_find_value("Journals", "Ad%");
nca_lov_retrieve_items("Journals",1,5);
nca_lov_select_item("Journals", "Addition");