How to pass parameter between different applets via Redirection destination fields on the new Agent Mobile AppIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> How to pass parameters between different applets via Redirection destination fields. Assuming that we have Applets "User" which shows all active users, "My Incidents" which shows active incidents assigned to a particular user and "All Incidents" which shows all active incidents. Scenario 1: Create a top menu "My Incidents" on the detail information screen of the Applet "User" which shows incidents assigned to the current user. Scenario 2: Create a top menu "All incidents" on the detail information screen of the Applet "User" which shows all active incidents. Create a top menu "Create Child Incident" on the detail information screen of the Applet "All Incidents" which creates a child incident record. The parent is the sys_id of the selected incident record.The caller is the sys_id of the selected user record. ReleaseMadrid releaseResolutionProcedure The two scenarios can be implemented by the following steps. Scenario 1: 1. Navigate to the Data Item "My Incident". Create Item parameters "assigned_to" and set it to the Query Condition "Assigned to". 2. Navigate to the Main-detail-screen "My Incident". Create an UI parameter "assigned_to_screen". Create a Screen parameter mapping "assigned_to to assigned_to_screen". 3. Navigate to the Function "My Incidents". Create a Redirection destination field to assign "sys_user.sys_id" to "assigned_to_screen". Scenario 2: 1. Navigate to the function "Create Child Incident". Create UI parameters "Short description", "Parent_incident_sys_id" and "caller_id_action". 2. Navigate to the main-detail-screen "All Incidents". Create an UI parameter "caller_id_screen". 3. Navigate to Function instance "Create Child Incident". Create a Function instance carried param mapping "caller_id_screen to caller_id_action". 4. Navigate to the Function "All Incidents". Create a Redirection destination field to assign "sys_user.sys_id" to "caller_id_screen". 5. Navigate to the Action Item "Create Child Incident". Create Item Parameters "short_description", "parent_incident" and "caller_id_action_item" and set these paramters to field values. 6. Navigate to the function "Create Child Incident". Create Action parameters mappings "caller_id_action to caller_id_action_item", "Parent_incident_sys_id to parent_incident" and "Short_description to short_descirption" .