sapgui_tree_select_context_menu

Tree Functions

Selects an item from a shortcut menu.

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

sapgui_tree_select_context_menu selects an item from a shortcut menu in a tree control.

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_tree_select_context_menu.

sapgui_tree_select_context_menu("Purchase orders", 
    "usr/cntlTREE_CONTAINER/shellcont/shell", 
    "EDF37CEE4C52E547B9C796B859064397NEW:PO_QUERY", 
    LAST );