cancel
Showing results for 
Search instead for 
Did you mean: 

GETWA_NOT_ASSIGNED - FBL3N - dump

former_member576008
Active Participant
0 Kudos

Hi,

While executing FBL3N, we are facing the following dump.

Runtime Errors     GETWA_NOT_ASSIGNED
Date and Time      02-26-2013 02:06:02

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.

How to correct the error

    If the error occures in a non-modified SAP program, you may be able to

    find an interim solution in an SAP Note.

    If you have access to SAP Notes, carry out a search with the following

    keywords:

    "GETWA_NOT_ASSIGNED" " "

    "SAPLKKBL" or "LKKBLF01"

    "HEADER_FIELD_OUT"

    If you cannot solve the problem yourself and want to send an error

    notification to SAP, include the following information:

    1. The description of the current problem (short dump)

       To save the description, choose "System->List->Save->Local File

    (Unconverted)".

    2. Corresponding system log

       Display the system log by calling transaction SM21.

       Restrict the time interval to 10 minutes before and five minutes

    after the short dump. Then choose "System->List->Save->Local File

    (Unconverted)".

Information on where terminated

    Termination occurred in the ABAP program "SAPLKKBL" - in "HEADER_FIELD_OUT".

    The main program was "RFITEMGL ".

    In the source code you have the termination point in line 1302

    of the (Include) program "LKKBLF01".

if rs_layout-no_hotspot is initial.
     format hotspot on.
   endif.

   concatenate 'RS_HEADER-TEXT' r_col into l_field.
   assign (l_field) to <hf>.
   <hf> = l_char.   ********DUMP AT THIS LINE*******

We are in in following release

SAP_ABA    700    0015    SAPKA70015    Cross-Application Component

SAP_BASIS    700    0015    SAPKB70015    SAP Basis Component

Please suggest.

Regards,

Nandha


Accepted Solutions (1)

Accepted Solutions (1)

eduardo_hinojosa
Active Contributor
0 Kudos

Hi

Check if these notes matters, if not, look for notes for error program for your release and level of patches.

SAP Note 504384 - ALV-SOS: Consistency check

SAP Note 906148 - ALV: GETWA_NOT_ASSIGNED

I hope this helps you

Regards

Eduardo

former_member576008
Active Participant
0 Kudos

Hi Eduardo,

Solved this on my own, after debugging standard code.

The actual problem was the output layout has more than 99 columns. The dump is because after 99 columns l_col value is incremented  by 1 to 100, since it can hold only 2 values, instead of 100 it holds only 00. My functional simply changed the layout and the issue was fixed.

form salv_top_table_header .

data: l_col(2)       type n.

l_count = l_count + 1.

though the problem was resolved, do i have to apply any notes for this to avoid future errors.

Regards,

Nandha


Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Nandha Kishore,

The possible column is restricted to 99. Please check if your layout variant is using more than that.

If thats the case, change the layout variant and retest.

This should help.

Regards,

Anushya