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

Question

Question

Workflow Document Filing Question

asked on October 2, 2015

I have over 500 benefit confirmation statements I need to file into each employee's file.  They are have been printed by an outside vendor.  Using Quick Fields to OCR gather the metadata.

95% of the names on the statements are "First Name, Last Name"  The employee files in the repository are either "Last Name, First Name Middle Initial"  or "Last Name, First Name"  

Looking for suggestions in workflow on how to process "First Name, Last Name" and employee file "Last Name, First Name Middle Initial"  As well as First Name, Middle Initial, Last Name" and employee file "Last Name, First Name"  

Any workflow ideas would be helpful.

Thanks!

Pete

0 0

Replies

replied on October 2, 2015

What sort of processing are you looking to do?

0 0
replied on October 2, 2015

Batch processing of the Benefit Confirmation Statements.  After they run through Quick Fields I want to take the tokens of "First Name" "Last Name" and auto file the docs via workflow to their current employee file.  The employee file naming convention is "Last Name", "First Name" "Middle Initial" or "Last Name", "First Name"  I want to take "John" "Doe" "M" and file the statement in his current employee folder named "Doe" "John"  My current workflow creates a new folder "Doe", "John" "M" next to the current folder "Doe" "John"  

0 0
replied on October 2, 2015

If the comma is always there, you can break the name up on the comma and create 2 tokens:

^(.+[a-z])\s?[A-Z]?,   picks up the first name without the middle initial.

,\s?(.+)$  picks up the last name ("everything after the comma until the end of the input").

You can use this in Quick Fields and build the folder path there so the documents are filed directly to the right place.

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

Sign in to reply to this post.