コミュニティ

How to populate a default value for any index

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.

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

4件のコメント

  • Avatar
    Anastasiya Nechaeva
    Hi Amarjit,

    Which version of FlexiCapture do you have?
    In FlexiCapture 11.0 this feature is implemented in a shell.
    0
  • Avatar
    Permanently deleted user
    Hi,

    Im using Flexicapture 9.0.
    0
  • Avatar
    Anastasiya Nechaeva
    Please do the next things:

    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"
    }
    0
  • Avatar
    Permanently deleted user
    Thanks a lot Anastasiya.
    0

サインインしてコメントを残してください。