sapgui_table_press_button
| Table Functions |
Presses a push button in a table cell.
int sapgui_table_press_button( const char *description, const char *tableID, const char *row, const char *column, [args,] LAST );
| description | User entered text to aid in understanding script |
| tableID | Object ID Strings |
| row | Row number. The first data row is numbered zero (0). If there is a header row it is numbered (-1). |
| column | Column number. The first column is numbered zero (0). |
| args | Optional Arguments |
| LAST | A marker indicating the end of the argument list. Not required if Optional Arguments are used. |
sapgui_table_press_button applies to a push button control in a table cell. It emulates a user clicking on the button in the cell specified by row and column.
Return Values
This function returns LR_PASS (0) on success or LR_FAIL (1) on failure.
Parameterization
You can parameterize all string (char type) arguments.
Example
The following example shows the use of sapgui_table_press_button.
sapgui_table_press_button("(3, 'Status')","usr/subSUB0:SAPLMEGUI:0013/subSUB2:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1211/tblSAPLMEGUITC_1211",
"3",
"0",
BEGIN_OPTIONAL,
"AdditionalInfo=info1019",
END_OPTIONAL);

