Skip to Content
0
Former Member
Dec 06, 2006 at 02:01 AM

ALV Interactive Report

66 Views

Hi,

I am doing a report using ALV Interactive method in that after i display i want to change the value in a particular (vbap-charg).so when i click (vbap-charg) field next the screen should go to the selection screen to input the new value.once i enter the new value when i press F8 the new value should updated in the vbap table and it should display the new value in alv format.now i did codeing untill as i shown below.pls help me to proceed for further as per my requirments.

FORM USERACTION USING R_UCOMM TYPE SY-UCOMM

R_SELFIELD TYPE SLIS_SELFIELD.

******To change the data in table VBAP-CHARG for batch

CASE R_UCOMM.

**-When User Double Clicks

WHEN '&IC1'.

IF R_SELFIELD-FIELDNAME = 'CHARG'.

READ TABLE ITAB INDEX R_SELFIELD-TABINDEX.

ENDIF.

In the next step i want to goto the selection screen to enter the new value to update in the vbap table.pls help to solve the issue.

Thanks,

Rajendra.