How to retrieve Document ID

Hi All,

I want to retrieve the document ID of recently added or imported document. Is there any way to do this.

Thanks in advance

Maju

Subject: How to retrieve Document ID

The doc id is called the universalid in lotusScript or @DocumentUniqueID in formula language

HTH – Cheers

Subject: RE: How to retrieve Document ID

Hi,

But i need the document ID of recently added or imported document.

Is it possible

Thanks in advance

Maju

Subject: That’s what Joe gave you! (WAS: How to retrieve Document ID)

Subject: thanks ben

Subject: How to retrieve Document ID

If you would take the trouble to ask a halfways informative question you would have been finished long ago. I had to go back 8 days to discover you are trying to find a document that you have just imported via dxl using the C-Api, not exactly trivial omissions.1. Ensure the document contains a field to identify it e.g name=imported, value=‘yes’

  1. Note the time the prog starts

  2. Import the document(s)

  3. Do an nsf search using the start time as cutoff and process the document(s) containing the above field removing it so you don’t process them again.

The doc id is in the SEARCH_MATCH structure supplied by nsfSearch

Subject: RE: How to retrieve Document ID

Thanx