1
0
-1

How to perform data level isolation according to different users' login to see different data instead of menu permission isolation

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can use SQL syntax and Hash Variable to filter the records retrieved via the JDBC Datalist Database Binder. The following example only retrieve records where the "createdBy" username matches the login username:

      SELECT * FROM app_fd_tableName where createdBy = '#currentUser.username#'

      Do also read JDBC Form Binder.


        CommentAdd your comment...