Try this little report. REPORT. PARAMETERS back. Syntactically incorrect! Incorrect nesting: For the statement "ENDMODULE", there is no open structure introduced by "MODULE". Module %_BACK is already defined as a INPUT module. I've never seen th...
Many many years ago, in the days of steam powered computing, when we had to beat zeros into ones on an anvil before we could start development - back when programmers were real programmers...Well, maybe not that long ago. Early 1990s. I was a VM (mai...
The below was recovered from web.archive.orgI’ve been doing quite a few upgrades recently. Here are a few tips.1. Reset to original where possible.Use version management to see if you can reset to original. This is should always be preferred over acc...
Wow, seriously old ABAP.Remove the tables statement and trySELECT SINGLE * FROM TMCNV INTO @DATA(my_workarea).It could be a conversion exit on MASKE. Try checking the domain it's defined on.
I think it's an issue with SAPGui. It sometimes happens to me as well - outside of the Eclipse environment. I have to restart SAPGui to get it to work properly. I'm currently running 8000.1.5.1161
You've defined DATA: IT_READ_TEXT TYPE SORTED TABLE OF TY_READ_TEXT WITH UNIQUE KEY ID NAMEso you don't need to use BINARY SEARCH when reading.In fact a further optimisation would be to defined it as a HASHED table, since it's got a unique key.Also, ...