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

While Saving ALV report in Local File getting error

Former Member
0 Likes
2,720

Hello Experts,

Did one alv report.

Getting output properly , but while saving(downloading) the output result getting Dump from system.

Runtime Errors GETWA_NOT_ASSIGNED

Short text

Field symbol has not yet been assigned.

What happened?

Error in the ABAP Application Program

The current ABAP program "SAPLKKBL" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

NOT GETTING WHERE EXACTLY IT IS WRONG....

Please suggest the solution..

Thanks in advance

Hello Experts,

Did one alv report.

Getting output properly , but while saving(downloading) the output result getting Dump from system.

Runtime Errors GETWA_NOT_ASSIGNED

Short text

Field symbol has not yet been assigned.

What happened?

Error in the ABAP Application Program

The current ABAP program "SAPLKKBL" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

NOT GETTING WHERE EXACTLY IT IS WRONG....

Please suggest the solution..

Thanks in advance

7 REPLIES 7
Read only

Former Member
0 Likes
1,556

please send the ALV code to identify the error

Read only

Former Member
0 Likes
1,556

Hi,

This error generally comes with these reasons...

May be bacause ot the field catalogue and output table is not same. And also see if there is any currency field or qunatity field then u should convert it to type char(16) .

Hope this will solve ur error...

Regards,

KK

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,556

Usually this is due to wrong fieldcatalog, or inconsistenecy between field catalog, internal table or some fields of the layout (bselect box or lights for example) -> The FIRST thing to do is the execution of [The Consistency Check|http://help.sap.com/saphelp_470/helpdata/en/d6/23253963143e6ae10000000a11402f/frameset.htm], then correct the program to adjust field catalog or layout.

Regards,

Raymond

Read only

vishal_sharda2
Participant
0 Likes
1,556

Hi Prajyot,

The issue seems to be with the field catalog. Check the structure and other relevant things.

Also, please let us know how are you trying to download the data in an excel sheet. Are you trying to use 'Export' feature provided by standard ALV or using 'spreadsheet' function by right-clicking on the output?

thanks!

VS.

Read only

Former Member
0 Likes
1,556

Hi Prajyot,

Please try to EXPORT using List (in menu bar) -> Export -> Local file.

If you are able to successfully download alv output from there, then, it means you have a mis-match between your Output table declaration and field catalog. Please check the data types.

Read only

Former Member
0 Likes
1,556

post your code for better understanding of the cause of error.

Read only

Former Member
0 Likes
1,556

Thanks