コミュニティ

Looping through all batches

Is there a way to go through all batches? I have a registered parameter that contains file number and I would like to through all previous batches to see if that number existed already.

Thanks

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

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

コメント

3件のコメント

  • Avatar
    Permanently deleted user
    Hello,

    In case if you are using FC distributed, I think the best way to perform this action is the following:
    1. The registration parameters can be found in your FC database. You should create a SQL query to get this information.
    select * from dbo.BatchParameter with (NOLOCK) where Name = 'MyParameterName' and Value = 'New value'
    2. For example: You should create script in "Before batch parameter changed" which will select data from this query and check the results.

    Another way is using FC Web Api. In this case you should create a separate application which will be able to read batches and get information about reg. parameters. In order to get more information about this approach please read Developers guide.


    0
  • Avatar
    Permanently deleted user
    Okay thanks and is there a way to trigger a pop up from my external library (dll) to Verification station to display the information I have found?
    0
  • Avatar
    Permanently deleted user
    Hello,

    If you need to check if any existing batches contain a registration parameter with a specific value, you can also use filtering options in batch view. Try using filtering options, maybe there is no need to do anything more complex.

    In case if this is not an option you will need to create a custom button on verification station to execute scripts from your assembly.

    You can find details on how to customize verification station interface in developers Help->Using scripts in abbyy flexicapture->Scripts for customizing interface

    Feel free to ask any questions if you have trouble customizing verification station interface.

    Regards
    Tim






    0

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