Help: Do I need to set a path or something

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

  1. 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

  1. 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

  1. 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??

Subject: This is wrong:

@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

Not really. “” : “DatabaseName2” defaults to Local, not the same server. If you use “” as the 2nd parameter, that defaults to the same database on the same server.

Subject: RE: This is wrong:

Thanks Bill,How do I set local?

Is it a setting in Notes ini?

Subject: Local means that it is on your Local Machine where your Notes client is running.