Hello experts,
i am facing the following problem. I´ve got to import a MS ACCESS database in background mode via job.
I got a solution which works in dialoge:
create object conn 'ADODB.Connection'. create object rsdb 'ADODB.Recordset'. concatenate 'Provider=Microsoft.Jet.OLEDB.4.0;' 'Data Source=C:UserspfahlbeDesktopaccess.mdb' into sql. call method of conn 'Open' exporting #1 = sql.
Any idea how it can be handled in background?