Example: sapgui_select_combobox_entry

The following example uses sapgui_select_combobox_entry to choose a country and language.

// Load the sample
sapgui_set_ok_code("bibs", LAST );
sapgui_send_vkey(ENTER, LAST );
sapgui_select_menu("Dropdown list box",
    "mbar/menu[1]/menu[11]", LAST );
/* Select Country and Language from the combo boxes */
sapgui_select_combobox_entry("UnitedStates", 
    "usr/cmbT005X-LAND", 
    "US", 
    BEGIN_OPTIONAL, 
        "AdditionalInfo=sapgui1015", 
    END_OPTIONAL);
sapgui_select_combobox_entry("English", 
    "usr/cmbT002-SPRAS", 
    "EN", 
    LAST );