Hi all,
I run into some problem that remind me of the old MS DOS days were you need to set a path.
If so please instruct me how.
The following brings me to that conclusion
- if I try to import data from MS Access using DCR I get the error message
Server error: File does not exists.
And I am sure that all files exist
- If I try to lookup information from the same database in the following scenario:
Database1 does a lookup in Database2
In a form field in Database1 I have a combobox
@DbColumn(“”“”;“ServerName”:“DatabaseName2”;“viewName”;1)
this runs well,
but when I omit the ServerName
@DbColumn(“”“”;“”:“DatabaseName2”;“viewName”;1)
I get the error “Server error: File does not exist”
This is impossible because the default is always the same server
- If I do something the same as above in Lotus script the following occurs:
Set db = session.Getdatabase(“domino/centralbank”, “DatabaseName” works fine, but omitting the full path Set db = session.Getdatabase(“domino”, “DatabaseName” doesn’t work.
WHat do I need to change in order for Notes to work as it should??