Files
e-filing/docs/research/SOP-eLegal-filing.html

784 lines
31 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SOP — File a Case Through eLegal</title>
<style>
:root {
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
--color-text: #1a1a2e;
--color-muted: #555770;
--color-border: #e2e4ea;
--color-bg: #ffffff;
--color-surface: #f7f8fa;
--color-blue: #3b82f6;
--color-blue-light: #eff6ff;
--color-blue-border: #bfdbfe;
--color-green: #10b981;
--color-green-bg: #ecfdf5;
--color-green-text: #047857;
--color-red: #ef4444;
--color-red-bg: #fef2f2;
--color-red-text: #b91c1c;
--color-orange: #f59e0b;
--color-orange-bg: #fffbeb;
--color-orange-text: #b45309;
--phase-1: #3b82f6;
--phase-2: #8b5cf6;
--phase-3: #06b6d4;
--phase-4: #10b981;
--phase-5: #f59e0b;
--phase-6: #ef4444;
--phase-7: #ec4899;
--phase-8: #6366f1;
--phase-9: #14b8a6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: var(--font-sans);
color: var(--color-text);
background: var(--color-surface);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
.page {
max-width: 860px;
margin: 0 auto;
padding: 2rem 1.5rem 4rem;
}
/* ── Header ── */
.header {
text-align: center;
padding: 3rem 1rem 2.5rem;
border-bottom: 1px solid var(--color-border);
margin-bottom: 2.5rem;
}
.header-label {
display: inline-block;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--color-blue);
background: var(--color-blue-light);
border: 1px solid var(--color-blue-border);
padding: 0.25rem 0.75rem;
border-radius: 999px;
margin-bottom: 1rem;
}
.header h1 {
font-size: 2rem;
font-weight: 800;
line-height: 1.25;
letter-spacing: -0.03em;
color: var(--color-text);
margin-bottom: 0.75rem;
}
.header-subtitle {
font-size: 1rem;
color: var(--color-muted);
max-width: 600px;
margin: 0 auto 1.25rem;
}
.meta-row {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
font-size: 0.82rem;
color: var(--color-muted);
}
.meta-row span {
display: inline-flex;
align-items: center;
gap: 0.3rem;
}
/* ── Prerequisites ── */
.prereqs {
background: var(--color-blue-light);
border: 1px solid var(--color-blue-border);
border-radius: 10px;
padding: 1.25rem 1.5rem;
margin-bottom: 3rem;
}
.prereqs h3 {
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--color-blue);
margin-bottom: 0.6rem;
}
.prereqs ul {
list-style: none;
padding: 0;
}
.prereqs li {
padding: 0.2rem 0;
padding-left: 1.4em;
position: relative;
font-size: 0.9rem;
}
.prereqs li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--color-blue);
font-weight: 700;
}
/* ── Phases ── */
.phase {
margin-bottom: 3rem;
}
.phase-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
padding-bottom: 0.6rem;
border-bottom: 2px solid var(--color-border);
}
.phase-num {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 10px;
color: #fff;
font-weight: 800;
font-size: 1rem;
flex-shrink: 0;
}
.phase-title {
font-size: 1.2rem;
font-weight: 700;
color: var(--color-text);
}
/* ── Steps ── */
.step {
background: var(--color-bg);
border: 1px solid var(--color-border);
border-radius: 10px;
padding: 1.25rem 1.5rem;
margin-bottom: 1rem;
}
.step-num {
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--color-muted);
margin-bottom: 0.4rem;
}
.step h4 {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.step ol {
padding-left: 1.3em;
}
.step li {
margin-bottom: 0.4rem;
font-size: 0.9rem;
}
/* ── Inline callouts ── */
.callout {
margin-top: 0.75rem;
padding: 0.65rem 0.9rem;
border-radius: 7px;
font-size: 0.85rem;
line-height: 1.55;
}
.callout-sees {
background: var(--color-green-bg);
color: var(--color-green-text);
border-left: 3px solid var(--color-green);
}
.callout-pitfall {
background: var(--color-red-bg);
color: var(--color-red-text);
border-left: 3px solid var(--color-red);
}
.callout-stumble {
background: var(--color-orange-bg);
color: var(--color-orange-text);
border-left: 3px solid var(--color-orange);
}
.callout-note {
background: #f0f4ff;
color: #3b5998;
border-left: 3px solid var(--phase-8);
}
/* ── Reference Tables ── */
.table-section {
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--color-border);
}
.table-section h2 {
font-size: 1.3rem;
font-weight: 800;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
table {
width: 100%;
border-collapse: collapse;
font-size: 0.88rem;
margin-bottom: 2rem;
}
th {
text-align: left;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--color-muted);
padding: 0.6rem 0.9rem;
border-bottom: 2px solid var(--color-border);
}
td {
padding: 0.6rem 0.9rem;
border-bottom: 1px solid var(--color-border);
vertical-align: top;
}
tr:last-child td {
border-bottom: none;
}
/* ── Responsive ── */
@media (max-width: 600px) {
.page { padding: 1.25rem 1rem 3rem; }
.header h1 { font-size: 1.5rem; }
.meta-row { flex-direction: column; align-items: center; gap: 0.4rem; }
.step { padding: 1rem; }
}
/* ── Print ── */
@media print {
body { background: #fff; }
.page { max-width: 100%; padding: 0; }
.phase, .step { break-inside: avoid; }
}
</style>
</head>
<body>
<div class="page">
<!-- Header -->
<div class="header">
<div class="header-label">Standard Operating Procedure</div>
<h1>File a Case Through eLegal</h1>
<p class="header-subtitle">
Step-by-step instructions for filing a civil case through the county's eLegal portal using documents from the Filevine case management system.
</p>
<div class="meta-row">
<span>⏱ 1015 minutes active work</span>
<span>📄 9 phases · 44+ steps</span>
</div>
</div>
<!-- Prerequisites -->
<div class="prereqs">
<h3>Prerequisites Before Beginning</h3>
<ul>
<li>A Filevine project open with the case name and all source documents in the "1. Pleadings & Filed Docs" folder</li>
<li>Access to your Filevine account and eLegal account</li>
<li>The Complaint, Summons, and Civil Case Cover Sheet ready in the Filevine project</li>
</ul>
</div>
<!-- Phase 1 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-1);">1</div>
<div class="phase-title">Gather Documents from Filevine</div>
</div>
<div class="step">
<div class="step-num">Step 1.1</div>
<h4>Open Filevine and locate the case</h4>
<ol>
<li>Open your web browser and navigate to your firm's Filevine portal</li>
<li>In the project search or dashboard, locate and click on the correct case project (e.g., "10854 - Park Manor Apartments")</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The project page loads with a left sidebar showing sections: "Activity," "Dates & Deadlines," "Property Contacts," "Documents," etc.</div>
</div>
<div class="step">
<div class="step-num">Step 1.2</div>
<h4>Navigate to the documents folder</h4>
<ol>
<li>In the left sidebar, click on <strong>"Documents"</strong></li>
<li>You will see a list of folders (e.g., "1. Pleadings & Filed Docs," "2. Exhibits," etc.)</li>
<li>Click on the folder labeled <strong>"1. Pleadings & Filed Docs"</strong></li>
</ol>
<div class="callout callout-sees">✅ What you should see: A list of PDF files, including "CMP - Complaint," "CMP - Summons," and "CMP - Civil Case Cover Sheet"</div>
</div>
<div class="step">
<div class="step-num">Step 1.3</div>
<h4>Download the required files</h4>
<ol>
<li>Hover your mouse over the file named <strong>"CMP - Complaint"</strong></li>
<li>Click the <strong>Download icon</strong> (downward arrow) that appears next to it</li>
<li>Wait for the file to finish downloading (you'll see it appear in your browser's download bar or your computer's Downloads folder)</li>
<li>Repeat steps 13 for the remaining two files: <strong>"CMP - Summons"</strong> and <strong>"CMP - Civil Case Cover Sheet"</strong></li>
</ol>
<div class="callout callout-pitfall">⚡ Pitfall: Do not skip any of these three files. You will need all three to complete the filing. The court will reject your filing if any are missing.</div>
</div>
<div class="step">
<div class="step-num">Step 1.4</div>
<h4>Open the Complaint PDF for reference</h4>
<ol>
<li>Open your Downloads folder (or the browser's download bar)</li>
<li>Double-click on <strong>"CMP - Complaint"</strong> to open it in a PDF viewer</li>
<li>Resize and position this window so you can see both the PDF and the Filevine window at the same time</li>
</ol>
<div class="callout callout-note">📝 You will need to refer to this document again later — for address, city, state, zip code, and damages amount. Keep it open throughout.</div>
</div>
</div>
<!-- Phase 2 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-2);">2</div>
<div class="phase-title">Initiate the Filing in eLegal</div>
</div>
<div class="step">
<div class="step-num">Step 2.1</div>
<h4>Open the eLegal portal</h4>
<ol>
<li>In a new browser tab (or window), navigate to the eLegal portal</li>
<li>Log in with your credentials if you are not already logged in</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The eLegal Dashboard. Look for a large orange button in the center labeled <strong>"Initiate a New Case"</strong></div>
</div>
<div class="step">
<div class="step-num">Step 2.2</div>
<h4>Start the new filing form</h4>
<ol>
<li>Click the orange <strong>"Initiate a New Case"</strong> button</li>
</ol>
<div class="callout callout-sees">✅ What you should see: A "New Filing" form with numbered sections. The first section is labeled <strong>"1. Select Court & Case Type."</strong></div>
</div>
</div>
<!-- Phase 3 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-3);">3</div>
<div class="phase-title">Enter Court and Case Details</div>
</div>
<div class="step">
<div class="step-num">Step 3.1</div>
<h4>Select the court</h4>
<ol>
<li>Find the <strong>"Court"</strong> dropdown in Section 1 and click to open it</li>
<li>Type <strong>"Alameda"</strong> (or your county name) into the search/filter box</li>
<li>From the filtered results, select <strong>"Alameda County Civil"</strong> (make sure "Civil" is in the selection)</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The selected court appears in the field</div>
<div class="callout callout-pitfall">⚡ Pitfall: Do not select a criminal or family court. Always verify the word "Civil" is part of your selection.</div>
</div>
<div class="step">
<div class="step-num">Step 3.2</div>
<h4>Select the case type</h4>
<ol>
<li>Find the <strong>"Case Type"</strong> dropdown below the Court selection and open it</li>
<li>Type <strong>"Unlawful Detainer"</strong> into the search box</li>
<li><strong>Check the Complaint PDF:</strong> Look at the top-right corner of page 1 for the total damages sought:
<ul>
<li style="margin-top:0.3rem;">If it says <strong>"over $35,000"</strong> → Select <strong>"Civil Unlimited"</strong></li>
<li>If it says <strong>"$10,000 to $35,000"</strong> → Select <strong>"Civil Limited"</strong></li>
</ul>
</li>
<li>Click to select the matching case type (e.g., "Unlawful Detainer - Commercial ($10k$35k) - Civil Limited")</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The selected case type appears in the field</div>
<div class="callout callout-stumble">⚠️ Stumble: If unsure whether to select "Limited" or "Unlimited," stop and re-read the damages amount from the Complaint PDF.</div>
</div>
</div>
<!-- Phase 4 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-4);">4</div>
<div class="phase-title">Enter Property and Party Information</div>
</div>
<div class="step">
<div class="step-num">Step 4.1</div>
<h4>Enter the release zip code and court location</h4>
<ol>
<li>Find the <strong>"Release Zip & Court"</strong> field below Section 1</li>
<li>Type the property zip code from the Complaint (e.g., <strong>"94544"</strong>)</li>
<li>From the auto-suggested dropdown, select the correct courthouse (e.g., "94544 - Hayward Hall of Justice")</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The court location auto-populates based on your zip code selection</div>
</div>
<div class="step">
<div class="step-num">Step 4.2</div>
<h4>Enter the premises address</h4>
<ol>
<li>Find the <strong>"Address"</strong> field</li>
<li>Go to the Complaint PDF window, highlight and copy (Ctrl+C / Cmd+C) the full property address (e.g., "27250 Sleepy Hollow Ave, Unit #212")</li>
<li>Click into the Address field in eLegal and paste (Ctrl+V / Cmd+V)</li>
<li>Repeat this same process for <strong>City</strong>, <strong>State</strong>, and <strong>Zip Code</strong> fields — reading from the Complaint PDF each time</li>
</ol>
<div class="callout callout-sees">✅ What you should see: Each field populated exactly as copied from the PDF</div>
</div>
</div>
<!-- Phase 5 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-5);">5</div>
<div class="phase-title">Upload Required Documents</div>
</div>
<div class="step">
<div class="step-num">Step 5.1</div>
<h4>Upload the Complaint</h4>
<ol>
<li>Scroll down to find <strong>Section 2: "Add Documents"</strong></li>
<li>Click the <strong>"Document Type"</strong> dropdown, type <strong>"Complaint"</strong> and select it</li>
<li>A <strong>"Click to Upload"</strong> area will appear — drag and drop the <strong>"CMP - Complaint"</strong> file into this box</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The filename appears in green, indicating successful upload</div>
<div class="callout callout-pitfall">⚡ Pitfall: If you upload the wrong file (e.g., Summons instead of Complaint), the court will reject your filing. Double-check the Document Type label matches the file name.</div>
</div>
<div class="step">
<div class="step-num">Step 5.2</div>
<h4>Upload the Summons</h4>
<ol>
<li>Click the <strong>"Add Another"</strong> button (or "+") to create a new row</li>
<li>Select <strong>"Summons"</strong> as the Document Type</li>
<li>Drag and drop the <strong>"CMP - Summons"</strong> file into the upload box</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The filename appears in green</div>
</div>
<div class="step">
<div class="step-num">Step 5.3</div>
<h4>Upload the Civil Case Cover Sheet</h4>
<ol>
<li>Click <strong>"Add Another"</strong> for a third row</li>
<li>Select <strong>"Civil Case Cover Sheet"</strong> as the Document Type</li>
<li>Drag and drop the <strong>"CMP - Civil Case Cover Sheet"</strong> file into the upload box</li>
</ol>
<div class="callout callout-sees">✅ What you should see: All three documents show green checkmarks or confirmation text</div>
</div>
</div>
<!-- Phase 6 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-6);">6</div>
<div class="phase-title">Add Parties and Select Services</div>
</div>
<div class="step">
<div class="step-num">Step 6.1</div>
<h4>Select the representing attorney</h4>
<ol>
<li>Scroll to the <strong>"Representing Attorney"</strong> field and open its dropdown</li>
<li>Select your name (e.g., "Todd B. Hubbard")</li>
</ol>
<div class="callout callout-note">📝 This field does NOT auto-populate based on your login — you must select it manually every time.</div>
</div>
<div class="step">
<div class="step-num">Step 6.2</div>
<h4>Add the Defendant party</h4>
<ol>
<li>Scroll to the <strong>"Parties"</strong> section and click <strong>"Add Party"</strong></li>
<li>In the new form, select <strong>"Defendant"</strong> from the Role dropdown</li>
<li>Fill in the defendant's <strong>Last Name</strong> and <strong>First Name</strong> from the Filevine document viewer</li>
<li>If the defendant has an address listed in Filevine, copy and paste it into the address fields</li>
<li>Scroll to <strong>"Party We Represent"</strong> and check the checkbox next to this party</li>
</ol>
<div class="callout callout-pitfall">⚡ Pitfall: Forgetting to add all defendants is a common error. Double-check the Complaint for multiple defendants — each one must be added separately.</div>
</div>
<div class="step">
<div class="step-num">Step 6.3</div>
<h4>Handle AKA/DBA Defendants (if applicable)</h4>
<ol>
<li>If the Complaint lists any defendant with an AKA (Also Known As) or DBA (Doing Business As), click <strong>"Add Party"</strong> again</li>
<li>Select the appropriate role: <strong>"AKA"</strong> or <strong>"DBA"</strong></li>
<li>Enter the alternative name and check the "Party We Represent" checkbox for this entry too</li>
</ol>
<div class="callout callout-pitfall">⚡ Pitfall: Do NOT merge AKA/DBA names into the primary defendant entry. They must be separate entries with their own Role selection.</div>
</div>
<div class="step">
<div class="step-num">Step 6.4</div>
<h4>Skip additional services</h4>
<ol>
<li>Scroll to the <strong>"Additional Services"</strong> section</li>
<li>Verify no checkboxes are selected for extra services like "Process Serving"</li>
<li><strong>Leave this section empty</strong> unless your supervising attorney has specifically instructed otherwise</li>
</ol>
</div>
<div class="step">
<div class="step-num">Step 6.5</div>
<h4>Select payment and calculate fees</h4>
<ol>
<li>Scroll to the <strong>"Payment Method"</strong> section</li>
<li>Click the <strong>"Select Payment Account"</strong> dropdown and choose the credit card for filing fees</li>
<li>Click the <strong>"Calculate Fees"</strong> button</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The total fee amount appears on screen</div>
<div class="callout callout-stumble">⚠️ Stumble: If you get an error after clicking "Calculate Fees," go back and review all party fields for typos or missing data.</div>
</div>
</div>
<!-- Phase 7 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-7);">7</div>
<div class="phase-title">Review and Submit</div>
</div>
<div class="step">
<div class="step-num">Step 7.1</div>
<h4>Gather the courtesy email</h4>
<ol>
<li>Switch to your Filevine window</li>
<li>Click on the <strong>"Vitals"</strong> section in the left sidebar</li>
<li>Locate the <strong>project email address</strong> and copy it (Ctrl+C / Cmd+C)</li>
</ol>
</div>
<div class="step">
<div class="step-num">Step 7.2</div>
<h4>Enter the courtesy email and verify</h4>
<ol>
<li>Switch back to the eLegal window</li>
<li>Scroll to the <strong>"Courtesy Email Notice"</strong> field and paste the project email address</li>
<li>Scroll to the bottom of the form and check the box: <strong>"I have verified my filing information"</strong></li>
</ol>
</div>
<div class="step">
<div class="step-num">Step 7.3</div>
<h4>Submit</h4>
<ol>
<li>Click the <strong>"Submit Filing"</strong> button</li>
<li>Note the <strong>Filing ID</strong> and <strong>Case Number</strong> that appear — write these down or take a screenshot</li>
<li>Mark in your Filevine project notes (in "Dates & Deadlines") that the filing has been submitted and note the Filing ID</li>
</ol>
<div class="callout callout-sees">✅ What you should see: A confirmation message, and the filing status changes to <strong>"Pending"</strong></div>
</div>
</div>
<!-- Phase 8 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-8);">8</div>
<div class="phase-title">Retrieve Accepted Documents</div>
</div>
<div class="step">
<div class="step-num">Step 8.1</div>
<h4>Wait for the acceptance email</h4>
<ol>
<li>After submitting, wait for an email from eLegal with the subject: <strong>"Filing ID [ID] Accepted on [Case Number] — [Case Name]"</strong></li>
</ol>
<div class="callout callout-stumble">⏱ Expected timing: The email typically arrives within <strong>515 minutes</strong>. In some cases, up to 30 minutes. If not received after 30 minutes, check spam/junk folder.</div>
</div>
<div class="step">
<div class="step-num">Step 8.2</div>
<h4>Open the acceptance email</h4>
<ol>
<li>In your email client, locate and click on the acceptance email</li>
<li>The email body will state that documents could not be attached (due to size limits) with a <strong>"Click here"</strong> link to view/download filed copies</li>
<li>Click the <strong>"Click here"</strong> link</li>
</ol>
</div>
<div class="step">
<div class="step-num">Step 8.3</div>
<h4>Log in to eLegal (again)</h4>
<ol>
<li>A new browser tab opens to the eLegal login page</li>
<li>Enter your email and password, click <strong>"Login"</strong></li>
</ol>
<div class="callout callout-sees">✅ What you should see: A page titled <strong>"Filing [ID Number] — Accepted"</strong></div>
</div>
<div class="step">
<div class="step-num">Step 8.4</div>
<h4>Download each accepted document</h4>
<ol>
<li>You will see a table listing filed documents with "Accepted" status and a <strong>"View"</strong> icon (eye symbol) next to each</li>
<li><strong>For each document in the list:</strong>
<ul style="margin-top:0.3rem; padding-left:1em;">
<li>Click the <strong>"View"</strong> eye icon</li>
<li>In the PDF viewer, click the <strong>"Download"</strong> button (downward arrow) in the top right</li>
<li>Choose your Downloads folder and click <strong>"Save"</strong></li>
<li>Close the PDF viewer</li>
</ul>
</li>
</ol>
<div class="callout callout-pitfall">⚡ Pitfall: Do not skip any document. All filed documents should be downloaded and archived.</div>
<div class="callout callout-stumble">⚠️ Stumble: If you accidentally click "Add a Case" instead, close that window and go back to the filing acceptance page.</div>
</div>
</div>
<!-- Phase 9 -->
<div class="phase">
<div class="phase-header">
<div class="phase-num" style="background: var(--phase-9);">9</div>
<div class="phase-title">Archive to Filevine</div>
</div>
<div class="step">
<div class="step-num">Step 9.1</div>
<h4>Upload documents to the correct folder</h4>
<ol>
<li>In Filevine, navigate to <strong>"Documents"</strong><strong>"1. Pleadings & Filed Docs"</strong></li>
<li>Select all the downloaded eLegal documents from your Downloads folder</li>
<li>Drag and drop them into the "1. Pleadings & Filed Docs" folder in Filevine</li>
</ol>
<div class="callout callout-sees">✅ What you should see: An "Uploading [N] item(s)" progress bar at the bottom, then the files appear in the folder</div>
<div class="callout callout-pitfall">⚡ Pitfall: Double-check you are uploading to "1. Pleadings & Filed Docs." Uploading to the wrong folder can cause confusion for team members.</div>
</div>
<div class="step">
<div class="step-num">Step 9.2</div>
<h4>Update the case number</h4>
<ol>
<li>In the Filevine sidebar, click on <strong>"Dates & Deadlines"</strong></li>
<li>Find the field labeled <strong>"Case Number"</strong> under "Complaint Info"</li>
<li>Copy the case number from one of your downloaded eLegal documents (or your notes from Phase 7) and paste it in</li>
</ol>
</div>
<div class="step">
<div class="step-num">Step 9.3</div>
<h4>Update the filing date</h4>
<ol>
<li>Find the field labeled <strong>"Date Case Filed"</strong> with a calendar icon</li>
<li>Click the calendar and select the correct filing date (from the eLegal acceptance page or email)</li>
</ol>
<div class="callout callout-sees">✅ What you should see: The selected date appears in the field</div>
</div>
<div class="step">
<div class="step-num">Step 9.4</div>
<h4>Final verification</h4>
<ol>
<li>Review all entered data: case number, filing date, and document list</li>
<li>Verify no error messages appear anywhere on the page</li>
<li>Filevine saves changes automatically — no explicit "Save" button is needed</li>
</ol>
<div class="callout callout-sees">✅ The workflow is now complete.</div>
</div>
</div>
<!-- Quick Reference Table -->
<div class="table-section">
<h2>Quick Reference — Where to Find Each Field</h2>
<table>
<thead>
<tr><th>Field</th><th>Where to Find the Data</th></tr>
</thead>
<tbody>
<tr><td><strong>Property Address, City, State, Zip</strong></td><td>Complaint PDF — page 1</td></tr>
<tr><td><strong>Damages amount</strong> (for Limited vs Unlimited)</td><td>Complaint PDF — top-right corner, page 1</td></tr>
<tr><td><strong>Defendant Name(s), AKA/DBA</strong></td><td>Filevine → Documents section</td></tr>
<tr><td><strong>Case Type</strong></td><td>Determined by property type + damages amount</td></tr>
<tr><td><strong>Courthouse</strong></td><td>Auto-populated from zip code selection</td></tr>
<tr><td><strong>Courtesy Email</strong></td><td>Filevine → Vitals section</td></tr>
<tr><td><strong>Filing ID, Case Number</strong></td><td>eLegal confirmation screen + acceptance email</td></tr>
<tr><td><strong>Filing Date</strong></td><td>eLegal acceptance page or email</td></tr>
</tbody>
</table>
<h2>Common Errors and How to Fix Them</h2>
<table>
<thead>
<tr><th>Error</th><th>Likely Cause</th><th>Fix</th></tr>
</thead>
<tbody>
<tr>
<td><strong>"We cannot save because you are missing required fields"</strong></td>
<td>Forgot a court, case type, or party role</td>
<td>Go back and fill in all blank required fields (marked with asterisk *)</td>
</tr>
<tr>
<td><strong>Generic fee calculation error</strong></td>
<td>Typo in party name, missing address line, or incomplete data</td>
<td>Review every party field for accuracy — check names, addresses, and roles</td>
</tr>
<tr>
<td><strong>Court rejects the filing</strong></td>
<td>Wrong document type selected (e.g., Summons uploaded as Complaint)</td>
<td>Delete the incorrect file, re-select the correct Document Type, and re-upload</td>
</tr>
<tr>
<td><strong>"Limited" vs "Unlimited" confusion</strong></td>
<td>Not checking damages amount in Complaint</td>
<td>Read the damages figure: over $35,000 = Unlimited; $10,000$35,000 = Limited</td>
</tr>
<tr>
<td><strong>No acceptance email after 30 min</strong></td>
<td>Email delay or spam filtering</td>
<td>Check thoroughly, including spam/junk. If still missing, log into eLegal directly to check status.</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>