hi all.i am trying to highlight new rows in inbox of webtop.i mean, each user should see the new rows different from other rows.how can i achieve this?is there an easy way to do it?
Best regards.
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
is it custom page or standard webtop inbox page.
in later case, datafield 'task_state' is available in JSP page which can be used to identify 'dormant' activity assigned to user. obviously it can not be used to determine if user has saw this activity before in inbox screen as user can open inbox than navigate to other page and then again open inbox, activity will remain in dormant (assuming it is not acquired by other).
so if your requirement is not to display this dormant activity as BOLD on second visit than this is very specific requirement which might not be met using any available OTB attributes (as far as I am aware of). in this case, you might have to store the queue item id somewhere (say registered table) when user visits inbox and then on every visit compare the id with stored values to find out new new items in inbox. however in this case, you also need to consider the clean up of unwanted data in registered table on daily basis (say nightly job)
what do you meant by new row ? is it Dormant activity assigned to user ?
indeed it is not the known inbox of user.it is a page of problemmed workitems.it is a datagrid retrieving records from a dql(dql is composed of dmi_workitem,dm_workflow, and dm_queue_item).so when a user open the page there are some records.then, if user closes the page after that, opens it again if there are new records these new records should be bold.