rcrowell Posted January 23, 2003 Posted January 23, 2003 I am creating a invoice system and on the internal side we keep credit card numbers (i.e. 4412-5647-9568-5423) while on the client copy we want to mask the back end of the credit card numbers (i.e. 4412-XXXX-XXXX-XXXX) for security reasons. Is there a way to write a script to automate the masking of the numbers? Thanks, Ryan
RussBaker Posted January 23, 2003 Posted January 23, 2003 You can create a calc text field "Credit Card Number to Print" which would = Case( Invoice Type = "Customer", Left(CreditCardNumber,4)&"-xxxx-xxxx-xxxx", CreditCardNumber )
SteveB Posted January 23, 2003 Posted January 23, 2003 It might be overkill, but you can encrypt the CC number with a free plugin from www.protolight.com
Recommended Posts
This topic is 7979 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now