‎2009 Apr 08 1:11 PM
hI, EXPERTS
Requirement is :
1) in selection screen input = "werERT" , output = "werERT".
normally, it will give "WERERT".
2) in selection screen input = "werert" , output = "werert".
normally, it will give "WERERT".
1) in selection screen input = "WERERT" , output = "WERERT".
normally, it will give "WERERT".
I NEED THE SAME TEXT AS IN THE INPUT SELECTION SCREEN FIELD.
THANKS AND REGARDS
‎2009 Apr 08 1:30 PM
Hi,
Try this. Use the LOWER CASE addition
PARAMETERS : INPUT TYPE CHAR10 LOWER CASE.
WRITE INPUT.Edited by: Rajvansh Ravi on Apr 8, 2009 2:31 PM
‎2009 Apr 08 3:14 PM
Hi,
if ur parameter field is referring to dataelement ,
check the domain of that dataelement..
in the Definition of the domain, there is one option Lower case. Check that option.
if ur parameter is not referring to dataelement use Lower case as in the above answer...
Ram.
‎2009 Apr 09 5:18 AM
hi,
use "lower case" while declaring input and output as parameters with datatype character.
i hope this wl solve ur prob
regards
shivraj
‎2009 Apr 11 7:11 AM
Hello dasr,
There are 2 options for this
If u want to do it programaitcally
PARAMETERS : Smeoutpt(10) TYPE C LOWER CASE.
WRITE Smeoutpt.
If u want to do it at data element level , do it as MR.Rammohan has suggested .
But decide it according to your requirement
Note: If you do it at data element level it will be changed at all places .
Regards,
K.Sibi
‎2009 Apr 11 8:07 AM
Use "Lower Case" with Parameters ...
This will 100% work.
Edited by: Chintan_SAP on Apr 11, 2009 12:40 PM
‎2009 Apr 11 7:25 PM
TRY THIS
PARAMETERS P_MATNR TYPE MATNR LOWER CASE.
DEFFFINATELY IT WORK
EX :
I/P : ASDasd O/P : ASDasd
I/P : asdASD O/P : asdASD
‎2009 Apr 12 6:28 AM
PARAMETERS : INPUT TYPE CHAR10 LOWER CASE.Effect
The parameter is not case-sensitive (i.e. allows both upper and lower case).
[check here for details on parameters|http://sapbrainsonline.com/sap-training/SAP-tutorial-pdf-material_393.html]
Regards,
Lalit Mohan Gupta.