Example: nca_step_end

In the following example, the nca_step_end function indicates the end of the two nca_java_action calls to send to the server as a single packet.

...

nca_set_window("Note");
nca_popup_message_press("Note", "OK");
nca_set_window("Universal Work Queue");
nca_step_begin();
nca_java_action("IEU_HGRID_IEU_HGRID_0", "hGridSClick", "P3==String;P2==10011;");
nca_java_action("IEU_HGRID_IEU_HGRID_0", "hGridSClick", "P3==String;P2==10012;");
nca_step_end();
lngTaskCount =0;
intValidTask =0;
...
Example: Below is the corresponding section of output from the nca_record.log: 
Client Message Properties: action=2 handlerClassId=0x10F handlerId=303
    property=398 type=0xE008 value=Message
    Sub Message Properties: action=2 handlerClassId=0x10F handlerId=303
        property=399 type=0x4000 value="hGridSClick"
        property=400 type=0x4000 value="P3"
        property=401 type=0x4000 value="String"
        property=400 type=0x4000 value="P2"
        property=401 type=0x4000 value="10011"
Client Message Properties: action=2 handlerClassId=0x10F handlerId=303
    property=398 type=0xE008 value=Message
    Sub Message Properties: action=2 handlerClassId=0x10F handlerId=303
        property=399 type=0x4000 value="hGridSClick"
        property=400 type=0x4000 value="P3"
        property=401 type=0x4000 value="String"
        property=400 type=0x4000 value="P2"
        property=401 type=0x4000 value="10012"
...