cancel
Showing results for 
Search instead for 
Did you mean: 

Runtime Errors GETWA_NOT_ASSIGNED

Former Member
0 Kudos

HI All,

I got below error dump today.

Runtime Errors  GETWA_NOT_ASSIGNED

What happened?

    Error in the ABAP Application Program

    The current ABAP program "CL_NWBC_HTML==================CP" had to be

     terminated because it has

    come across a statement that unfortunately cannot be executed.

Error analysis

    You attempted to access an unassigned field symbol

    (data segment "-1").

    This error may occur if

    - You address a typed field symbol before it has been set with

      ASSIGN

    - You address a field symbol that pointed to the line of an

      internal table that was deleted

    - You address a field symbol that was previously reset using

      UNASSIGN or that pointed to a local field that no

      longer exists

    - You address a global function interface, although the

      respective function module is not active - that is, 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 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" " "

    "CL_NWBC_HTML==================CP" or "CL_NWBC_HTML==================CM003"

    "HANDLE_REQUEST"

Information on where terminated

    Termination occurred in the ABAP program "CL_NWBC_HTML==================CP" -

     in "HANDLE_REQUEST".

    The main program was "SAPMHTTP ".

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

    of the (Include) program "CL_NWBC_HTML==================CM003".

Source Code Extract

Line  SourceCde

1396   ELSE.

1397     READ TABLE nodes ASSIGNING <node> WITH KEY object_id = lvl1.

1398     if sy-subrc eq 0.

1399       single_top_level = <node>-single_top_level.

1400     endif.

1401   ENDIF.

1402

1403   data: lp_level type string,

1404         lp_html  type string.

1405

1406   if single_top_level eq abap_false.

1407     if lvl2 is initial.

1408       READ TABLE nodes transporting no fields WITH KEY parent_id = selected link_collection

1409       if sy-subrc is not initial.

1410         single_top_level = abap_true.

1411       elseif <selected>-is_service_map eq abap_false and <selected>-url is initial.

1412         READ TABLE nodes ASSIGNING <selected> WITH KEY parent_id = selected link_collection

1413         if sy-subrc is initial.

1414           selected = <selected>-object_id.

1415           lvl2 = <selected>-object_id.

1416         endif.

1417       endif.

1418     endif.

1419     if single_top_level eq abap_false.

1420       lp_level = lvl2.

1421     endif.

1422   endif.

1423

1424   if single_top_level eq abap_true.

1425     lp_level = lvl1.

>>>>>     if lvl2 is initial and <selected>-is_service_map eq abap_false and <selected>-url is ini

1427       READ TABLE nodes ASSIGNING <selected> WITH KEY parent_id = selected link_collection =

1428       if sy-subrc is initial.

1429         selected = <selected>-object_id.

1430         lvl2 = <selected>-object_id.

1431       endif.

1432     endif.

1433   endif.

1434

1435 *  if me->is_service_map eq abap_false and <selected>-url is not initial and <selected>-is_s

1436 *    LOOP AT nodes ASSIGNING <node> WHERE link_collection eq abap_false AND parent_id = <sel

1437 *      READ TABLE nodes transporting no fields WITH KEY parent_id = <node>-object_id is_hidd

1438 *      if sy-subrc is initial.

1439 *        bHasChilds = 'X'.

1440 *        exit.

1441 *      endif.

1442 *    ENDLOOP.

1443 *    if bHasChilds is initial and <selected>-parent_id is not initial.

1444 *      READ TABLE nodes ASSIGNING <selected> WITH KEY object_id = <selected>-parent_id.

1445 *      if sy-subrc ne 0.

Active Calls/Events

No.   Ty.          Program                             Include                             Line

      Name

    6 METHOD       CL_NWBC_HTML==================CP    CL_NWBC_HTML==================CM003  1426

      CL_NWBC_HTML=>HANDLE_REQUEST

    5 METHOD       CL_NWBC_HTTP==================CP    CL_NWBC_HTTP==================CM00K     5

      CL_NWBC_HTTP=>HANDLE_SERVICE_MAP

    4 METHOD       CL_NWBC_HTTP==================CP    CL_NWBC_HTTP==================CM00C   211

      CL_NWBC_HTTP=>IF_HTTP_EXTENSION~HANDLE_REQUEST

    3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM017   387

      CL_HTTP_SERVER=>EXECUTE_REQUEST_FROM_MEMORY

    2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                     1164

      HTTP_DISPATCH_REQUEST

    1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13

      %_HTTP_START

Please help out.

Thanks in Advance,

Praveen.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Yes , Thanks for reply & helping,

I got this resolve, Yes this is related to backend call from portal, where user is trying to use outdated portal link, later is it update to user.

Thanks,

Praveen

former_member45419
Active Contributor
0 Kudos

Hi Praveen,

Wish you very happy New year,

pls refer below links for similar scenario,

GETWA_NOT_ASSIGNED Error | SCN

Runtime Errors GETWA_NOT_ASSIGNED while loading... | SCN

Runtime Error&amp;nbsp; -GETWA_NOT_ASSIGNED when ru... | SCN

Regards

Nayeem

Former Member
0 Kudos

with above Dump, I can sense it is related to some ABAP program error. But this may also related to some any NWBC configurations also. Please advice

Former Member
0 Kudos

Hi Praveen

Can you please let us know when you were getting this errors in the ST22 - please give the users and transaction information from the dump..

From the information provided , it looks like a back end  call from the Portal .

Regarding the dump , it is a common error which occurs in a multitude of scenarios...

Thanks

Rishi