2023 Jul 26 1:36 PM
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.
2023 Jul 26 1:54 PM
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.
2023 Jul 26 1:46 PM
2023 Jul 26 1:54 PM
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.