Hi Suman,
Even these wont work.
Issue: When user select a row in both tab2 and Tab3.
Requirement: Only filters from the tab from which user jumps to tab 1 should be transferred.(Although rows in both tabs are selected)
With your proposed solution, when rows are selected in both tabs, only Tab 3 will be transferred.
Is there any sequence/command by which we can determine the tab from which the
user jumps to Tab 1. In short, can we implement the below IF condition in WAD?
IF (jump_source = Tab3)
CLEAR_ALL_SELECTION_STATES - Tab 2
SET_SELECTION_STATE_BY_BINDING - Binding with Tab 3
ELSEIF (jump_source = Tab2)
CLEAR_ALL_SELECTION_STATES - Tab 3
SET_SELECTION_STATE_BY_BINDING - Binding with Tab 2
ENDIF