Does anyone have a tstorder.rpt where the SSN has been suppressed that they would be willing to share? Or, can anyone tell me how I might go about modifying that crystal report?
Thank you.
Terri Werner Brown
We had our altered by a paid GE consultant. You can open a ticket with GE asking for a quote and they will get in touch with you!
If you can 'share' your current tstorder.rpt here, then someone can probably remove that field. Actually, probably two fields: the SSN heading and then the actual field.
Just unsure if you are using a standard, or one that has already been modified.
Here's the fairly simple formula we use to show just the last 4-digits:
if isnull({PERSON.SOCSECNO}) then ""
else
if {PERSON.SOCSECNO} startswith "9*" then ""
else "XXX-XX-" + right({PERSON.SOCSECNO},4)
Thank you for sharing. I'll give it a try.