Example: nca_response_get_cell_data

In the following example, the nca_response_get_cell_datafunctionretrieves the value inserted by nca_response_set_data.

char buf[64];

nca_response_set_data(
    "Examine Field and Variable Values",
    "Block==>*SELECT*||Field==>'check'||Value==>");
/* get the "Value" field after the nca_response_set_data call */
nca_response_get_cell_data(
    "Examine Field and Variable Values", 
    "Value",
    buf);
nca_response_press_ok(
    "Examine Field and Variable Values");