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

Former Member
0 Likes
1,439

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.

8 REPLIES 8
Read only

amit_khare
Active Contributor
0 Likes
996

Then instead of constant declare like this -

data: w_text(50) type c.

INITIALIZATION.

w_text = text-001

Read only

Former Member
0 Likes
996

goto the GOTO menu.

GOTO->text elements->text symbols

and maintain the txts here.

кu03B1ятu03B9к

Read only

0 Likes
996

Hi,

I have declared TEXT in text symbols and it is throwing an error Field text-008 is unknown.

Read only

SujeetMishra
Active Contributor
0 Likes
996

hello,

goto your program and GOTO -> text element -> text symbol.

regards,

sujeet

Read only

Former Member
0 Likes
996

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.

Read only

Former Member
0 Likes
996

Hi,

Please follow the path.

GOTO menu.

GOTO -> text elements -> text symbols

Write the required text.

Regards,

Phani.

Read only

Former Member
0 Likes
996

INITIALIZATION.

Text1 = text-001.

GOTO->text elements->create text-001 as text symbol.

Regards,

Joan

Read only

Former Member
0 Likes
996

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