cancel
Showing results for 
Search instead for 
Did you mean: 

User code log info

Former Member
0 Kudos
55

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

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Harith,

Try the query in query generator

Reagrds

Jambulingam.P

Former Member
0 Kudos

Hi there,

the document owner code does not return me any result.Any other ideas?

Thanks.

Harith

Former Member
0 Kudos

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

former_member187989
Active Contributor
0 Kudos

owner name in sales order.

Edited by: Jeyakanthan A on May 25, 2009 2:36 PM