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

selection screen comment as input field

Former Member
0 Likes
1,864

Hi Experts,

I have a comment in my program using following statement,

SELECTION-SCREEN COMMENT 27(60) dispath.

by default this statement is in output mode ...can we change that as input...

Not to forget i dont want to use PARAMETERS.

Thanks

Sid

6 REPLIES 6
Read only

Former Member
0 Likes
1,175

Hi,

Output and Input modes are possible only for I/O fields(parameters & Select-options) and not for text fields(comment).................

Read only

Former Member
0 Likes
1,175

Hi Sid,

Only options possible in selection screen comment are:

SELECTION-SCREEN COMMENT [/][pos](len)

{text|{[text] FOR FIELD sel}}

[VISIBLE LENGTH vlen]

[MODIF ID modid]

[ldb_additions].

i think its not possible.

Regards,

Talwinder

Read only

Former Member
0 Likes
1,175

Hi,

With the text fields you can only display text.....you cant make that as a output field.

Regards,

V.Balaji

Reward if Usefull...

Read only

Former Member
0 Likes
1,175

try like that:

SELECTION-SCREEN BEGIN OF BLOCK kstar_range_set.

SELECT-OPTIONS s_kstar FOR cskb-kstar.

SELECTION-SCREEN COMMENT /3(10) text-cor.

PARAMETERS p_koagr LIKE rkpln-kagru .

SELECTION-SCREEN SKIP.

SELECTION-SCREEN END OF BLOCK kstar_range_set.

Read only

Former Member
0 Likes
1,175

hi sid,

try like this

selection-screen begin of line.

selection-screen comment 2(10) text-001 .

selection-screen comment 15(10) text-002 .

selection-screen comment 40(10) text-003 .

parameters:checkbox as checkbox.

selection-screen end of line.

thnx,

reward if helpful

Read only

0 Likes
1,175

Hi Experts,

Thanks for the suggestions, I got that solved my self.

Thanks

Sid