Xpath database retrieve where=$currentUser

-2
The suggested solution in my previous FAQ with same title did not work - I m trying to retreive a distinct customer row on the Mario Pizza project where the Customer's LASTNAME is equal to the signon user id.
asked
1 answers
1

Can you explain a little bit more why you would like to to this? Because the current direction will not work. $currentUser is filled with a guid of the user, which is a Long value to uniquely identify an Object. Where your lastname is probebly an alphanumeric string.

If you would like to retrieve any object that has an association to the User entity you should use something like (Assuming you have an assoiation to System.User)

[ Module1.Object1_System.User = '[%CurrentUser%]']
answered