2008 Jul 17 5:57 PM
Is there a function module, etc. to help convert names, etc. from UPPER CASE to Proper Case existing within SAP already?
2008 Jul 23 5:54 AM
Hi,
Check this :
*Capitalization conversion
CALL FUNCTION 'STRING_UPPER_LOWER_CASE'
EXPORTING
DELIMITER = P_DEM
STRING1 = P_STR " Lower case 'String'
IMPORTING
STRING = P_STR " Upper case 'String'
EXCEPTIONS
NOT_VALID = 1
TOO_LONG = 2
TOO_SMALL = 3
OTHERS = 4.
Regards
Adil
Is there a function module, etc. to help convert names, etc. from UPPER CASE to Proper Case existing within SAP already?
2008 Jul 17 6:07 PM
Hi Steve,
As far as i know i dont think SAP has a function module for that.
To convert given string go through this link which uses TRANSFER command.
[Converting to Upper or Lower Case|http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/content.htm]
Its better you create a function module including this statement as shown in the above link and use it as per your requirement or directly use as stated in the above link.
Hope this would help you.
Regards
Narin Nandivada
2008 Jul 22 9:49 PM
2008 Jul 23 5:54 AM
Hi,
Check this :
*Capitalization conversion
CALL FUNCTION 'STRING_UPPER_LOWER_CASE'
EXPORTING
DELIMITER = P_DEM
STRING1 = P_STR " Lower case 'String'
IMPORTING
STRING = P_STR " Upper case 'String'
EXCEPTIONS
NOT_VALID = 1
TOO_LONG = 2
TOO_SMALL = 3
OTHERS = 4.
Regards
Adil
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |