cancel
Showing results for 
Search instead for 
Did you mean: 

button on standard selection screen

Former Member
0 Kudos

HI experts , can any budy tell me , that, can we put a button on the standard selection screen , means on screen no 1000, PLease suggest ur ans, i have a requirement to create a button on the first selection screen by selection the check box on the standard selection screen , a button should be appear on the standard selection screen.

THanks in advance,

Rahul

Accepted Solutions (1)

Accepted Solutions (1)

valter_oliveira
Active Contributor
0 Kudos

Hi there.

As far as I understood, you don't want to create a screen, but insert buttons on your standard screen 1000, right?

For that, you can do as follwing:

1 - create a status, using a statement like SET PF-STATUS '0100' (mark normal screen option).

2 - click twice on '0100' and you'll navigate to status of screen.

3 - in application toolbar tab, insert your buttons, but don't forget the execute button, with ok_code ONLI (stantard ok_code for F8 button of reports).

4 - save and activate the status.

The conclusion is that if you declare a status, the standard one won't be called.

Regards.

Valter Oliveira.

Former Member
0 Kudos

HI u r right thet i have to create that on the same selection screen , but ur second concept is wrong we can set our own pf-status then how can u say that set the status, plz reply if u know the exect ans?

valter_oliveira
Active Contributor
0 Kudos

Hello,

What do you mean by "but ur second concept is wrong we can set our own pf-status then how can u say that set the status".

Read again what I wrote! I said that the solution for your problem is to create a PF status of your own and that one will substitute the STANDARD one. This is the reason for having to insert the Execute (F8) button on it. Otherwise, if you don't insert it, you wont be able to execute your report.

Also, plz reply if u know the exect ans? this is not nice to say, specialy when the answer is correct. I've inserted buttons in standard selections screen lot's of times.

Regards.

Valter Oliveira.

Former Member
0 Kudos

Yes by using set pf status ' ' we can solve the problem.

Former Member
0 Kudos

HI VALTER ,

I m not getting u , plz tell me in detail how can we put dat button with standard selection screen , i have created one but that is comin in the selection screen area , i want that button to the pf status , menu bar area , can u tell me in detail what u wanna tell .

PLz explain in details?

valter_oliveira
Active Contributor
0 Kudos

Hi again.

You only have to do what I said in detail in my first post. If you want, I'll send you print screen's by email.

Regards,

Valter Oliveira.

Former Member
0 Kudos

ok plz send the details of screen shots on my id

its rahul

Edited by: rahul sisodia on Jun 17, 2008 3:51 PM

Former Member
0 Kudos

HI Valter Oliveira,

by that ONLI field , i solved my prb thanks a lot for the screen , i have rewarded u already.

THANKS

Rahul

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

SELECTION-SCREEN :PUSHBUTTON 2(15) TEXT-101 USER-COMMAND CLK1.

PARAMETER : C1 AS CHECKBOX.

AT SELECTION-SCREEN OUTPUT.

IF C1 = ' '.

LOOP AT SCREEN.

IF SCREEN-GROUP3 CS 'PBU'.

SCREEN-INPUT = '0'.

SCREEN-INVISIBLE = '1'.

SCREEN-ACTIVE = '0'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

ENDIF.

former_member181995
Active Contributor
0 Kudos

Rahul,

first make sure both program and screen number than use SE51 you can do your changes.

Note:for standard screen chages you need access key which you can ask from your basis person.

Amit.

Former Member
0 Kudos

HI Amit, thanks for ur suggestion , but plz tell me can we create that button on the standard selection screen , without takin help of the basis team?

THANKS

Rahul

former_member181995
Active Contributor
0 Kudos

Rahul,

Yes you can add esily your own option on standard selection screen but make sure how impact this through program or t-code.

Amit.