I have two dialogs, that one call another. To clarify what I mean, let's take a look at the first dialog:
As you can see on the screen, it contains ALV. When I click on the row, it will open the second dialog:

When I close the second dialog, I want to trigger PBO on the first is screen to do rerender ALV. How to archive it?
Update Code, that call the second screen:
METHOD handle_double_click.
FIELD-SYMBOLS <lt_task> TYPE STANDARD TABLE.
FIELD-SYMBOLS <ls_task> TYPE any.
FIELD-SYMBOLS <ls_clicked_data> TYPE any.
DATA(lo_task_provider) = lcl_alv_task_provider=>get_instance( ).
DATA(lt_task) = lo_task_provider->c_gt_data.
ASSIGN lt_task->* TO <lt_task>.
IF sy-subrc <> 0 OR <lt_task>[] IS INITIAL.
RETURN.
ENDIF.
CREATE DATA lo_task_provider->c_gs_clicked_data LIKE LINE OF <lt_task>.
ASSIGN lo_task_provider->c_gs_clicked_data->* TO <ls_clicked_data>.
READ TABLE <lt_task> ASSIGNING <ls_task> INDEX e_row.
<ls_clicked_data> = <ls_task>.
zdp2_planning_split = me->fill_splitt_info( <ls_task> ).
DATA(ls_planning_split_alv) = VALUE zdp2_planning_split_alv( matnr = zdp2_planning_split-matnr
lfdat = zdp2_planning_split-lfdat
sollmng = zdp2_planning_split-sollmng
meins = zdp2_planning_split-meins ).
DATA(lt_planning_split_alv) = VALUE zdp2_planning_split_alv_t( ).
INSERT ls_planning_split_alv INTO TABLE lt_planning_split_alv.
lcl_alv_split_provider=>get_instance( )->insert_data( lt_planning_split_alv ).
CALL SCREEN '0100' STARTING AT 8 8.
ENDMETHOD.
Update
I think the pictures do not clarify what I mean. Now this should be better:
The first modal call the second modal. When the second modal get closed, then the ALV on the first screen should be refreshed. I can't refresh it, because the PBO on the first screen does not get executed after the second modal get closed.

