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: 

Runtime error when downloading list to excel in OO ALV report

Former Member
0 Kudos

Hi All,

I have written the code in OO ALV.

The list output contains CURR field, the report output displayed properly but when i am downloding the output to excel, runtime error occurs GET_WA_NOT_ASSIGNED.

The currency field reference is not assigned to field symbol.

Any clue on this.....

Regards

Praveen

2 REPLIES 2

Former Member
0 Kudos

Hi,

Pass the Referenrce Cuky field name in the the fieldcatalog.

<filedcatalog>-CFIELDNAME = 'WAERS'.

or pass the cuky value to this field directly.

<filedcatalog>-CURRENCY = 'INR'.

0 Kudos

Hi Avinash,

I am using the method SET_TABLE_FOR_FIRST_DISPALY.

The method created the field catelog based on the parameter I_STRUCTURE_NAME

CALL METHOD g_grid1->set_table_for_first_display

EXPORTING

i_structure_name = 'BSID'

CHANGING

it_outtab = i_bsid[] .

I cannot pass reference fields like normal ALV.

Regards

Praveen