nca_flex_set_cell_data
| Flexfield Window Functions |
Inserts data into a Flexfield window.
int nca_flex_set_cell_data( LPCSTR name, LPCSTR row, LPCSTR column, LPCSTR data );
| name | The logical name of the Flexfield window. |
| row | The name or row number of the field. |
| column | The parent name or column number of the field. |
| data | The cell data. |
The nca_flex_set_cell_data function sets the cell data 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, the nca_flex_set_cell_datafunction sets the D&B Number in the Customer Information Flexfield to 1.
nca_edit_click("ARXCUDCI.CUST.DESC_FF_MIR.0");nca_flex_set_cell_data("Customer Information", "D & B Number", "Customer Information", "1");nca_flex_press_ok("Customer Information");

