cancel
Showing results for 
Search instead for 
Did you mean: 

How to display additional button in POWL

former_member435508
Participant
0 Kudos

How to display additional button in POWL

METHOD if_powl_feeder~get_actions.

   CLEAR c_action_defs[].

   DATA ls_action_defs LIKE LINE OF c_action_defs.

   ls_action_defs-actionid         = 'DEL'.

   ls_action_defs-cardinality      = 'S'.

   ls_action_defs-placement        = 'B'.

   ls_action_defs-enabled          = 'X'.

   ls_action_Defs-PLACEMENTINDX    3.

*ls_action_Defs-IMAGESOURCE      =

   ls_action_defs-text             = 'Delete'.

*ls_action_Defs-TOOLTIP          =

   ls_action_defs-add_separator    = 'X'.

*ls_action_Defs-ACT_CHOICES      =

   INSERT ls_action_defs INTO TABLE c_action_defs.

It's now displaying the button on Screen...

Accepted Solutions (0)

Answers (1)

Answers (1)

ramakrishnappa
Active Contributor
0 Kudos

Hi Priya,

To add more buttons, repeat the same code, i.e. append the actions to table c_action_defs.

Please follow the below links

POWL - Web Dynpro ABAP - SCN Wiki  ( It is having lot of links related to POWL configuration )

Hope this helps you.

Regards,

Rama