nca_flex_click_cell
| Flexfield Window Functions |
Clicks a table cell in a Flexfield window.
int nca_flex_click_cell( LPCSTR name, LPCSTR row, LPCSTR column );
| name | The logical name of the Flexfield window. |
| row | The current field name or row number. |
| column | The parent Flexfield or column number. |
The nca_flex_click_cell function clicks in the specified table cell in a Flexfield window.
Return Values
Parameterization
All input string arguments (char type) can be parameterized using standard parameterization.
Example
In the following example, the nca_flex_click_cellfunction clicks in the cell located in the first row and first column from the Operations Accounting Flex dialog box.
flex_press_lov("Operations Accounting Flex", "Account Alias", "Operations Accounting Flex");nca_lov_retrieve_items("Account Alias",1,10);nca_lov_select_item("Account Alias", "Audit Fee");nca_flex_click_cell ("Operations Accounting Flex", "#1", "#1");

