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 error

siongchao_ng
Contributor
0 Kudos

Hi all,

I have a dump error here concerning the field symbols. It says program attempt to access an unassigned field symbol but it is already assigned. Anyone have any idea?

Details:

You attempted to access an unassigned field symbol

Source error:

Field Symbols: <f_item_category> type any.

Data: lwa_tkomv like line of tkomv.

Assign ('(SAPMV45A)VBAP-PSTYV') to <f_item_category>.

>>>>>>IF <f_item_category> = 'ZYRA'.

Clear: lwa_

2 REPLIES 2

VenkatRamesh_V
Active Contributor
0 Kudos

Hi,

Try,

Assign '(SAPMV45A)VBAP-PSTYV' to <f_item_category>.

CHECK <f_item_category> IS ASSIGNED.

Hope it helpful,

Regards,

Venkat.

thanga_prakash
Active Contributor
0 Kudos

Hello Siong,

Where are you using this statement? Inside any subroutine or inside any enhancements?

It seems the statement Assign '(SAPMV45A)VBAP-PSTYV' to <f_item_category>. couldn't retrieve the memory of VBAP-PSTYV as in program SAPMV45A.

Instead of using field symbols try with the EXPORT TO MEMORY ID and IMPORT FROM MEMORY ID.

Regards,

TP