sapgui_toolbar_select_menu_item

Toolbar Functions

Selects toolbar menu item.

int sapgui_toolbar_select_menu_item( const char *description, const char *toolbarID, const char *menuID, [args,] LAST );
description User entered text to aid in understanding script
toolbarIDObject ID Strings
menuIDObject ID Strings
argsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

sapgui_toolbar_select_menu_item emulates a user selecting a toolbar 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_menu_item.

sapgui_toolbar_select_menu_item("Purchase orders", 
    "shellcont[0]/shell/shellcont[1]/shell[0]", 
    "B8531D479B74E64E9F12564D894392E9NEW:PO_QUERY", 
    BEGIN_OPTIONAL, 
        "AdditionalInfo=sapgui1016", 
    END_OPTIONAL);