sapgui_toolbar_select_context_menu_item
| Toolbar Functions |
Selects context menu item.
int sapgui_toolbar_select_context_menu_item( const char *description, const char *toolbarID, const char *menuID, [args,] LAST );
| description | User entered text to aid in understanding script |
| toolbarID | Object ID Strings |
| menuID | Object ID Strings |
| args | Optional Arguments |
| LAST | A marker indicating the end of the argument list. Not required if Optional Arguments are used. |
sapgui_toolbar_select_context_menu_item emulates user selection context menu item.
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 uses sapgui_toolbar_select_context_menu_item.
sapgui_toolbar_select_context_menu_item("Purchase orders", "shellcont[1]/shell/shellcont[1]/shell[0]",
"EDF37CEE4C52E547B9C796B859064397NEW:PO_QUERY",
LAST );

