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: 

Display String into excel from program as mentioned below...

former_member210642
Participant
0 Kudos

Hi,

I am downloading excel from report program.

I can convert string to either uppercase or lowercase,but i need to convert the string like this as shown below,,,,

'SUBRHMANYAM' conver this name into

'Subrahmanyam'.

The first letter should be capital.

2 REPLIES 2

Former Member
0 Kudos

You can use FUNCTION : 'ISP_CONVERT_FIRSTCHARS_TOUPPER'

Former Member
0 Kudos

Hi,

You can try this.

va_text = 'subrahmanyam'.

TRANSLATE va_text+0(1) TO UPPER CASE.