I am using CRXI and Oracle DB 8
Hello I am trying to figure out how to combine two login for the same employee. There are several users on the system that have two logon. Example Joe Doe as JAD and JDOE log on. The user I am developing the report for only wants to see them one. I need to combine these two log on. I have the users Full Names displayed in group and the John Doe appearing twice in the report.
Here is code that gets the user names:
@ConCatName
if {PER_ACTIVITY.PER_ACT_ASGN_TO} in ['LC','LCHAMBERS']
then {EMPL.EMPL_FNAME}+ ' '+ {EMPL.EMPL_LNAME}
else
if {PER_ACTIVITY.PER_ACT_ASGN_TO} in ['RMC','RCAMP']
THEN 'ROBIN CAMP'
ELSE
{EMPL.EMPL_FNAME}+ ' '+ {EMPL.EMPL_LNAME}
I use this Code to create the group
@txtHeadingAssignedTo
if not isnull({@ConcatName}) then
'Assigned to '&{@ConcatName}
else
'Assigned to '&{PER_ACTIVITY.PER_ACT_ASGN_TO}
Thanks
Hello I am trying to figure out how to combine two login for the same employee. There are several users on the system that have two logon. Example Joe Doe as JAD and JDOE log on. The user I am developing the report for only wants to see them one. I need to combine these two log on. I have the users Full Names displayed in group and the John Doe appearing twice in the report.
Here is code that gets the user names:
@ConCatName
if {PER_ACTIVITY.PER_ACT_ASGN_TO} in ['LC','LCHAMBERS']
then {EMPL.EMPL_FNAME}+ ' '+ {EMPL.EMPL_LNAME}
else
if {PER_ACTIVITY.PER_ACT_ASGN_TO} in ['RMC','RCAMP']
THEN 'ROBIN CAMP'
ELSE
{EMPL.EMPL_FNAME}+ ' '+ {EMPL.EMPL_LNAME}
I use this Code to create the group
@txtHeadingAssignedTo
if not isnull({@ConcatName}) then
'Assigned to '&{@ConcatName}
else
'Assigned to '&{PER_ACTIVITY.PER_ACT_ASGN_TO}
Thanks