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

set pf-status

Former Member
0 Likes
2,736

Hi,

I'm facing a problem with GUI status. I've created status. Inside it there are 3 buttons BACK,EXIT, and RW.

After selection I'm not able to see them at all.

I've put my status here:

END-OF-SELECTION.

set pf-status 'STAT'.

Regards,

Wojciech

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,934

hi,

put it under <b>START-OF-SELECTION.</b>

hope this helps,

do reward if it helps,

priya.

Message was edited by: Priya

14 REPLIES 14
Read only

Former Member
0 Likes
1,934

Why you have coded it in end-of-selection?

Just debug the report and check whether end-of-selection is triggered or not. might be the case where this event is not triggered then that pf status wil not be applied.

Read only

Former Member
0 Likes
1,934

Hello,

SET the PF status in the PBO of the screen.

If useful reward,

Vasanth

Read only

Former Member
0 Likes
1,934

hi,

put it in

start-OF-SELECTION.

set pf-status 'STAT'.

Regs

Manas Ranjan Panda

Read only

0 Likes
1,934

Hi,

I've tried here:

start-OF-SELECTION.

set pf-status 'STAT'.

and also in PBO.

By the way I'm raising an error and maybe due that this buttond don't appear.

Regards,

Wojciech

Read only

Former Member
0 Likes
1,935

hi,

put it under <b>START-OF-SELECTION.</b>

hope this helps,

do reward if it helps,

priya.

Message was edited by: Priya

Read only

Former Member
0 Likes
1,934

Make sure you haven't put any 'write' statements in your start-of-selection event. If so you should set the status just after 'start-of-selection'.

Read only

Former Member
0 Likes
1,934

hi,

Goto SE41 and check whether that menu is saved and activated. I hope u might not have done that.

Regards...

Arun.

Read only

Former Member
0 Likes
1,934

Hi Wojceich,

are you using this PF-STATUS for ALV GRID in OO?

I use it like this:

MODULE PBO OUTPUT.

*

SET PF-STATUS 'MAIN100'.

*

...

START-OF-SELECTION.

*

...

CALL SCREEN 100.

*

Regards, Dieter

Read only

0 Likes
1,934

Hi,

I'm using normal write list. Where I'm raising messages with errors and if such error occure I'd like to give for user possibility to go back to selection screen.

Regards,

Wojciech

Read only

Former Member
0 Likes
1,934

Hi,

code for pf-status in PBO module of screen as:

MODULE STATUS_0100 OUTPUT.

SET PF-STATUS 'SCR100'.

SET TITLEBAR 'MAINTPLAN'.

Hope it helps.

Reward if helpful.

Regards,

Sipra

Read only

0 Likes
1,934

Hi,

In PBO it works but I'd like to have it after selection on selection screen.

Regards,

wojciech

Read only

Former Member
0 Likes
1,934

If you want to get after the selection,

then place it in PAI(Process After Input)

Read only

Former Member
0 Likes
1,934

hi,

The pf status will always be set in the pbo Module.

If you want to set in only under cetrain events.Then in PAI module check for those events and set a flag if the event has occured. say w_flag = 'X'. And in PBO module check for this flag. If w_flag = 'X'. Set pf status.

claer w_flag.

Read only

Former Member
0 Likes
1,934

problem was due to error message, error message is stoping everything and exiting from program after displaying a message