Modify report name with pack id

Is it possible to modify report name for pack slip ?
Like packing slip print_packId

2 Likes

You can put a post processing method directive on Ice.SysMonitorTasks.GetBallonRowsKeepIdleTime

In this method, look up the task against the task parameters. Then update your description to what you want.

Quick example (update for your use)

Result:
image

4 Likes

You can also take a look here:

2 Likes

@mbayley
i just tried this in 2024.1, but it did not change.
Can you please help?


image

2 Likes

Is your directive enabled?

2 Likes

Yes it is, but i am getting this one in 2024.1
image

in 2022.1 it works.
image

Maybe they changed how the notifications are retrieved in 2024.1. I’m using 2023.2, and it uses GetBallonRowsKeepIdleTime. Run a trace and figure out which method it is using.

1 Like

Haven’t read it in a bit, but might be where we should look.

Thank you. I’ll try that.

@mbayley how can I bring in the pack id in this?

foreach (var row in result.SysTask)
{
row.TaskDescription = “Packing Slip ID”+ row.TaskDescription;
}

Did you get it working in 2024.1 ? Share the deets!

not yet. still trying :slight_smile:

You would want to lookup the TaskNum against the ice.SysTaskParam table where ParamName is “PackNum”

1 Like