Sure is. Here is what I used:
use Win32::OLE;
my $Notes = Win32::OLE->new('Notes.NotesSession') or die "Cannot start Lotus Notes Session object.\n";
This sets up your handle. Next, you specify the database that you want to open, as well as where it might be (the server name). If this example, my server is referenced by $server, and the database name is referenced by $dbname:
$Database = $Notes->GetDatabase($server, $dbname);
So for example, $server = "SERVER1/ATLANTA/XYZ", and $dbname = "admin4.nsf".
Finally, I get the view within the database that I am looking for. In my example below, I want a particular view from the admin4.nsf database called "All Requests by Action":
$GetView = $Database->GetView('All Requests by Action');
$Entries = $GetView->AllEntries;
$rc = $Entries->Count;
This should get you started. A good reference that I have found on the web is:
Good luck!
Ken