Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

displaying pf-status on condition

raavi_gopichand
Explorer
0 Kudos

Hi Experts,

Kindly help me on below issue.

I have an zpf-status bar with three buttons on a module pool screen.

Primarily i should have to display one button as enable and remaining as disable mode .on clicking on that i have to enable

remaining buttons.

Regards.

5 REPLIES 5

Former Member
0 Kudos

Hi Gopi,

Check the EXCLUDING option of the SET PF-STATUS statement.

Regards,

Karthik

0 Kudos

Hi karthik,

Problem is solved   ,thanks for your help.

0 Kudos

Hi karthik,

Problem is solved   ,thanks for your help.

Former Member
0 Kudos

We can hide application toll bar push buttons,

   set pf-status 'STATUS NAME' excluding 'PUSH BUTTON'.

        in PBO

Former Member
0 Kudos

Hi Gopichand,

initially fill the variables with the dynamic  function code,

var1 = fcode1.

var2 = fcode2.

in PBO

SET PF-STATUS 'ZSTATUS' excluding var1.

in PAI.

case sy-ucomm.

when fcod.

clear : var1 var2..

*-this will open up the other function codes.fcode1 and fcode2

endcase.