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,168

Hi all,

when i am populating the text element with text more than 100 lines

it is showing only the 60 lines of message, whereas other message is not displaying.

let me know any one .

message e000(00) with 'enter the file Path with directory where it is downloaded

with file type XLS'.

but it displaying only the enter the file Path with directory where it

how to rectify this .Here iam using the standard message has 00.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,078

Hi,

You can only display up to 50chars using one text element at a time and more than that will be truncated.

the best solution will be use more text elements.

message e000(Message class)) with text-001 text-002 text-003 text-004.

But your message class should have text element holders at the msg no specified.

ex: Message class:00 and Msg No: 001

you can also try

Message e001(00) with 'enter the file Path with directory' 'where it is downloaded' 'with file type XLS'

above thing also works..

Regards,

Jalendhar

5 REPLIES 5
Read only

Former Member
0 Likes
1,078

Hi,

Just use below syntax to get full error message.

MESSAGE 'Please enter ........................'

TYPE 'E'.

Read only

Former Member
0 Likes
1,078

Hi

Use multiple text elements to display the complete message as follows:

message e000(00) with text-001 text-002.

where

text-001 = enter the file Path with directory

text-002 = where it is downloaded

with file type XLS

Thanks

Vijay

PLZ reward points if helpful

Read only

0 Likes
1,078

Hi vijaykanth,

This is showing error,

check the synatx ,

Read only

Former Member
0 Likes
1,078

try this :

message e000(03) with text-001 text-002.

in ur text elements..

give text 001 as : enter the file Path with directory where

and text 002 as : where it is downloaded with file type XLS

and text 003 as: &1 &2.

save activate come back activate the prog..

i hav tested it is displaying it correctly.

Read only

Former Member
0 Likes
1,079

Hi,

You can only display up to 50chars using one text element at a time and more than that will be truncated.

the best solution will be use more text elements.

message e000(Message class)) with text-001 text-002 text-003 text-004.

But your message class should have text element holders at the msg no specified.

ex: Message class:00 and Msg No: 001

you can also try

Message e001(00) with 'enter the file Path with directory' 'where it is downloaded' 'with file type XLS'

above thing also works..

Regards,

Jalendhar