Lotus Notes - Recertifying an expired ID File

My client would like to know if IDM can recertify and EXPIRED ID file. Documentation says IDM creates an Adminp process while recertifying the account and it is working for non expired accounts. The adminP process pushes the changes to the user, when the user logs in for the first time after recertification. But the client has a system in place where the users can request for recertification when the account is about to expire. So they are not interested in the recertification that IdM supports right now.
I would appreciate if any of you could confirm that IDM can recertify an expired ID file and send it the user, if the account is expired or the user loses his ID File. The ID files are archived in a network share where IDM has access to. I tried setting the ID File attribute while recertifying. But the file is unaffected and it just created an adminP process.
Lotus Domino 6.5.4
Sun IdM 7.1

I'm getting the following error for lot of functions while accessing the nsf:
note*****ception:
not implemented at lotus.domino.cso.base.notimplemented(unknown source) at
lotus.domino.cso.view.getallunreadentries(unknown source) at
com.lotus.getname.runnotes(getname.java:40) at
lotus.domino.notesthread.run(unknown source)
Anyone who knows how to stop it??
This topic first appeared in the Spiceworks Community

Similar Messages

  • Lotus Notes - Recertifying with new certifier on hierarchy move

    Documentation says we should specify the old certifier on a hierarchy move and
    The move request will create a �Name Move Request� in the requests database and
    must be completed by the new certifier that represents the user's new organization. (Page 116, Resource reference IDM 7.1)Hows do we specify the new certifier to complete the request? Or is it a manual process that someone to complete the request at the Domino side?
    IDM 7.1 Domino 6.5.4

    I contacted my sales person first and they gave me the contact. I am in education.
    Could also try
    United States
    Use Express Lane for fast, personalized service.
    1-800-275-2273
    iPhone: 1-800-MY-IPHONE (1-800-694-7466)
    Apple Rebates: 1-877-4-APL-PROMO (1-877-427-5776)
    Education Customers: 1-800-800-2775 (support), 1-800-780-5009 (sales)
    Enterprise: 1-866-752-7753
    If you have a hearing or vision impairment, call 1-877-204-3930 for direct access to Apple representatives who are trained in providing support using accessibility services.
    www.apple.com/support/

  • Lotus Notes Backup data .nsf file corrupted

    Hello friends,
    One of my users backed up data (nsf file) of Lotus notes got corrupted. The file size is 4 GB. Now the user is asking me to retrieve the data (mails) and i am not able to find any utility.
    Anyone having idea about any such free utility / tool to repair corrupt .nsf file.
    Thanks in advance.

    Lotus Notes Database data corruption usually occurs when the software application or the operating system crashes while the .OND data file is open in memory. In most cases, headers or parts of the data file are not saved to disk causing the data
    corruption or the application to fail. There are ways to recover all or part of your data file. U should immediately make 2 or 3 backup copies of the corrupted OND file(s) and stop using the computer except to send the file(s) for recovery analysis.
    There is a very good tool NSF Repair Kit such is powerful that repairs & Recovers Lotus Notes NSF file & restores them in original format to any user-intended location.
    1. Make a new copy of the database and deselect Access Control List in the “Specify What to Copy” section of the Copy Database dialog box. This will bypass the corrupt ACL and create a default ACL that you can then modify as necessary.
    2. Replace the design of a mail database with a non-mail template and then do a replace back to the mail template, which has been known to correct corrupted ACLs.
    3. From the Administration client > Files tab, select a healthy ACL database where the ACL is similar to the one that needs to be replaced. Right-click and select ACL.Copy. Select the bad ACL database then right-click and select ACL.Paste. This
    is an easy way to reset the ACL.
    U may try to download and repair to link
    http://www.nsf.repair/
    If all are failed, then go to ur Lotus dir and search for data directory and take full backup of archieve directory.
    Or other source of solution your trouble can be at:- http://www.filerepairforum.com/forum/other/other-aa/lotus-notes/247-lotus-notes-8-5
    Hope this may help u!

  • Adobe/MS Access/Lotus Notes Integration

    Not sure if I'm in the right place, please feel free to let me know if not.  Have searched in Access and Lotus Notes forums but no answers yet. I am using MS Access to automatically send email from Lotus Notes and attach a PDF file that is located on the server.  Next step is I would like to be able to create a PDF portfolio out of that sent email and save/name it according to key data in the record.  Am also using batch file to create the network folder but am hoping to be able to merge all these processes into one so that when the email is sent, the folder will be created and the PDF portfolio created from the sent email.  So far, have not been able to find any answers, am hoping at a minimum someone might be able to point me in the right direction.
    Am using this method to batch create folders based on new records in the Access database:
    http://www.0092ff.com/tips-tricks/create-folders-from-an-excel-sheet
    Here is the code I'm using to create the email - anyone know of any way to take that email that just got sent in Lotus Notes and create a PDF Binder/Portfolio?  Thank you so much!
    Private Sub cmdSendEmail_Click()
    SendPrequal
    MsgBox "Prequal Request Complete!"
    Me.Requery
    End Sub
    Sub SendPrequal()
    Dim oEmail As clsEmailMessage
    Dim strSubject As String, strAttach As String, strAttachIns As String, strBody As String, strSave As String, strMsg As String, Saveit As Boolean
    Dim rtItem As Object
    Dim rtStyle As Object
    Dim sFormattedText As String
    If Me.MsgFreeFlow.Value = "" Then
    Else
    strFF = Me.MsgFreeFlow.Value & vbCrLf & vbCrLf
    End If
    sFormattedText = strFF
    strSubject = "Information Request for " & StripString([RQContractor])
    strAttach = "d:\MyDocs\Forms\pdf\FormName.pdf"
    strMsg = "Message Here" & vbNullString & vbCrLf & vbCrLf
    strBody = strMsg
    If Me.PF.Value = 0 Then
    strAttachIns = "d:\MyDocs\MyAttach_a.pdf"
    Else
    strAttachIns = ":\MyDocs\MyAttach_b.pdf"
    End If
    Set oEmail = New clsEmailMessage
    oEmail.AddRecipient Me.ContractorEmail, recipTo
    oEmail.AddAttachment strAttach
    Select Case Me.frmINS
    Case -1
    oEmail.AddAttachment strAttachIns
    Case 0
    End Select
    oEmail.SendEmail strSubject, strMsg, False
    'doc.ReturnReceipt = "1"
    'save draft
    'Saveit = True
    Set oEmail = Nothing
    End Sub
    clsEmailMessage Module:
    '**************************CLASS CODE **************
    Option Compare Database
    Option Explicit
    'creates and sends email using lotus notes.
    'does not require notes to be running (it will start a session if needed).
    'does not require references in the project
    'uses OLE not com, so objects are declared as simple objects
    'the declares below are for using COM, but this may require some
    'additional configuration to work.
    'Dim mobjNotesDB As NotesDatabase
    'Dim mobjNotesMessage As NotesDocument
    'Dim mobjNotesRTItem As NotesRichTextItem
    'Dim mobjNotesSession As notessession
    Dim mobjNotesSession As Object 'lotus notes session
    Dim mobjNotesMessage As Object 'a notesdocument object (the email message)
    Dim mobjNotesDB As Object 'a notes db object
    Dim mobjNotesRTItem As Object 'a notes tich text object
    'notes constant for attaching file
    Const EMBED_ATTACHMENT = 1454
    Public Enum RecipTypes
    recipTo = 1
    recipCc = 2
    End Enum
    Private Sub Class_Initialize()
    Set mobjNotesSession = CreateObject("Notes.Notessession")
    Set mobjNotesDB = mobjNotesSession.GetDatabase("", "")
    Call mobjNotesDB.OPENMAIL
    ' make new mail message
    Set mobjNotesMessage = mobjNotesDB.CreateDocument
    'create the body
    Set mobjNotesRTItem = mobjNotesMessage.CreateRichTextItem("Body")
    End Sub
    Private Sub Class_Terminate()
    Set mobjNotesSession = Nothing
    Set mobjNotesMessage = Nothing
    Set mobjNotesDB = Nothing
    Set mobjNotesRTItem = Nothing
    End Sub
    Public Sub AddRecipient(strName As String, intType As RecipTypes)
    Dim intNextSemiColon As Integer
    Dim intLastSemiColon As Integer
    Dim strOneAddress As String
    Dim j As Integer
    Dim blnLastAddress As Boolean
    'If the passed contact has a semi-colon, split into multipe contacts
    If InStr(1, strName, ";") > 0 Then
    intLastSemiColon = 1
    intNextSemiColon = 0
    blnLastAddress = False
    For j = 1 To Len(strName)
    intNextSemiColon = InStr(intLastSemiColon, strName, ";")
    If intNextSemiColon = 0 Then
    blnLastAddress = True
    strOneAddress = Mid(strName, intLastSemiColon, Len(strName))
    Else
    strOneAddress = Mid(strName, intLastSemiColon, intNextSemiColon - 1)
    intLastSemiColon = intNextSemiColon + 1
    End If
    If intType = recipTo Then
    If mobjNotesMessage.HasItem("SendTo") Then
    Call mobjNotesMessage.AppendItemValue("Sendto", strOneAddress)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Sendto", strOneAddress)
    End If
    ElseIf intType = recipCc Then
    If mobjNotesMessage.HasItem("Copyto") Then
    Call mobjNotesMessage.AppendItemValue("Copyto", strOneAddress)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Copyto", strOneAddress)
    End If
    End If
    If blnLastAddress = True Then Exit For
    Next j
    'Otherwise, just add one name
    Else
    If intType = recipTo Then
    If mobjNotesMessage.HasItem("SendTo") Then
    Call mobjNotesMessage.AppendItemValue("Sendto", strName)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Sendto", strName)
    End If
    ElseIf intType = recipCc Then
    If mobjNotesMessage.HasItem("Copyto") Then
    Call mobjNotesMessage.AppendItemValue("Copyto", strName)
    Else
    Call mobjNotesMessage.ReplaceItemValue("Copyto", strName)
    End If
    End If
    End If
    End Sub
    Public Sub AddAttachment(strFilePath As String, Optional vName As Variant)
    Dim strName As String
    If IsNull(vName) Or IsMissing(vName) Then
    strName = strFilePath
    Else
    strName = vName & ""
    End If
    mobjNotesRTItem.EMBEDOBJECT EMBED_ATTACHMENT, "", strFilePath, strName
    End Sub
    Public Sub SendEmail(strSubject As String, strText As String, blnPreview As Boolean)
    Call mobjNotesMessage.ReplaceItemValue("Subject", strSubject)
    Call mobjNotesRTItem.AddNewLine(2)
    Call mobjNotesRTItem.AppendText(strText)
    mobjNotesMessage.SAVEMESSAGEONSEND = True
    If blnPreview = False Then
    Call mobjNotesMessage.Send(False)
    Else
    Call mobjNotesMessage.Save(True, False)
    End If
    End Sub
    '***************END CLASS CODE ***************************

    Found this link, http://forums.adobe.com/thread/797809?tstart=-1, that states:
    Acrobat 9 and later supports creation of a PDF Portfolio (the newer form of packages) via JavaScript, which can be called from VBA using the JSObject bridge.
    Have been looking along those lines, but not sure what I'm looking for, if there is a way to create the PDF portfolio using code, I would greatly appreciate any information, thank you.

  • PDFmaker update Lotus notes 8.5.2

    Information for anyone using PDFMAKER and lotus notes we use corp version of lotus 6.5 and then 8.0 recently converted to 8.5.2. I have always used pdfmaker to conver email to pdf for years and when we upgraded it broke. Two key things to get it to work again
    Upgrade to Adobe 9.1 or higher
    Here's how I've done it:
    Lotus Notes 8.5 is supported since Adobe Acrobat 9, but it actually works only since 9.1.0.
    Adobe Acrobat 7 has no Lotus Notes plugin, Adobe Acrobat 8 is supporting only Lotus Notes 5 - 7.
    So, if any user wants to create PDFs out of Notes documents using PDFMaker, Adobe Acobat 9.1 or higher must be installed on the machine AFTER Lotus Notes 8.5 has been installed.
    The following modifications are done to the Lotus Notes 8.5 installation:
    Added files to C:\Program Files\IBM\Lotus\Notes:
    AdobePDFMToolbarInst.dll
    ndbPDFML.dll
    Added notes.ini entries:
    AddInMenus=C:\PROGRA~1\Adobe\ACROBA~1.0\PDFMaker\Mail\LOTUSN~1\PDFMLO~1.DLL
    AdobePDFMInst=1
    EXTMGR_ADDINS=AdobePDFMToolbarInst
    One thing to note
    AddInMenus=C:\PROGRA~1\Adobe\ACROBA~1.0\PDFMaker\Mail\LOTUSN~1\PDFMLO~1.DLL
    this might change to
    AddInMenus=C:\PROGRA~1\Adobe\ACROBA~2.0\PDFMaker\Mail\LOTUSN~1\PDFMLO~1.DLL
    to verify the correct setting from the dos prompt
    use dir/w to verify the correct path
    made these changes and now I am back in business hope this helps anyone else who might be struggling with loosing this great functionality .
    One other thing my Icons are viewable in lotus notes it works just like it did before Icons trigger and pdf is created happy camper here

    Exactly same issue here. Issue started after Mac OS X 10.7.2 update.
    Lotus Notes works fine, but menus in menu bar remains unresponsive.
    Updates to Lotus Notes 8.5.2 FP4 but did not solve the issue.
    If anyone has an idea to fix this without reinstalling the complete software, it will be welcome.

  • How to handle a redirect on a Lotus notes DB

    Hi everyone,
    I have a problem, I am connectin to a lotus notes database to download a file (using URLConnection)
    ...gbp.nsf/agWebLAL?OpenAgent&UNID=A9D19EDE65447DF5C1256F2000465E87
    The thing is lotus notes doesn't give the filename, it redirects me to something first, then downloads the filename..
    Does anyone know of a way on how I can get the final url (the place where I am being redirected), filename and mimetype
    Thanks!

    Hi everyone,
    I have a problem, I am connectin to a lotus notes
    database to download a file (using URLConnection)
    ...gbp.nsf/agWebLAL?OpenAgent&UNID=A9D19EDE65447DF5C12
    56F2000465E87
    The thing is lotus notes doesn't give the filename,
    it redirects me to something first, then downloads
    the filename..
    Does anyone know of a way on how I can get the final
    url (the place where I am being redirected), filename
    and mimetype
    Thanks!This connects to a file in the database, and I was wondering if there is a way to get the final URL, the filename and the mimetype before downloading it? It downloads fine, I just want to be able to get the details before my users download it..

  • Antispam Plugin Issue for Lotus Notes w/ Solution

    Background:
    We have a case open with Ironport due to some Spam issues we are currently experiencing and I wanted to use the current version of the plugin instead of the customized one our company has developed into our template.
    I was trying to install the plugin but the Plugin would not appear on the Action menu. After some troubleshooting I found out why.
    Issue:
    We use a custom install location for the setup of the Lotus Notes Client. During the install, after selecting the correct location of the Notes.ini, the installer updated the notes.ini with the parameters to run the plug-in. But the menu actions did not appear as expected.
    Solution:
    After investigation, I found the dll files for this plugin were copied to the default Lotus Notes install location (C:\Program Files\Lotus\Notes) instead of the "NOTESPROGRAM" directory assigned in our notes.ini. After copying the dll files to our customized install directory, the issue was resolved.
    So for others who have the same issue, you know how to fix it.
    Follow-Up:
    Ironport, if you could get someone to investigate this, it would prevent future issues with your plugin.

    Follow-Up:
    Ironport, if you could get someone to investigate this, it would prevent future issues with your plugin.
    Thank you for the detailed report. I have filed defect #9107 for this issue. I'll also see that this gets added to our knowledge base.

  • 9500 synchronisation with Lotus Notes 6

    Nokia PC Synch (ver 6.81.13.0)loaded and settings created to synchronise with Notes ver 6 file on local drive. When trying to synch I get message
    Could not open the ID file
    then synchronisation fails. i am trying to sych contacts and calender

    I got a Nokia 6500 an have the same Problem i can^t synchronise my handy with lotus notes 6.5
    Error: Could not open the ID file
    I'm Lotus Notes Admin. The .id File is in the Data-directory.
    i tried it with local settings and a replicated .nsf file on my notebook.
    and i tried it with the server setting. both times i got the same error.
    i got Nokia PC Sync Version 6.83.14.1

  • Lotus Notes to Mbox converter, Lotus Notes to Mbox converter

    Anyone have an idea how to convert Lotus Notes email files (.NSF) to a MBox format? I have 25 GB of email that I need to convert over

    Migration from Lotus Notes to MS Outlook email environment is a complex process. It entails migration of user mailboxes from IBM Domino Server to MS Exchange Server. RecoveryFix for Lotus Notes to Outlook successfully
    exports emails from NSF file to PST file of MS Outlook. With this email migration tool, you can export emails, attached files, contacts, journals, appointments and tasks from IBM Domino Server to PST files of MS Exchange Server. It also allows the use to save
    the Lotus Notes user mailboxes in EDB files of MS Exchange Server.
    Thanks

  • How to view *.eml files in Lotus Notes as native application?

    Using Desktop Integration for Lotus Notes, and using Contribution Folders via Notes:
    I can drop-and-drag an e-mail from lotus notes inbox to the contribution folder (in Notes) ok. I can view the *.eml file in Contribution Folder (Notes and Explorer), when I select "View" from the Contribution Folder it first attempted to open the file in outlook, I then changed the "view with" attribute,to Notes. Notes attempts to open the file and throws an error message: Invalid Directory Name or device not ready.
    Has anyone come across this before? If so, how did you ensure application consistency that e-mails declared as "documents" are accessed again via the native application (Lotus Notes not Outlook)?
    Many thanks,
    A.

    Not entirely. At least we came to the conclusion it doesn't make (much) sense to block the save option of PDFs if you want to allow printing them
    Anyway; there is of course another possibilty: you could always write your own java bean PDF reader; there are plenty of java PDF libraries available:
    Open Source PDF Libraries in Java
    The easiest way would be to choose one which can open a PDF from a URL and render it; I would retrieve the image via mod_plsql using WPG_DOCLOAD and simply use the PDF library to render the PDF. No tempfiles anyway, and if you don't implement it there is also no save button.
    cheers

  • How to import files with the extension Lotus Notes nsf in OSx Maveriks Mail

    I have a large archive of electronic mail produced with Lotus Notes, then nsf file, recently I purchased (November 2013) a Retina Macbook 15 "with OS Mavericks, I need to import all my mail format nsf program Mail this at Mavericks, I ask for help for this operation
    thanks

    Hello,
    From what I understand through your problem is that you are updating the database tables with the values obtained from the *.msg file, which may also include Asian characters. If you debug and check your internal table I'm certain you would find your Asian characters as they are. But once you upload them on to the database they get distorted. The problem is probably arising because your system is not unicode enabled, Please confirm with your basis person whether the system is Unicode enabled.
    Regards,
    Manish.

  • Can "createpdf" online turn a very large Lotus Notes archive into a single pdf file?

    Can "createpdf" online turn a very large Lotus Notes archive into a single pdf file?

    Good day,
    There is a 100MB file size limit when submitting files to the the CreatePDF service or using the CreatePDF Desktop Printer. 
    Please let us know if you have any questions.
    Kind regards,
    David
    Adobe Systems

  • Can you please help to understand how the firefox decides on the Expires date for a cached javascript file ( my server did not set any Expire header, but firebox set it down).

    # Question
    Can you please help to understand how the firefox decides on the Expires date for a cached javascript file ( my server did not set any Expire header, but firebox set it down). I tried to understand but different javascript file gets different Expires date value when it is being cached. Please help me as I tried lot and could not get proper answer for this. Thanks in Advance.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Lotus Notes - Create .pdf and file size limits

    Is there a way to increase the 100MB file size limit in Lotus Notes create .pdf option?

    Good day Lisa,
    Are you using Adobe Acrobat to create your PDF files or are you looking to use our CreatePDF service?  If you're trying to use the CreatePDF service, I'm sorry, but we can't change the 100MB file size limit.
    Kind regards,
    David

  • Created with PDF Maker files from Lotus Notes appears warning to Flash Player disable?

    Lotus Notes 8.5.3 FPX
    Windows 7 64 bit,
    Acrobat 11.0.6 XI.Pro
    When files are generated from the PDF Maker PDF from Lotus Notes, then a warning is displayed to Flash Player. How can I disable this warning?
    Is there an option in the Adobe Customization Wizard XI?
    Flash Player has been updated.
    Thanks for the help

    Good morning, I have Adobe Flash Player aktualisert-> problem is solved. Is there no way to check to disable permanently?

Maybe you are looking for

  • Converting a publisher document to pdf

    I have been trying to convert a publisher document to pdf.  I keeping getting a message stating cannot save file.

  • Apple TV 3 Toast?!

    So here's the deal...I bought an Apple TV 3 a while ago and it was working fine. I did a software update and it worked fine after that as well. Then, one day, I went to turn the Apple TV on. This is what it did: - black screen with large Apple icon a

  • Gallery widget and iPad

    The Gallery widget in iWeb 09 does not work on the iPad - because it uses Adobe Flash! Does anyone know if there is a non-Flash gallery widget available in iWeb from iLife 11? Or from somewhere else?

  • How do I dsable attack site warnings. I never got these before.

    Where do I find the Security Tab to uncheck "Block reported attack sites". I never got this message before and I have always visited Virginia Tech's website for sports (Hokiesports.com) and I know it is not an attack site. Is this a new feature? I wa

  • Prompt when processing a dimension

    Hi, When i am processing the account dimension i am getting a prompt Stating the the file name already exists in the location do i want to replace it. This only comes up on one machine is there a way to stop this prompt from coming up. Many thanks