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: 

Dump GETWA_NOT_ASSIGNED in ALV OO

david_carballido
Active Participant
0 Kudos

Hi experts, i have a problem ... i created an ALV OO but when i wanna dowload the ALV's lines the program trigger a DUMP: GETWA_NOT_ASSIGNED in program SAPLKKBL ... i know that it's a clasic DUMP about ALV's ... please i need your help.

Thanks.

David Carballido

1 ACCEPTED SOLUTION

uwe_schieferstein
Active Contributor
0 Kudos

Hello David

Most likely your fieldcatalog (manually created?) is not correct.

Try to generate the fieldcatalog automatically (LVC_FIELDCATALOG_MERGE).

Regards

Uwe

9 REPLIES 9

uwe_schieferstein
Active Contributor
0 Kudos

Hello David

Most likely your fieldcatalog (manually created?) is not correct.

Try to generate the fieldcatalog automatically (LVC_FIELDCATALOG_MERGE).

Regards

Uwe

0 Kudos

Hi Uwe ... i created a structure and called to FM LVC_FIELDCATALOG_MERGE to create my fieldcat and the program trigger the same DUMP.

Errores tiempo ejecucióGETWA_NOT_ASSIGNED
       ocurrido el     23.09.2008 a  17:10:54
------------------------------------------------------------------------------------------
>> Dump breve ABAP no almacenado completamente (muy grande)
------------------------------------------------------------------------------------------

Field symbol has not yet been assigned.

-----------------
¿Qué ha sucedido?
-----------------

The current ABAP/4 program "SAPLKKBL " had to be terminated because
one of the statements could not be executed.

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

-----------------
¿Qué puede hacer?
-----------------

Note the actions and input that caused the error.

Inform your SAP system administrator.

You can print out this message by choosing "Print". Transaction ST22
allows you to display and manage termination messages, including keeping
 them beyond their normal deletion date.

--------------
Análisis error
--------------

You attempted to access an unassigned field symbol
(data segment 1069).

This error occurs:
- if you address a typed field symbol before it has been set with
  ASSIGN or
- if you address a field symbol that has been reset with UNASSIGN
  or pointed to a local field that no longer exists, or
- if you address a field symbol that pointed to a line of an internal
  table that has now been deleted, or
- if you address a global function interface partameter, even
  though the relevant function module is not active,
  i.e. it is not in the list of active calls. You can get the list
  of active calls from the this short dump.

---------------------------
Notas para corregir errores
---------------------------


If the error occurred in a non-modified SAP program, you may be
able to find a solution in the SAP note system.
If you have access to the note system yourself, use the following
search criteria:
----------------------------------------------------------------
 "GETWA_NOT_ASSIGNED"
 "SAPLKKBL " or "LKKBLF99 "
 "GEN_FIELD_OUT2"
If you cannot solve the problem yourself, please send the
following documents to SAP:

1. A hard copy print describing the problem.
   To obtain this, select the "Print" function on the current screen.
-

2. A suitable hardcopy prinout of the system log.
   To obtain this, call the system log with Transaction SM21
   and select the "Print" function to print out the relevant
   part.

3. If the programs are your own programs or modified SAP programs,
   supply the source code.
   To do this, you can either use the "PRINT" command in the editor or
   print the programs using the report RSINCL00.

4. Details regarding the conditions under which the error occurred
   or which actions and input led to the error.

------------------------
Usuario, transacción....
------------------------

Client.............. 200
User................ "BCDCARBALLID"
Language key........ "S"
Transaction......... "SEU_INT "
Program............. "SAPLKKBL "
Screen.............. "SAPLKKBL 0500"
Screen line......... 3

----------------------------
Info posición de cancelación
----------------------------

The termination occurred in the ABAP/4 program "SAPLKKBL " in
"GEN_FIELD_OUT2".
The main program was "ZFI_RPT_PDB_005 ".

The termination occurred in line 3824
of the source code of program "LKKBLF99 " (when calling the editor 38240).

---------------------
Detalle código fuente
---------------------

037940   * Color settings                                             "K_COLCOLOR
037950     if gs_out_flags-sum is initial.
037960       if gs_fc-hotspot = 'X' and gs_out_flags-hotline is initial
037970          and gt_stack-is_layout-no_hotspot is initial.
037980         format hotspot on.
037990       elseif gs_fc-hotspot = 'V'
038000          and gs_out_flags-hotline is initial and not <field> is initial
038010          and gt_stack-is_layout-no_hotspot is initial.
038020         format hotspot on.
038030       endif.
038040       if gs_fc-input = 'X' and
038050          gt_stack-is_layout-no_input is initial and
038060          gs_fc-checkbox is initial.
038070         format input on.
038080         format intensified off.
038090       endif.
038100       if not gs_fc-emphasize is initial and gs_out-info is initial.
038110         perform field_color_normal using gs_fc
038120   *                                      gt_stack-is_layout
038130                                          gs_out-info.
038140       endif.
038150
038160   *   complex logic with internal table for color description
038170       if gs_out_flags-mcoltab = 'X' and gs_out_flags-slave ne 'X' and
038180          gs_out_flags-sum ne 'X'.
038190
038200         perform field_color_complex using <coltab>
038210                                           gs_fc
038220                                           gs_out_flags-inverse.
038230       elseif gs_out_flags-scoltab = 'X' and gs_out_flags-slave = 'X' and
----->          gs_out_flags-sum ne 'X'.
038250
038260   *     perform field_color_complex using <coltab>   " DEL FGS_COLOR
038270         perform field_color_complex using <coltab_slave> " INS FGS_COLOR
038280                                           gs_fc
038290                                           gs_out_flags-inverse.
038300       endif.
038310     endif.
038320
038330   *--- Prüfung Ausgabelänge
038340     clear gs_out-hlplen.
038350   * Edit-Mask
038360     if gs_fc-tech_form = 7.
038370       write <field> to gs_out-hlpchar
038380              using edit mask gs_fc-edit_mask.
038390       gs_out-hlplen = strlen( gs_out-hlpchar ).
038400   * Bei NUMC führende '0' und ' ' nicht berücksichtigen
038410     elseif gs_fc-tech_form = 6.
038420       write <field> to gs_out-hlpchar no-zero left-justified.
038430       if gs_fc-just = 'R'.

0 Kudos

.

0 Kudos

.

0 Kudos

.

Edited by: David Carballido on Sep 24, 2008 12:30 AM

0 Kudos

.

former_member188685
Active Contributor
0 Kudos

Are you getting the Dump only at the Download ...?

if so Fieldcatalog columns and Internal table columns are not in sync. do you have any Currency/Qty fields, Are you doing any coloring....?

If possible can you remove the content DUMP what you posted..? it is very difficult to reach to the end.

0 Kudos

Hi ... thanks for your help, the problem was for assign values in the layout

0 Kudos

If you are using the Color fields then you need to mention the color fieldname in the layout.

Layout-CTAB_FNAME = 'COLORFIELDNAME' .