× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Only way I know how to position to a document in a view 
is to use OpenView @Command   and specify a key.

or in Lotus Script OpenView method  and secfiy a key.

Try adding a KEY to your script.

DCL        VAR(&URL) TYPE(*CHAR) LEN(128) +
             VALUE('c:\progra~1\lotus\notes\notes.exe +
             Notes://servername/dbunid/viewunid/key')

 The key is a value that appears in the first sorted column of viewName. 
If you omit the key, no document is selected.

Hope that helps.

Sean

http://www.bedbathandbeyond.com



domino400-request@xxxxxxxxxxxx 
Sent by: domino400-bounces+seanmurphy=bedbath.com@xxxxxxxxxxxx
04/15/2005 01:13 PM
Please respond to
domino400@xxxxxxxxxxxx


To
domino400@xxxxxxxxxxxx
cc

Subject
Domino400 Digest, Vol 3, Issue 71






Send Domino400 mailing list submissions to
                 domino400@xxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
                 http://lists.midrange.com/mailman/listinfo/domino400
or, via email, send a message with subject or body 'help' to
                 domino400-request@xxxxxxxxxxxx

You can reach the person managing the list at
                 domino400-owner@xxxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Domino400 digest..."


Today's Topics:

   1. 6.5.4 versus Domino Fax for iSeries (rob@xxxxxxxxx)
   2. Re: Upgrading to 6.5.4 (rob@xxxxxxxxx)
   3. launch Domino view from green screen (Robert Laing)
   4. Re: launch Domino view from green screen (Chris Whisonant)
   5. Re: launch Domino view from green screen (Robert Laing)
   6. Re: 6.5.4 versus Domino Fax for iSeries (rob@xxxxxxxxx)
   7. Re: Upgrading to 6.5.4 (rob@xxxxxxxxx)


----------------------------------------------------------------------

message: 1
date: Thu, 14 Apr 2005 19:10:56 -0500
from: rob@xxxxxxxxx
subject: 6.5.4 versus Domino Fax for iSeries

I just upgraded to Domino 6.5.4 on my i5 server.  After the 
upgrade I reran the Domino Fax Setup.  Fax log shows: 
Major event  Logging subsystem has been started 
Major event  Fax class of service configuration records read 
successfully. 
Major event  Fax server configuration record read successfully 
Major error  Create iterator in Least Cost Routing Configuration 
failed, error 36. 
Major error  Could not create iterator for Fax records in admin 
database. 
Major error  Could not get least cost routing records from the Fax 
admin database.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com



------------------------------

message: 2
date: Fri, 15 Apr 2005 08:11:47 -0500
from: rob@xxxxxxxxx
subject: Re: Upgrading to 6.5.4

http://www-1.ibm.com/servers/eserver/iseries/domino/domino6/releasesupport.pdf

is now updated to include 6.5.4.  However it says that Domino fax for 
iSeries is ok on it and it sure doesn't seem to be.

Anyone out there got it running?  I have a pmr open on it, but there is 
only two people in IBM who handle Facsimile Support/400 and/or Domino Fax 
for iSeries calls and they're not in yet.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com



------------------------------

message: 3
date: Fri, 15 Apr 2005 09:11:54 -0400
from: Robert Laing <rlaing@xxxxxxxxx>
subject: launch Domino view from green screen


Hello all,

I'm trying to launch the notes client to a particular categorized view
positioned to a customer name that's passed as a parm from a green screen
CL program.  I'm pretty close but not all the way there yet.  Here is part
of my CL:

DCL        VAR(&URL) TYPE(*CHAR) LEN(128) +
             VALUE('c:\progra~1\lotus\notes\notes.exe +
             Notes://servername/dbunid/viewunid')

STRPCCMD   PCCMD(&URL)

I'm launching the client OK, opening the db and correct view -- but the
part I can't get is how to position in the categorized view to a 
particular
customer.  Any thoughts ???

Bob




------------------------------

message: 4
date: Fri, 15 Apr 2005 09:20:24 -0400
from: Chris Whisonant <Chris.Whisonant@xxxxxxxxxxxxx>
subject: Re: launch Domino view from green screen

Not sure if this works with the Notes:// syntax, but here is what I use on 

our corporate directory on Intranet to just open the single category:

http://servername/dbname/viewname?OpenView&RestrictToCategory=N

Chris Whisonant
Comporium
Senior Mid-Range Systems Administrator
IBM eServer Certified Systems Expert - iSeries Technical Solutions V5R2
IBM Certified System Administrator - Lotus Notes and Domino 6/6.5
803.326.7270 | 803.326.6142 fax
http://cwhisonant.blogspot.com/

domino400-bounces+chris.whisonant=comporium.com@xxxxxxxxxxxx wrote on 
04/15/2005 09:11:54 AM:

> 
> Hello all,
> 
> I'm trying to launch the notes client to a particular categorized view
> positioned to a customer name that's passed as a parm from a green 
screen
> CL program.  I'm pretty close but not all the way there yet.  Here is 
part
> of my CL:
> 
> DCL        VAR(&URL) TYPE(*CHAR) LEN(128) +
>              VALUE('c:\progra~1\lotus\notes\notes.exe +
>              Notes://servername/dbunid/viewunid')
> 
> STRPCCMD   PCCMD(&URL)
> 
> I'm launching the client OK, opening the db and correct view -- but the
> part I can't get is how to position in the categorized view to a 
particular
> customer.  Any thoughts ???
> 
> Bob
> 
> 
> _______________________________________________
> This is the Lotus Domino on the iSeries / AS400 (Domino400) mailing list
> To post a message email: Domino400@xxxxxxxxxxxx
> To subscribe, unsubscribe, or change list options,
> visit: http://lists.midrange.com/mailman/listinfo/domino400
> or email: Domino400-request@xxxxxxxxxxxx
> Before posting, please take a moment to review the archives
> at http://archive.midrange.com/domino400.
> 


------------------------------

message: 5
date: Fri, 15 Apr 2005 09:48:44 -0400
from: Robert Laing <rlaing@xxxxxxxxx>
subject: Re: launch Domino view from green screen

The URL commands such as restricttocategory and startkey do not seem to
work with the Notes:// protocol.

I had tried startkey with no success but restricttocategory does not work
either.

I guess I could retrieve the doc unid into the CL program and open the
customer doc directly, or save the doc unid into a iSeries PF on the
querysave event in Notes and retrieve the doc unid that way.



------------------------------

message: 6
date: Fri, 15 Apr 2005 09:08:41 -0500
from: rob@xxxxxxxxx
subject: Re: 6.5.4 versus Domino Fax for iSeries

Got it working.
Steps involved were:
Get FXD4409 fix loaded into 5733FXD.
Upgrade to Domino 6.5.4.
Rerun Domino Fax Setup.

I think I ran the Domino Fax Setup and then put the fix on.  Anyway, it 
works now, after rerunning the Domino Fax Setup and bouncing the Domino 
server.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com





rob@xxxxxxxxx 
Sent by: domino400-bounces+rob=dekko.com@xxxxxxxxxxxx
04/14/2005 07:10 PM
Please respond to
Lotus Domino on the iSeries / AS400 <domino400@xxxxxxxxxxxx>


To
domino400@xxxxxxxxxxxx
cc

Subject
6.5.4 versus Domino Fax for iSeries






I just upgraded to Domino 6.5.4 on my i5 server.  After the 
upgrade I reran the Domino Fax Setup.  Fax log shows: 
Major event  Logging subsystem has been started 
Major event  Fax class of service configuration records read 
successfully. 
Major event  Fax server configuration record read successfully 
Major error  Create iterator in Least Cost Routing Configuration 
failed, error 36. 
Major error  Could not create iterator for Fax records in admin 
database. 
Major error  Could not get least cost routing records from the Fax 
admin database.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com

_______________________________________________
This is the Lotus Domino on the iSeries / AS400 (Domino400) mailing list
To post a message email: Domino400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/domino400
or email: Domino400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/domino400.




------------------------------

message: 7
date: Fri, 15 Apr 2005 09:10:00 -0500
from: rob@xxxxxxxxx
subject: Re: Upgrading to 6.5.4

As responded to in another email, all fat and happy now.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com





rob@xxxxxxxxx 
Sent by: domino400-bounces+rob=dekko.com@xxxxxxxxxxxx
04/15/2005 08:11 AM
Please respond to
Lotus Domino on the iSeries / AS400 <domino400@xxxxxxxxxxxx>


To
Lotus Domino on the iSeries / AS400 <domino400@xxxxxxxxxxxx>
cc

Subject
Re: Upgrading to 6.5.4






http://www-1.ibm.com/servers/eserver/iseries/domino/domino6/releasesupport.pdf


is now updated to include 6.5.4.  However it says that Domino fax for 
iSeries is ok on it and it sure doesn't seem to be.

Anyone out there got it running?  I have a pmr open on it, but there is 
only two people in IBM who handle Facsimile Support/400 and/or Domino Fax 
for iSeries calls and they're not in yet.

Rob Berendt
-- 
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com

_______________________________________________
This is the Lotus Domino on the iSeries / AS400 (Domino400) mailing list
To post a message email: Domino400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/domino400
or email: Domino400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/domino400.




------------------------------

_______________________________________________
This is the Lotus Domino on the iSeries / AS400 (Domino400) digest list
To post a message email: Domino400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/domino400
or email: Domino400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/domino400.



End of Domino400 Digest, Vol 3, Issue 71
****************************************


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.