Skip to Content
0
Former Member
Sep 22, 2006 at 09:05 AM

SubMit Program

34 Views

Hi,

I Have a Report Where In I Fetch Some Data And display the Output in A grid display.Double Click on Any Row takes me To A Transaction with The Input of Material of the selected Row skipping the initial Screen.If make any Changes In The Transaction and save and press Back i return to the Grid display.The Problem I am facing is ,I have A Refresh Button On The Application tool Bar.clicking on which the process of fecthing data is Done For The row which was double clicked.But i am Getting the same old Values not the modified One for the material.My code is as below for double click and refresh button

FORM display USING p_e_row.

READ TABLE t_final_finish INDEX p_e_row .

SET PARAMETER ID '/SAPAPO/VRSIOID' FIELD '000'.

SET PARAMETER ID '/SAPAPO/MAT' FIELD t_final_finish-matnr .

SET PARAMETER ID '/SAPAPO/LOCNO' FIELD p_loc.

CALL TRANSACTION '/SAPAPO/RRP3' AND SKIP FIRST SCREEN .

ENDFORM. " display

when 'REFRESH'.

perform refresh_table changing t_refresh[].

Thanks and Regards

Ahasan