on 2009 May 25 9:37 AM
Hi all,
How do i call out / extract out the user log's name into an ORDR table query? I would like to know who are the users who keyed in the Sales Order.
Appreciate your advice.
Thanks.
Harith
Try this query:
SELECT T1.U_NAME FROM dbo.ORDR T0 INNER JOIN dbo.OUSR T1 ON T0.UserSign = T1.INTERNAL_K WHERE T0.DocNum = $[$8.0.0\]
Please note, it can only run as a FMS query. Will not run under query manager.
Thanks,
Gordon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Harith,
Try the query in query generator
Reagrds
Jambulingam.P
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there,
the document owner code does not return me any result.Any other ideas?
Thanks.
Harith
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi harith,
Use ORDR->Usersign
SELECT T1.[U_NAME] FROM ORDR T0 INNER JOIN OUSR T1 ON T0.UserSign = T1.INTERNAL_K WHERE T0.[DocNum] = '10'
Regards
Jambulingam.P
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
owner name in sales order.
Edited by: Jeyakanthan A on May 25, 2009 2:36 PM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
96 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.