コミュニティ

Showing Registration Parameter in Batch View

Hi

I want to show  email address in the columns of the Batch view.

I know how to add it into a document definition but can’t see how to do it here.

Our users need to be able to identify the supplier who sent the invoice to know which one to open.

I am using the default Batch Type.

I have tried looking in help and am unsure. I am wondering if I have to use an event handler? If so, are you able to give me the script to make this work?

Thanks

Anne

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

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

コメント

4件のコメント

  • Avatar
    Permanently deleted user

    Hello,

    To customize the column that demonstrates the registration parameter on the Batches view please do the following: open the “choose columns” menu by right-click mouse button on the batch view > press “new” button > press “select” button to choose the registration parameter.

    See the screenshot

    0
  • Avatar
    Permanently deleted user

    Hi Ekaterina. Your solution not working for default batches and predefined parameters (fc_Predefined:EmailSubject etc...)

    I'm not able to pick them up if I clicked Select. Any workarounds?

    I really need this functionality for better visualisation connection email->batch.

     

    0
  • Avatar
    Permanently deleted user

    Hello Kostya,

    As a workaround you can copy the value of any batch Registration Parameter into the Batch.Comment on a custom script stage of batch-processing type
    //--------------------- 

    if (Batch.Properties.Has("fc_Predefined:EmailSubject")) { Batch.Comment = Batch.Properties.Get("fc_Predefined:EmailSubject"); }

    //---------------------
    and then show the Comment column in the batches' view


    0
  • Avatar
    Permanently deleted user

    Hi Ekaterina,

    I found slightly better workaround. Just created batch type called "test". And added to it parameters "fc_Predefined:EmailSubject". Then I can choose this parameter for column and after i changed type of batch to "Test". I can see value of predefined parameter in column.

     

    0

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