The everyday problem
"A customer calls asking to transfer 30 days of maintenance meds to our downtown location. Today that means three unlinked store systems and twenty minutes on hold. We need one customer record, not three."
Each store location running its own separate system means the same patient looks like three different strangers, depending on which counter they walk up to. Refill reminders get missed, prescription history gets re-asked at every visit, and a simple transfer between stores turns into a phone-tag exercise.
What you're building
Three pieces work together: the standard Lead/Contact/Account records SmartLite already has, one new custom record type for tracking prescriptions, and a handful of automation and security rules layered on top.
| Record type | Kind | What it holds |
|---|---|---|
| Lead | Standard (built-in) | A person who just signed up for refill reminders or walked in as a new customer, before they're fully on file |
| Contact | Standard (built-in) | The patient, once they're a confirmed customer |
| Account | Standard (built-in) | The prescriber's practice, e.g. "Riverside Family Practice" โ kept separate from the patient so many patients can share one prescriber |
| Prescription | Custom (you build it) | Drug, dosage, refill date, prescribing physician, and diagnosis notes โ linked to the patient |
Business outcome
- One patient record follows the customer across every store โ nobody re-asks "have you been here before?"
- Refill reminders go out automatically, lifting adherence without a single manual phone call
- Clinical notes stay locked to the Pharmacist Profile only โ other store staff never see them
Step-by-step build
Do these six pieces in order โ each one builds on the last. Total time: roughly 30โ40 minutes the first time through.
1 Capture the patient automatically
name, "Phone" โ phone, "Preferred Store" โ store_location__c (you'll create this field โ see step 3 for how to add a custom field).Every sign-up now creates a Lead automatically โ no front-desk staff member has to retype it.
2 Convert once, link to the right prescriber
3 Build the Prescription record type
prescription__c).| Field label | Type | Links to / notes |
|---|---|---|
| Patient | LOOKUP | Related object: Contact โ connects each Prescription to the patient it belongs to |
| Drug Name | TEXT | e.g. "Lisinopril 10mg" |
| Dosage | TEXT | e.g. "Once daily" |
| Refill Date | DATE | Drives the automatic reminder in step 4 |
| Prescribing Physician | LOOKUP | Related object: Account โ connects to the prescriber's practice |
| Diagnosis Notes | TEXT | Sensitive โ locked down in step 5 |