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

select options in screen painter

marcin_cholewczuk
Active Contributor
0 Likes
3,165

Hello all

How can I create in screen painter element that would look like SELECT-OPTIONS statment? I need component to input many single entries. If it's not possible that way than maybe I can use some FM that would be called when someone is 'clicking' on added by me button ?

Would be grateful for answers

1 ACCEPTED SOLUTION
Read only

amit_khare
Active Contributor
0 Likes
1,730

Refer Rich's reply -

Also check these -

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/frameset.htm

Regards,

Amit

Reward all helpful replies.

Hello all

How can I create in screen painter element that would look like SELECT-OPTIONS statment? I need component to input many single entries. If it's not possible that way than maybe I can use some FM that would be called when someone is 'clicking' on added by me button ?

Would be grateful for answers

6 REPLIES 6
Read only

amit_khare
Active Contributor
0 Likes
1,731

Refer Rich's reply -

Also check these -

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba82335c111d1829f0000e829fbfe/frameset.htm

Regards,

Amit

Reward all helpful replies.

Read only

Former Member
0 Likes
1,730

Hi,

Refer below thread

Regards,

Atish

Read only

Former Member
0 Likes
1,730

There are a couple of ways... you can define a select-options screen block and include it as a subscreen on your main dynpro screen - see example at end of this thread:

or you can use the function module 'COMPLEX_SELECTIONS_DIALOG' as per example on

cheers

Jonathan

Read only

varma_narayana
Active Contributor
0 Likes
1,730

Hi Marcin..

Create a SELECTION-SCREEN with this syntax:

SELECTION-SCREEN: BEGIN OF SCREEN 10.

SELECT-OPTIONS : S_DATE FOR SY-DATUM.

SELECTION-SCREEN: END OF SCREEN 10.

Now this SELECTION SCREEN Can be assigned as the FIRST SCREEN in Module pool.

That means the first screen of a Module pool can be the Selection Screen.

<b>Reward if Helpful.</b>

Read only

gopi_narendra
Active Contributor
0 Likes
1,730

You can make use of the fm:COMPLEX_SELECTIONS_DIALOG to create select options in dialog programming.

Regards

Gopi

Read only

Former Member
0 Likes
1,730

Hi

Why cant u perform with the select-options key word in ur report???

Ok in screen painter do like this

Se51--> Report name --> screen number

click on the radio button Layout editor and goto change mode

Click on the Text Field onthe right of the pane and drag that on to the screen and double click on that screen and give ur table and field name like <b>mseg-werks</b> in the text field and save it

Regards

Pavan