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

Dump in a Z printer program

Former Member
0 Likes
437

Hi!

Sorry, my English is awful...

I have a dump in a copy of printer program with all the includes. I have 2 forms, one standard,and the other is handmade.

When i execute any form, it works, but when i execute one and then, the other one, i have this message:

COMMON PART "LFSL" in Programm "Z1RV56TD00" hat falsche Länge.

¿Qué ha sucedido?

Error in ABAP application program.

The current ABAP program "RSNAST00 " had to be terminated because one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

Anál.errores

Der COMMON PART "LFSL" im Programm "Z1RV56TD00" hat einen anderen Aufbau

als der entsprechende Bereich im rufenden Programm "RV56TD00".

Länge des COMMON PARTs im Programm Z1RV56TD00: 9360 Bytes.

Länge des COMMON PARTs im Programm RV56TD00: 5504 Bytes.

Notas para corregir errores

You may able to find an interim solution to the problem

in the SAP note system. If you have access to the note system yourself,

use the following search criteria:

"LOAD_COMMON_PART" C

"RSNAST00 " or " "

"PROGRAMM_AUFRUFEN"

Thanks a lot!

Message was edited by: Julio Pita de la Vega

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
368

Hi,

look to incude VTLFDATA :

DATA: BEGIN OF COMMON PART LFSL.       "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
...

DATA: END   OF COMMON PART LFSL.       "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

and compare with your customer-program

and change your data-definition in Z1RV56TD00

A.

1 REPLY 1
Read only

andreas_mann3
Active Contributor
0 Likes
369

Hi,

look to incude VTLFDATA :

DATA: BEGIN OF COMMON PART LFSL.       "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
...

DATA: END   OF COMMON PART LFSL.       "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

and compare with your customer-program

and change your data-definition in Z1RV56TD00

A.