Application Development 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: 

Increasing line size in program

Former Member
0 Kudos

Hi,

Iam getting the following error that Literals that take up more tha one line is not permitted.

I want to give all the data in single line. But it is coming in the second line.

How to increase the line size.

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

In se38 go to utilities->settings->editor->uncheck the Downward-Compact check box.

Thanks,

Arunprasad.P

Reward if useful.

Edited by: arunprasad palaniswamy on Mar 20, 2008 7:54 AM

3 REPLIES 3

Former Member
0 Kudos

Hi,

In se38 go to utilities->settings->editor->uncheck the Downward-Compact check box.

Thanks,

Arunprasad.P

Reward if useful.

Edited by: arunprasad palaniswamy on Mar 20, 2008 7:54 AM

Former Member
0 Kudos

HI,

see this code.

u can write the literals in more than a line using '&' symbol.


data :var(30) value '213213213423123412341'
      & 'abcd'.
write:/ var.

rgds,

bharat.

Former Member
0 Kudos

Hi,

It could be because of the literal will overlap to next line as follows,

Text = ' ABCDEFGHIJKLMNOPQRST

UVWXYZ'.

It will cause the problem.

So make it as

Text = ' ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

Reward points if helpful.

Regards,

Sankar.