OK, thank you for your interest
here the structur of the code
1. standard Logon procedure
2. Call the transaction
3. Call the table with session.findById("wnd[0]/tbar[1]/btn[8]").press
If session.ActiveWindow.Name <> "wnd[0]" Then
GoTo errorhandler
End If
Set table = session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell")
Now, i have to check the column names of the table.
How can i get these?
i found an indirect way to check with
If table.GetColumnPosition("ANUM") < 0 Then
GoTo errorhandler
end if
but it would be better to have an output of the column names.
Regards,
Emil