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: 

MOVE statement

former_member240483
Contributor
0 Kudos

Hi all,

I added one more extra word to move statement and it is not cming in the final report .

when i put it in the second line it is giving error like two lines not permitted.

I am using this in a Report where page width is fixed..

Thanks in advance..

Regards

Rao

9 REPLIES 9

naimesh_patel
Active Contributor
0 Kudos

can you please paste your MOVE statement here?

Regards,

Naimesh Patel

0 Kudos

Hi there ,

here is my move statement i am using

Regards

Rao

0 Kudos

CLEAR w_faxtn.

MOVE 'OGGETTO: pagamento fatture diverse'(f21) TO w_faxtn-fax_line(34)

.

APPEND w_faxtn.

CLEAR w_faxtn.

MOVE

'A fronte delle fatture sotto elencate, abbiamo provvveduto a (f22)

bonificarVi' TO w_faxtn-fax_line+9(60).

APPEND w_faxtn.

CLEAR w_faxtn.

0 Kudos

Here is the problem, keep (f21) also in single quotes

MOVE 'OGGETTO: pagamento fatture <b>diverse'(f21)</b> TO w_faxtn-fax_line(34)

Reward if it helps,

Satish

0 Kudos

Hi there,

My prob with second move statement

MOVE

'A fronte delle fatture sotto elencate, abbiamo provvveduto a (f22)

bonificarVi' TO w_faxtn-fax_line+9(60).

APPEND w_faxtn.

CLEAR w_faxtn.

in the above code <b>bonificarVi'</b> was not there in the first place i added that one in the line continueing but it is not showing in report then i try to add that in the second line it giving the error literal not permitted....

any help me in this..

regards

Rao

0 Kudos

OK..

Do like this:

Data: l_text(100) tyep c.

move 'A fronte delle fatture sotto elencate, abbiamo provvveduto a '(f22) to l_text.
concatnate l_text 'bonificarVi' into l_text separated by ' '.  "<<
move l_text to TO w_faxtn-fax_line+9(60).
APPEND w_faxtn.
CLEAR w_faxtn.

Regards,

Naimesh Patel

0 Kudos

Hi Patel,

i just did as like u said ...but it is still not showing anything...still same Output as yesterday one..

Regrads

Rao

Former Member
0 Kudos

probably you are moving into work area.

so move field by field/ move-corresponding.

former_member387317
Active Contributor
0 Kudos

Hi PT Rao,

Try in this way...



DATA : a(9) type c, b(80) type C. " 80 is the length for b (ur string which u want to move)

a = w_faxtn-fax_line+0(9).

b = 'A fronte delle fatture sotto elencate, abbiamo provvveduto a (f22) bonificarVi'  TO b.

concatenate a b into w_faxtn-fax_line.

APPEND w_faxtn.
CLEAR w_faxtn. 

Hope it will solve ur problem

<b>Reward points if useful</b>

Thanks & Regards

ilesh 24x7