‎2008 Mar 26 5:32 AM
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
‎2008 Mar 26 5:38 AM
Hi,
Output and Input modes are possible only for I/O fields(parameters & Select-options) and not for text fields(comment).................
‎2008 Mar 26 5:39 AM
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
‎2008 Mar 26 5:39 AM
Hi,
With the text fields you can only display text.....you cant make that as a output field.
Regards,
V.Balaji
Reward if Usefull...
‎2008 Mar 26 5:41 AM
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.
‎2008 Mar 26 6:20 AM
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
‎2008 Mar 26 6:37 AM
Hi Experts,
Thanks for the suggestions, I got that solved my self.
Thanks
Sid