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: 

GETWA_NOT_ASSIGNED dump in "SAPLSLVC" or LSLVCU26

Ankit4800
Explorer
0 Kudos
1,880

Hi All,

Can I get some assistance on this particluar error message and the solution to resolve this issue?

Thank you in advance.

-------------------------------------------------------------------------------------------------------------------------------------------------------------

Category ABAP Programming Error

Runtime Errors GETWA_NOT_ASSIGNED

ABAP Program SAPLSLVC

Application Component BC-SRV-ALV

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Short Text |

| Field symbol has not been assigned yet. |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|What happened? |

| Error in the ABAP Application Program |

| |

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

| come across a statement that unfortunately cannot be executed. |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|What can you do? |

| Note down which actions and inputs caused the error. |

| |

| |

| To process the problem further, contact you SAP system |

| administrator. |

| |

| Using Transaction ST22 for ABAP Dump Analysis, you can look |

| at and manage termination messages, and you can also |

| keep them for a long time. |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Error analysis |

| An attempt was made to access a field symbol that has not been assigned |

| yet (data segment number "-1"). |

| |

| That error occurs if |

| - a typed field symbol is addressed before it has been set with ASSIGN, |

| or |

| - a field symbol is addressed that points to a row in an internal table |

| that has been deleted, or |

| - a field symbol is addressed that was previously reset using UNASSIGN, |

| or that pointed to a local field that no longer exists, or |

| - a parameter of a global function interface is address, although the |

| corresponding function module is not active (is not in the list of |

| active calls). The list of active calls can be taken from this short |

| dump. |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|How to correct the error |

| If the error occurs in a non-modified SAP program, you might be able to |

| find a solution in the SAP Notes system. If you have access to the SAP |

| Notes system, check there first using the following keywords: |

| |

| "GETWA_NOT_ASSIGNED" |

| "SAPLSLVC" or LSLVCU26 |

| "LVC_FILL_DATA_TABLE" |

Regards,

Ankit Agarwal.

1 ACCEPTED SOLUTION

Abhishek_10
Participant
0 Kudos
1,635

probably your field symbol is not assigned or there is some condition statement where your field symbol does not get assigned. And later on that field symbol is getting accessed. This throws the error.

2 REPLIES 2

DominikTylczyn
Active Contributor
1,635

I think your ALV field catalog is incorrectly defined and doesn't correspond to the structure of the internal table with the data.

Abhishek_10
Participant
0 Kudos
1,636

probably your field symbol is not assigned or there is some condition statement where your field symbol does not get assigned. And later on that field symbol is getting accessed. This throws the error.