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

Change selection view

Former Member
0 Kudos
1,454

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Kudos
844

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

6 REPLIES 6
Read only

hymavathi_oruganti
Active Contributor
0 Kudos
844

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.

Read only

Former Member
0 Kudos
845

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

Read only

0 Kudos
844

Rewards! 🙂

Read only

Former Member
0 Kudos
844

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?

Read only

Former Member
0 Kudos
844

anyone can help me this? It's really urgent. Thanks.

Read only

Former Member
0 Kudos
844

user report category