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: 

Local table EKPO named T_EKPO has values but can't fetch the value of EKPO-WERKS

walkerist
Participant
0 Kudos
249

So, currently my local EKPO table has value but when checked in the debugger, it won't display the values of WERKS.

Variables tab in the debugger:

How does that happen that the local table has value but when fetching the specific value of a column, no value was displayed.

2 REPLIES 2

Maciej_Domagała
Contributor
190

What you display in the debugger is the header line of your table - not a table record (which one do you mean ? - you haven't specified this).

Type this into debugger field to see the contents of WERKS field in the 1st record:

T_EKPO[1]-WERKS

BaerbelWinkler
Active Contributor
0 Kudos
190

Wane - please include snippets from your code, like the SELECT-statement to get the data and the place in the code where you grabbed the values to display. Without this context, your question cannot really be answered. When adding code, make sure to use the "CODE" option in the editor menue to ensure proper formatting. Thanks!