cancel
Showing results for 
Search instead for 
Did you mean: 

Drilldown Report

Former Member
0 Kudos

Hi ,

Requirement is 5 drilldown lists r there How can we Put Pushbuttion For Each utput list with PF-Status.

Thanks,

Pavan Reddy.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Dbl click the PF status.

There u ll find Menu bar,Applcation toolbar,Function keys.

Dbl click Application toolbar,

There u ll find Items 1-7,items 8-14, n so on...

Give any name in item1 space.This ll appear as a push button.

Regards,

Shradha.

former_member480923
Active Contributor
0 Kudos

hi,

Use the following code

AT USER-COMMAND. 
  IF sy-lsind = 20. 
    SET PF-STATUS 'MYLIST' EXCLUDING 'MY_SELECTION'. 
  ENDIF. 
  CASE sy-ucomm. 
    WHEN 'MY_SELECTION'. 
      WRITE: / 'You worked on list', sy-listi, 
             / 'You are on list', sy-lsind. 
    ... 
  ENDCASE. 

Hope that Helps

Anirban M.