Skip to main content

Posts

Showing posts from 2013

Database Properties

http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=%2Fcom.ibm.notes.help.doc%2FDOC%2FH_TO_VIEW_DATABASE_DESIGN_PROPERTIES_1499_STEPS.html http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=%2Fcom.ibm.notes85.help.doc%2Fapp_basic_app_properties_c.html

Lotus Notes Development important points

1) What is the difference between a Pull Pull & a Push Pull replication? Answer:  Pull - Pull Replication In pull pull replication the Server A contacts Server B & Pulls all new and updates information Then Server B contacts Server A and pulls all new and modified information With this type of replication, both servers "share" the work of replication. Over modem connections, however, Server A and Server B PULL simultaneously. This approach helps maximize the usage of the low bandwidth connection. Note : There is no console command equivalent to the Pull-Pull replication type. PULL-PUSH : Server A contacts Server B and PULLS all new and modified information. Once Server A completes the pulling process, Server A PUSHES all of its new and modified information to Server B. The Replicator task on Server A does all of the work. PULL-PUSH replication Command REPLICATE Server B/Acme  2) Is it possible to use the script libraries of...

"Error in Agent" or "Error loading USE or USELSX" running Out-of-Office agent after upgrading to Domino 6.x

Question After upgrading from one Lotus® Domino® server version to another (for example, 5.0.11 to 6.x), you find that the Out of Office agent does not work and produces errors written to the console and the log (if enabled). The error message in the Domino console is as follows: "Error in Agent ´OutOfOffice OutOfOffice´ calling script library ´Common´: Script library signer ´CN=ServerA/O=Widgets´ does not have proper rights Agent ´OutOfOffice OutOfOffice´ error: Error loading USE or USELSX module: Common AMgr: Agent ´outofoffice´ in ´mail\jdoe.nsf´ completed execution" Maintenance on the database did not resolve the problem, nor did replacing the design or running fixup, updall -r, or compact. Answer Agent security rights in Domino 6.0 were revised to be more robust. This issue occurs when the signer of the script library does not have the correct rights to execute on the Domino server, and/or the script library has not been signed in Notes/Domino 6...

jQuery function for drop down menus

$(document).ready(function () {             $('#main-menu li').hover(function () {                 $('ul', this).slideUp(0).stop(true, true).slideDown(400);             },         function () {             $('ul', this).css("display", "block").stop(true, true).delay(500).slideUp(500);         });         });

Database properties

StampAll

Call dc.StampAll ("TodayDate", Today) In our testing, we've never found a difference in performance between the first two of the three preceding examples. Using the extended class syntax, doc.DateToday = Today, appears to be just as fast as using doc.ReplaceItemValue ("DateToday", Today). In theory, we should see some performance difference because in one case, we are not explicitly telling Lotus Notes that we will update a field item, so Lotus Notes should spend a bit longer figuring out that DateToday is, in fact, a field. However, practical tests show no difference. The dc.StampAll method is faster if you are updating many documents with a single value as in the preceding example. There were some point releases in which a bug made this method much slower, so if you're not using the latest and greatest, please confirm this is working optimally (either with testing or by checking the fix list). But as of Lotus Notes/Domino 6.5 and 7, this is ...

Hide the view from the outline page

I have created a new view, and I also created a new role and assign it on the last tab of the properties, unchecking the "all readers and above" . However, i can still see the new view in the outline. Ans:   @USerRoles in the hide formula to control who can & cannot see the view. A tip as to how code a hide is to code the hide is to: - first code I want to see it when - then either just put not (!) before it or 1 - 'I want to see it'

New replication option in 8.5.3

A new replication option, Enable Purge Interval Replication Control , on the Space Savers tab, prevents older deletion stubs and document modifications from replicating to an application.

Recent interview questions

1.        How to convert Notes view to xml in web browser? Answer: 1)Using NotesDXLExporter,              2)Using view?readviewentries              3)Using webservice 2.        Scenario: In a database you have manager access, and in the document level you have author field with your name stamped in it, but still you can not able to edit and save the document . What might be the reason? Answer: Your name is not in the canonical format. 3.        What are the types of connection to connect to the ODBC? Answer: LC connect ion, LEI integrator, DECS connection 4.        Explain your project? 5.        Explain about the Xpages? 6.        Repeater control in xpages? ...