‎2006 Jul 06 8:21 PM
HI Friends,
I have created a table and when i creat some entries into that table it always reset everything in enter in UPPER CASE. However i want to send the data to an external system which would read only lower case.
Please let me know what should be done.
Shejal.
‎2006 Jul 06 8:25 PM
Use a domain that has the checkbox 'lowecase' checked and then enter the text in lowercase. But this will preserve the case and so if you enter in mixed case, the text will be in mixed case.
Alternatively you can, after getting the records from the database into an internal table, convert the text to lowercase before downloading.
‎2006 Jul 06 8:23 PM
You check the field's domain, there is a check box lower case. when you check this it will be stored in case sensitive, else always in capital letters.
Regds
Manohar
‎2006 Jul 06 8:25 PM
hi Shejal,
In DOmain there is a checkbox set to lower case ... enable that one... this solves your problem
‎2006 Jul 06 8:27 PM
Thanks for the suggestion,
I am using SAP standard domains and i dont want to change the domain as it requires an access key to change. However i wan wondering is there a way that i could change in the coding.
Shejal.
‎2006 Jul 06 8:28 PM
No, as it is already stored. I don't think you can control.
Regds
Manohar
‎2006 Jul 06 8:34 PM
You can copy the domain and makesure to check lowercase option.
Regds
Manohar
‎2006 Jul 06 8:36 PM
As I said, once you read the table contents into your internal table, you can then convert the text to lowercase using TRANSLATE itab-text TO LOWERCASE option and then download.
‎2006 Jul 06 8:36 PM
If u don't want to use custom domain, Convert the text to lower case using TRANSLATE text TO LOWER CASE statement.
Regards
Sridhar
‎2006 Jul 06 8:23 PM
Hi,
select the lower case option of the domain of the field.
Laxman
‎2006 Jul 06 8:25 PM
Use a domain that has the checkbox 'lowecase' checked and then enter the text in lowercase. But this will preserve the case and so if you enter in mixed case, the text will be in mixed case.
Alternatively you can, after getting the records from the database into an internal table, convert the text to lowercase before downloading.
‎2006 Jul 06 8:25 PM
For your field you must use a data element which uses a domain which will allow for lower case. So in SE11, double click on the data element next to your field, now double click on the domain, On the defintion tab, you will see a lowercase checkbox. This must be checked in order to have lowercase character in your field. If you are not use custom data elements and custom domains, create these and check this box. Or search for a data elment that is using a domain that has this checked.
Regards,
Rich Heilman
‎2006 Jul 06 8:26 PM
Hi Shejal,
Go to output characteristics section in domain level and select lower case option.
Regards,
Ferry Lianto
‎2006 Jul 06 8:29 PM
Hi,
It will not store as lower case value if you are using standard one eventhough you handle the translation from program.
You need to copy standard domain and data element to custom one and apply to your custom table. Ensure checked the lower case option.
Regards,
Ferry Lianto
‎2006 Jul 06 8:33 PM
‎2006 Jul 06 8:35 PM