nca_flex_press_find
| Flexfield Window Functions |
Presses Find in a Flexfield window.
int nca_flex_press_find( LPCSTR name );
| name | The logical name of the Flexfield window. |
The nca_flex_press_find function presses the Find button in the specified Flexfield window.
Return Values
Parameterization
All input string arguments (char type) can be parameterized using standard parameterization.
Example
In the following example, nca_flex_press_find clicks Find to find a value for the Company field in the Operations Accounting Flex dialog box.
nca_flex_press_lov("Operations Accounting Flex", "Sub-Account", "Operations Accounting Flex");nca_lov_retrieve_items("Sub-Account",1,6);nca_lov_select_item("Sub-Account", "1100");nca_flex_press_find("Operations Accounting Flex");nca_flex_press_lov("Find", "Company", "Find");nca_lov_retrieve_items("Company",1,3);nca_lov_select_item("Company", "01");nca_win_close("Find");

