2009 Jan 15 7:23 AM
Hi,
Constants: text1(50) TYPE c VALUE 'My name is rajesh' . I want to replace the Hot Coded part with the text elements.
like Constants: text1(50) TYPE c VALUE TEXT-NO.
Regards,
Rajesh N.
2009 Jan 15 7:27 AM
Then instead of constant declare like this -
data: w_text(50) type c.
INITIALIZATION.
w_text = text-001
2009 Jan 15 7:28 AM
goto the GOTO menu.
GOTO->text elements->text symbols
and maintain the txts here.
кu03B1ятu03B9к
2009 Jan 15 9:44 AM
Hi,
I have declared TEXT in text symbols and it is throwing an error Field text-008 is unknown.
2009 Jan 15 7:29 AM
hello,
goto your program and GOTO -> text element -> text symbol.
regards,
sujeet
2009 Jan 15 8:36 AM
Hi
You can do it in the following way
data: w_text(50) type c.
INITIALIZATION.
w_text = text-00
goto the GOTO menu.
GOTO->text elements->text symbols
and maintain the txts here.
2009 Jan 15 8:41 AM
Hi,
Please follow the path.
GOTO menu.
GOTO -> text elements -> text symbols
Write the required text.
Regards,
Phani.
2009 Jan 15 8:47 AM
INITIALIZATION.
Text1 = text-001.
GOTO->text elements->create text-001 as text symbol.
Regards,
Joan
2009 Jan 15 9:57 AM
Hi Rajesh,
DATA: text1(4) TYPE c.
INITIALIZATION.
text1 = text-001.
Now double click on this text-001 and write your text there and activate it.
Regards,
Nitin.
Edited by: Nitin Karamchandani on Jan 15, 2009 10:58 AM