Application Development 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: 

Printing text same as it is entered on selection screen

tanuja_wa
Explorer
0 Kudos

Hi,

My requirement is to print text entered on selection screen same as it is in sapscript.

But selection screen text converting in to capital automatically .

How to print text same as it is entered in selection screen?

3 REPLIES 3

Former Member
0 Kudos

Hi,

You could find this answer by searching the forum or pressing F1 on the PARAMETERS statement in the editor.

But the answer is to add LOWER CASE to the paremeter definition.

Regards,

Nick

sridhar_meesala
Active Contributor
0 Kudos

Hi,

SELECT-OPTIONS : s_field FOR dbtable-field LOWER CASE.

will solve your problem.

Thanks,

Sri.

0 Kudos

Hi,

You can use option LOWER CASE when declaration selection screen parameter.

Example :

PARAMETERS: p_local TYPE ibipparms-path LOWER CASE.

S.