nca_response_press_lov
| Response Object Functions |
Clicks a drop down arrow in a response box.
int nca_response_press_lov( LPCSTR name, LPCSTR field );
| name | The name of the response object. |
| field | The name of the field containing the drop down arrow. |
The nca_response_press_lov function clicks a drop down arrow in a response box.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: name
Example
In the following example, the nca_response_press_lov function clicks a drop down arrow in the Block field, in the Examine Field and Variable Values response box:
nca_set_window("Enable Diagnostics");
nca_response_set_data("Enable Diagnostics", "ORACLE Password:==>APPS");
nca_response_press_ok("Enable Diagnostics");
nca_set_window("Examine Field and Variable Values");
nca_response_press_lov("Examine Field and Variable Values", "Block");
nca_set_window("Choose a block");
nca_lov_retrieve_items("Choose a block",1,16);
nca_lov_select_item("Choose a block", "NAVIGATOR");

