lotus-notes

Creating Folder using Java in lotus notes

喜欢而已 提交于 2019-12-11 14:06:16
问题 hi I am trying to create a folder using java in Louts notes.I have created an agent in Domino Designer.I have created a document and i am setting the following properties of the document. Here is the code. doc.replaceItemValue("$ColumnFormatItem", "$Sender1"); doc.replaceItemValue("$ColumnFormatExtItem", "$Sender1"); doc.replaceItemValue("$ColumnProfileDoc", "ColorProfile"); doc.replaceItemValue("$DesignerVersion", "8.5.3"); doc.replaceItemValue("$FormulaClass", "1"); doc.replaceItemValue("

Extract inline images from Lotus Notes using Lotus Notes Java API

送分小仙女□ 提交于 2019-12-11 13:39:35
问题 I'm having issues to extract inline images that are pasted in the email body if the emails are sent from external email (like gmail for example) into the Lotus notes. The emails which are sent from Lotus Notes itself has no issues and I'm able to retrieve the inline images by using the document.generateXML() method and parsing through <picture> tag the stream. My real concern is how to extract from the external emails (like gmail). 回答1: This is a known issue in that a MIME inline attachment

how to access textfield value in lotus script for Domino designer

橙三吉。 提交于 2019-12-11 13:22:51
问题 I am new to Domino designer and lotus script, I tried to access my text field by: Sub Click(Source As Button) Dim myText As String myText = Inputbox("insert some text :","Testing Heading","Default value test",100,100) Msgbox "you have entered : "+myText [myfield].text = myText //error End Sub but it shows an error: named product field does not exist Googled for it but can't find the solution. One more, searched for tutorials for creating forms,views,database in domino designer for beginners.

Can't create Lotus Notes objects

别来无恙 提交于 2019-12-11 12:52:19
问题 I have IBM Notes 9 and Visual Studio 2010. I'm trying to create a NOTESSESSION instance both of the following ways http://www.ibm.com/developerworks/lotus/library/domino-msnet/index.html http://www.codeproject.com/Articles/18517/Lotus-Notes-Integration-with-Microsoft-NET-Platfor but get the error 'New' cannot be used on an interface. After trying every permutation I can think of, still no luck. What do I need to do differently to create lotus objects? Dim notesSession As New lotus

Lotus Notes to Oracle database migration [closed]

拈花ヽ惹草 提交于 2019-12-11 11:36:32
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I have a NSF file of a lotus database. The objective is to give up the legacy lotus notes database and migrate it to relational database oracle. Do any one have expertise in this area to give a step wise process to carry out migration from lotus notes to oracle db. 回答1: 10 years

locate forms into view directory folder lotus notes

耗尽温柔 提交于 2019-12-11 10:56:41
问题 I created a form to display a specific report instead of a view. iwant the form to locate into the directory folder in which views located. for eg I have a view at 1. Reports\a. Quarterly Reports, I want the reports be to located at 1. Reports\b. No of Request per Country(this is the form). So that when I view the reports they are only in one location. Is this possible? 回答1: Ken has good points about the design of the solution. If you need more direct assistance, then I can offer the

Issue in setting unique ID in Domino designer

雨燕双飞 提交于 2019-12-11 10:37:38
问题 I am new to Domino designer and lotus script, following my second question, I have some issue in setting unique ID (for id field in form). My formula for Id field value : T_List:=@DbColumn("" : "NoCache"; "Local"; "DBintro";"testview"; 1); @If(@IsNewDoc & @Elements(T_List)=0;1;@IsNewDoc & !@IsError(T_List);@Subset(T_List;1) + 1;id) I'm having DB in local (nothing shared). referred this link an Answer by AndrewB Server : Local DBname : DBintro view name : testview id - field in the form (which

how to call and sort data in a view?

我与影子孤独终老i 提交于 2019-12-11 10:37:03
问题 I have two view, one is sorting 2011 data and the other one is sorting the 2012, 2013 is coming and I think, create another view is not good. Then I tried to code a formula to call the data in my database and send to view but it's not working . please help me :) 回答1: I think your best option is to create another view. Notes doesn't do well with dynamic view selection formulas. Another alternative to consider is to use categories to group data by year. You could then set up an embedded view

Extract Lotus Notes attachments using VBA

烈酒焚心 提交于 2019-12-11 10:32:37
问题 I need to use VBA to pull in attachments to Excel that are mailed daily to my Lotus Notes account. Let me know if this is at all possible. 回答1: Certainly, take a look at the NotesEmbeddedObject class. More info about dealing with attachments in Domino. 来源: https://stackoverflow.com/questions/6461045/extract-lotus-notes-attachments-using-vba

@JdbcGetConnection not working in XPiNC after upgrade to 9.0.1 FP3 'SSLv3 SSLContext not available'

雨燕双飞 提交于 2019-12-11 09:32:17
问题 After upgrading Notes client to 9.0.1 FP3 I'm unable to get records from MS SQL instance. I got following error: Error while creating JDBC connection, url=jdbc:sqlserver://192.168.21.28\INSTANCENAME:1436;databaseName=dbname, username=username The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: "SSLv3 SSLContext not available". SSLv3 SSLContext not available Has anyone else experienced this? Is there a ini setting to solve the