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
Comments
4 comments
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
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.
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
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.
Please sign in to leave a comment.