2007 Sep 24 10:01 AM
Hi,
I've created a selection view for my report category. How can I change this selection view? Where can I change it?
Anyone know where exactly this selection view is stored with their view name and their fields defined?
2007 Sep 24 10:05 AM
Hi Irene
If i am right you are talking about Report categories in HR ABAP programming!! You can change the selection view of a given report category bu going to SE38 --> Attributes (After giving program name) --> Choose Report Category (After specifying the category of your choice) --> In there you should choose fields for selection. There you can check or un-check the fields which you want to display in selection screen.
Reward points for all useful answers!!
~Ranganath
2007 Sep 24 10:03 AM
hi,
u mean selection table?
the table name is "SCREEN".
u can manipulate it in the event at selection screen output by looping at screen.
ex:
selection-screen begin of line.
parameters: p1 radiobutton group rg1 user-command ucomm default 'X'.
parameters: input(7) modif id MI1.
selection-screen: comment 15(7) For field input.
comment 10(7) For field p1.
selection-screen end of line.
selection-screen begin of line.
parameters:
p2 radiobutton group rg1,
input1(7).
selection-screen end of line.
at selection-screen output.
loop at screen.
IF P1 = 'X'.
IF SCREEN-NAME = 'INPUT'.
screen-INPUT = 1.
SCREEN-INTENSIFIED = 1.
screen-color = 6.
ELSE.
IF SCREEN-NAME = 'INPUT1'.
SCREEN-INTENSIFIED = 0.
screen-INPUT = 0.
screen-color = 4.
ENDIF.
ENDIF.
ELSEIF P2 = 'X'.
IF SCREEN-NAME = 'INPUT1'.
SCREEN-INTENSIFIED = 1.
screen-INPUT = 1.
screen-color = 6.
ELSE.
IF SCREEN-NAME = 'INPUT'.
screen-INPUT = 0.
SCREEN-INTENSIFIED = 0.
screen-color = 4.
ENDIF.
ENDIF.
2007 Sep 24 10:05 AM
Hi Irene
If i am right you are talking about Report categories in HR ABAP programming!! You can change the selection view of a given report category bu going to SE38 --> Attributes (After giving program name) --> Choose Report Category (After specifying the category of your choice) --> In there you should choose fields for selection. There you can check or un-check the fields which you want to display in selection screen.
Reward points for all useful answers!!
~Ranganath
2019 Nov 14 1:33 AM
2007 Sep 24 10:09 AM
Hi all,
What I mean is in the HR report, there will be have a Dynamic selection right?
I've create my own selection view by the step: ABAP workbench->right click package name->create->more->selection view
I need to know how can I change this selection view after I've created it and found that I would like to add more fields?
2007 Sep 24 10:25 AM
2011 Jan 23 6:48 AM