Specifications
Basic Rule Set Syntax
BT Language Reference 239
additional
{
resource Windows {}
resource Connection {}
}
}
transaction "Login"
module "Login"
{
# Start with the SAP R/3 window
event "StartWindow" Windows SetTitle { Title="SAP R/3" }
# End with SAP R/3 System window
event "SAP-RS_System" Windows SetTitle { Title-"SAP R/3 System" }
}
transaction "ChangePO"
module "ChangePO"
{
# Start with the Change Purchase Order window
event "Change-PO" Windows SetTitle { Title=contains:"Change Purchase Order" }
# Next event is status message
event "Status-Changed" Windows StatusMessage { Text=contains:"changed" }
# End with the Purchasing window
event "Purchasing" Windows SetTitle { Title="Purchasing" }
}
transaction "NavFromMain"
module "NavFromMain"
{
# Start with SAP R/3 System window
event "SAP-RS_System" Windows SetTitle { Title-"SAP R/3 System" }
# End with any other window
event "AnyWindow" Windows SetTitle {}
}
transaction "LogOff"
module "LogOff"
{
# Start with menu command to log off
event "Log-Off" Windows MenuCommand { Text="System->Log off" }
# End when executable stops
event "Stop-Front" Windows Stop { ExecutableName="FRONT" }
}










