Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

Validate user accoung

Post Reply
forgot
Posts: 42
Joined: Thu Aug 09, 2012 8:52 pm

Validate user accoung

Unread post by forgot »

Hello

Can I get some how in SQL in General tap of Form Property user_id of current logging user?

So I create table with column document_owner related with zzsys_user.zzsys_user_id.

And Is it possible use in SQL query statement like
...
WHERE
zzsys_user.zzsys_user_id = XXX

Where XXX is hash or other variable with user_id that currently login.

Maxim
admin
Site Admin
Posts: 2781
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5
Been thanked: 1 time

Re: Validate user accoung

Unread post by admin »

Maxim,

#zzsys_user_id# is what you are asking for but #access_level# is probably what you want.

BTW if you hard code a where clause into a Form's SQL make sure you put brackets around it ..

Code: Select all

SELECT * FROM customer WHERE (cus_employee = '#access_level#')
Otherwise you will get something like this that could give you mixed results.

Code: Select all

SELECT * FROM customer WHERE cus_employee = '#access_level#'
AND (cus_code  LIKE  "%mat%") 
OR  (cus_name  LIKE  "%mat%") 
OR  (cus_phone  LIKE  "%mat%") 
OR  (cus_mobile  LIKE  "%mat%") 
OR  (cus_fax  LIKE  "%mat%") 
OR  (cus_due_period  LIKE  "%mat%") )
All the hash variables you can use are here http://wiki.nubuilder.com/tiki-index.ph ... structure=

Steven
Post Reply