Example: sapgui_get_active_window_title
The following example uses sapgui_set_property to set the text within the command window to "dwdm". The script then verifies the window title by retrieving it using sapgui_get_active_window_title and writing to a parameter ParamName1.
Action() {
sapgui_select_active_window("wnd[0]"); sapgui_set_property("tbar[0]/okcd", "text", "dwdm", LAST );
// Verification - not recorded function
sapgui_get_active_window_title("title_name_param", LAST );
// Output: "Window title = SAP Easy Access"
lr_output_message (lr_eval_string("Window title = {title_name_param}"));
return 0;
}