2007 Dec 14 3:39 PM
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?
a®
2007 Dec 14 3:42 PM
Hi All,
I got it.
I can use A00 to Z99 (alphabetical combination),
Anyway thanks
a®
2007 Dec 14 3:47 PM
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
2007 Dec 14 3:56 PM
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 elementsThanks
a®
2007 Dec 14 4:33 PM
I think 45360
( 26 letters + 10 numbers and assuming that 0 cannot be in first place : 36 * 36 * 35 = 45360 )
2007 Dec 14 4:36 PM
Eric,
Yes you are right. I miscalculated the combination
Thanks for pointing out to me.,
a®
2007 Dec 14 4:39 PM
'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
2007 Dec 14 4:46 PM
Rob : you are right, thank you
then it is 36 * * 3 = 46656
a®s : hope it will be enugh
2007 Dec 14 4:48 PM
Rob,
Yes i can use text-elements with Alphanumeric like
999 & - &
T01 Testing &
a®
2007 Dec 14 4:55 PM