You are viewing limited content. For full access, please sign in.

Question

Question

SDK and Last Modified By

asked on October 3, 2014

Hello...

Is it possible to obtain Last Modified By for a document by using the SDK?  I need to update some documents but I want to exclude those modified by a certain user.  I can find the documents I need but in the VBScript I want to be able to say ...if ThisUser was the last user to modify this document then Skip this one.

If not, is it possible to exclude a user in a search like saying: 

...({LF:LastModifiedBy ="Not this User"}) 

If either one is possible, would you please show me how to implement it?

All help is most appreciated.

 

Dennis

 

0 0

Replies

replied on October 3, 2014

Change the equal sign to "<>".

0 0
replied on October 6, 2014

Hey Dennis,

 

If your question has been answered, please remember to select the "This answered my question" button below the appropriate post!

 

Thanks!

0 0
replied on October 8, 2014

The first part of his question. Can the SDK get the Last Modified By user information? I see you can get Creator and Owner.

0 0
replied on October 8, 2014

In RA, the EntryInfo object doesn't expose the LastModifiedBy property, but you can get it with a SingleEntryListing and the SystemColumn.ModifierName column.  I believe LFSO is similar.

0 0
replied on March 21, 2016

I used this to get the last modified by -     

Dim doc as LFDocument  = Me.Entry
Dim lastModifiedBy as String = doc.LastModifierName

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.