2009 Jul 27 10:52 AM
Hello experts,
I have a report program which is executed by a hitting the push-butt on which is provided on the Selection - Screen once the fields are filled in the selecton criteria.
I have the report working fine . but the issue is with the execute button which is also appearing beside the push-button.
Kindly provide me the solution how to remove the execute button as the client does not want it.
I do not understand on how to remove it as i have tried in many ways searching for the solution.
Thanks & Regards,
Rajesh Kumar R
2009 Jul 27 11:09 AM
Hi,
You can create a GUI status and append the function codes of those buttons that you want to remove to an internal table.
data: it_exclude TYPE TABLE OF sy-ucomm.
AT SELECTION-SCREEN OUTPUT.
append 'ONLI' to it_exclude.
set PF-STATUS 'MY_GUI' EXCLUDING it_exclude.
Hello experts,
I have a report program which is executed by a hitting the push-butt on which is provided on the Selection - Screen once the fields are filled in the selecton criteria.
I have the report working fine . but the issue is with the execute button which is also appearing beside the push-button.
Kindly provide me the solution how to remove the execute button as the client does not want it.
I do not understand on how to remove it as i have tried in many ways searching for the solution.
Thanks & Regards,
Rajesh Kumar R
2009 Jul 27 11:02 AM
hi
try that:
include rsdbc1xx.
....
AT SELECTION-SCREEN OUTPUT.
append 'ONLI' to current_scr-excl.
regards,darek
2009 Jul 27 11:29 AM
Hello Sir,
Thanks for your fast reply.
The solution you gave is helpfull.
respective points have been given to you.
Thanks & Regards,
Rajesh Kumar
2009 Jul 27 11:09 AM
Hi,
You can create a GUI status and append the function codes of those buttons that you want to remove to an internal table.
data: it_exclude TYPE TABLE OF sy-ucomm.
AT SELECTION-SCREEN OUTPUT.
append 'ONLI' to it_exclude.
set PF-STATUS 'MY_GUI' EXCLUDING it_exclude.
2009 Jul 27 11:29 AM
Hello Sir,
Thanks for your fast reply.
The solution you gave is helpfull.
respective points have been given to you.
Thanks & Regards,
Rajesh Kumar
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |