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: 

problem with print report

Former Member
0 Kudos

HI all ,

i make a report by alv grid but when i print the report the system give me this run time error

Error analysis

You attempted to access an unassigned field symbol

(data segment 69).

This error may occur if

- You address a typed field symbol before it has been set with

ASSIGN

- You address a field symbol that pointed to the line of an

internal table that was deleted

- You address a field symbol that was previously reset using

UNASSIGN or that pointed to a local field that no

longer exists

- You address a global function interface, although the

respective function module is not active - that is, is

not in the list of active calls. The list of active calls

can be taken from this short dump.

thank's .

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Check in your code where you have the ASSIGN statement for the field symbol. You need to explicitly check the assignment if Unicode check is active for the program. Please check the sy-subrc after the ASSIGN statement and handle the exception. You will not get the short dump if you handle it in the code.

Edited by: Raj Julakanti on Oct 8, 2008 5:24 PM

2 REPLIES 2

Former Member
0 Kudos

Check in your code where you have the ASSIGN statement for the field symbol. You need to explicitly check the assignment if Unicode check is active for the program. Please check the sy-subrc after the ASSIGN statement and handle the exception. You will not get the short dump if you handle it in the code.

Edited by: Raj Julakanti on Oct 8, 2008 5:24 PM

0 Kudos

thank you very much