‎2007 Feb 05 12:47 PM
Hello Friends,
In ALV's How do we get Hide Functionaly. we use selfield in form definition. but In function module, which parameter acts as a HIDE.
Thanks & Regards
Sathish Kumar.
‎2007 Feb 05 1:00 PM
Hi satish,
YOu have to pass a name of a form where you can define the logic for handling user commands:
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_CALLBACK_PROGRAM = W_REPID
I_CALLBACK_PF_STATUS_SET = 'PF_STATUS'
I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
P_SELFLD TYPE SLIS_SELFIELD.
*The field p_selfld will have the clicked row's contents.
ENDFORM.
Regards,
Ravi
‎2007 Feb 05 1:00 PM
‎2007 Feb 05 1:01 PM
check this...
http://help.sap.com/saphelp_erp2004/helpdata/en/17/102896f24311d2b487006094192fe3/content.htm
This shows all commands which can be used in ALV..