I'd like to shoot whoever set up our database, but there is no full name field, nor any comprehensive field that would be unique enough to make a selection with a parameter which has
LastName, FirstName
of employees. I can put in a manual list of them, but how would I then get it to select proper records? Last name and First name are in Two separate fields (S_CONTACT.LAST_NAME and S_CONTACT.FST_NAME)
Here is the code so far, which does two other parameters:
({S_CUST_SURVEY.LAST_UPD} = {?WhatDates} ) and
(
if {?WhatSites} <> "ALL" then
{S_CONTACT.SOC_SECURITY_NUM} = {?WhatSites}
else if {?WhatSites} = "ALL" then
true
)
LastName, FirstName
of employees. I can put in a manual list of them, but how would I then get it to select proper records? Last name and First name are in Two separate fields (S_CONTACT.LAST_NAME and S_CONTACT.FST_NAME)
Here is the code so far, which does two other parameters:
({S_CUST_SURVEY.LAST_UPD} = {?WhatDates} ) and
(
if {?WhatSites} <> "ALL" then
{S_CONTACT.SOC_SECURITY_NUM} = {?WhatSites}
else if {?WhatSites} = "ALL" then
true
)