2024 Mar 29 2:20 PM
I want to Filter row of table data based on USERID Through TMG how to do that?
2024 Mar 29 2:32 PM
If USERID is a field of your table did you consider creation of a maintenance view with a selection on USERID equal to SY-UNAME.
Else, complex criteria such as some AUTHORIZATION-CHECK, consider using event AA to create your own read data routine.
2024 Mar 29 2:57 PM
NO userid is not Field it's used for Separating Records of table
2024 Mar 29 3:25 PM
Here, I'm not sure if you are asking something or not. Considering what you say, it means that you should consider the second part of Raymond's answer. I guess it solves your question, right?
2024 Mar 29 3:37 PM - edited 2024 Mar 29 3:41 PM
As @Sandra rossi wrote, if there is not field USERID, then consider the 'else' suggestion.