Application Development and Automation 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: 
Read only

PF status- List display

Former Member
0 Likes
521

Hi Gurus!

I have a list display output for Purchase order and I set the PF status for it , but unfortunately the PF status dosent seem to be working . I didi set up everything for it but the pf status dosent act on clicking on them . What could be the possible reasons for it ?

Thanks

Aarav

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
488

Hi,

Try this way.

at user-command.

case sy-ucomm.

when 'ORDI'.

perform output2.

endcase.

form output2.

set pf-status 'STAT'.

loop at itab_output2.

//Display your data here.

endloop.

uline :/(95).

endform.

Thanks,

Veni.

Hi Gurus!

I have a list display output for Purchase order and I set the PF status for it , but unfortunately the PF status dosent seem to be working . I didi set up everything for it but the pf status dosent act on clicking on them . What could be the possible reasons for it ?

Thanks

Aarav

2 REPLIES 2
Read only

Former Member
0 Likes
489

Hi,

Try this way.

at user-command.

case sy-ucomm.

when 'ORDI'.

perform output2.

endcase.

form output2.

set pf-status 'STAT'.

loop at itab_output2.

//Display your data here.

endloop.

uline :/(95).

endform.

Thanks,

Veni.

Read only

0 Likes
488

Hi veni1

My other commands under the user-command are working properly , except for that all other tabs on the standard -pf staus is not working , eg layout , select, filter ect ...

the push buttons that I have created is working but others which are standard are not working.

Thanks