Application Development and Automation 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: 
Read only

Text elements exhausted?

former_member194669
Active Contributor
0 Likes
825

Hi,

I have module pool , within my all text elements used completely. ie from 000 to 999. Now what will be options to create additional text elements?

9 REPLIES 9
Read only

former_member194669
Active Contributor
0 Likes
803

Hi All,

I got it.

I can use A00 to Z99 (alphabetical combination),

Anyway thanks

Read only

Former Member
0 Likes
803

if req. is for other than messages

create a Z table with number and text .

Using SM30 maintain the entries in that.

inside ur program,

get all numbers and its rel. texts into an internal table.

select *

from Ztext

into IT_TEXT

read table it_text index 1 for getting text-001, and its data.

if req. for messages,

create more message class, let assume ZMSG,

maintian all text elements there.

message e001(zmsg) with ' '...etc

Read only

0 Likes
803

Lakshmi,

Thanks for your reply.

Your suggestion will give me the issue with translation.

But if i am following the alphabetical combination i will get

26999

combination values of text elements

Thanks

Read only

0 Likes
803

I think 45360

( 26 letters + 10 numbers and assuming that 0 cannot be in first place : 36 * 36 * 35 = 45360 )

Read only

0 Likes
803

Eric,

Yes you are right. I miscalculated the combination

Thanks for pointing out to me.,

Read only

0 Likes
803

'0' can be in the first place - look at message class '00'.

And are you sure you can use alphanumerics??

Rob

Message was edited by:

Rob Burbank

Read only

0 Likes
803

Rob : you are right, thank you

then it is 36 * * 3 = 46656

a®s : hope it will be enugh

Read only

0 Likes
803

Rob,

Yes i can use text-elements with Alphanumeric like


999	& - &
T01	Testing &
                                                                                

Read only

0 Likes
803

OK - you said 'text elements' and I thought 'messages'.

Rob