Hi,
How can i populate a default value for any index field. So i do not capture it from document. As this value can be static like 'Tax Number'. So i just make it default value.
Please help on this.
How can i populate a default value for any index field. So i do not capture it from document. As this value can be static like 'Tax Number'. So i just make it default value.
Please help on this.
Comments
4 comments
Which version of FlexiCapture do you have?
In FlexiCapture 11.0 this feature is implemented in a shell.
Im using Flexicapture 9.0.
1. Create a script rule which will collect all fields which should be populated with a default value.
2. Uncheck ReadOnly option for all fields in your rule
3. Write a script which will update field data:
For example (JScript):
For (int i=0; i< fields.count;="">
{
If (Fields.Item(i).Text != "") Fields.Item(i).Text = "Default Value"
}
Please sign in to leave a comment.