Example: sapgui_open_connection

The following example uses sapgui_open_connection to initialize the My Connection channel to the R/3 server. My Connection is defined in the SAP client installation.

Action() {
// Connect to R/3 server, and log on
sapgui_open_connection("My Connection", "con[0]");
sapgui_select_active_connection("con[0]"); 
sapgui_select_active_session("ses[0]"); 
sapgui_select_active_window("wnd[0]"); 
// logging on as MyUserName
sapgui_logon("MyUserName", "MyPassword", "800", "EN", LAST );
lr_think_time(4);
// Now you can work
...
return 0;
}