2022 Dec 29 12:27 PM
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.
2022 Dec 29 12:32 PM
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
2022 Dec 30 6:52 AM
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!