more starter prompts

This commit is contained in:
Jeff Douglas 2025-12-11 15:39:09 -05:00
parent deae018c06
commit 44a77cb1d8
11 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,9 @@
---
name: Account Test Data Generator
description: Create an Apex script that generates 10 realistic Account records with complete business data including name, account number, type, industry, annual revenue, ticker symbol, and number of employees. Includes documentation on how to execute the script anonymously.
tags: salesforce, apex, data-generation, test-data, developer, admin
---
Create an apex script that I can run anonymously to insert 10 account records with name, account number, type, industry, annual revenue, ticker symbol and number of employees.
Generate a document with instruction on how to run the script.

Binary file not shown.

View File

@ -0,0 +1,7 @@
---
name: Account Layout Field Enhancement
description: Add Type and Industry fields to the Account page layout for better data organization and reporting.
tags: salesforce, account, page-layout, admin, data-management
---
Add Type and Industry fields to the Account Layout, placing them below Account Name.

View File

@ -0,0 +1,7 @@
---
name: Lead Source Picklist Enhancement
description: Add a new 'Referral' value to the Lead Source picklist on the Lead object for better lead tracking.
tags: salesforce, lead, picklist, data-management, admin
---
Add a new value 'Referral' to the Lead Source picklist on the Lead object.

View File

@ -0,0 +1,7 @@
---
name: High Priority Case Assignment Rule
description: Create an assignment rule that automatically routes high priority Cases to a specific queue or user for immediate attention.
tags: salesforce, case-management, assignment-rules, automation, admin
---
Add an Assignment Rule that automatically assigns new Cases with Priority = High to a specific queue or user.

View File

@ -0,0 +1,7 @@
---
name: Opportunity Days Open Formula
description: Create a formula field on Opportunity that calculates the number of days since the record was created.
tags: salesforce, opportunity, formula-field, automation, admin
---
Add a formula field on Opportunity called Days_Open__c that calculates TODAY() - DATEVALUE(CreatedDate).

View File

@ -0,0 +1,7 @@
---
name: Account Editor Permission Set
description: Create a permission set that grants edit access to Account records and assign it to the current user.
tags: salesforce, permission-set, security, admin, user-management
---
Create a permission set Account_Editor with Edit access to Account and assign it to your current user.

View File

@ -0,0 +1,7 @@
---
name: Account Opportunity Count Roll-Up
description: Create a roll-up summary field on Account that counts related Opportunities for better relationship tracking.
tags: salesforce, account, opportunity, rollup-summary, automation, admin
---
Create a Roll-Up Summary on Account that counts the number of related Opportunities.

View File

@ -0,0 +1,7 @@
---
name: Opportunity Close Date Validation
description: Create a validation rule on Opportunity that prevents saving when the Close Date is in the past.
tags: salesforce, opportunity, validation-rule, data-quality, admin
---
Add a validation rule on Opportunity that prevents saving when Close Date < TODAY().

View File

@ -0,0 +1,7 @@
---
name: Apex Unit Test Generator
description: Create a comprehensive test class for any Apex class with test data setup and result verification.
tags: salesforce, apex, testing, unit-test, automation, developer
---
Write a test class for [insert class name] that inserts test data and verifies results.

View File

@ -0,0 +1,7 @@
---
name: Run All Apex Tests
description: Execute all Apex tests in the org and display a comprehensive summary including total tests run, number passed, and overall code coverage percentage.
tags: salesforce, apex, testing, automation, test-coverage
---
Run all Apex tests and show a summary of total tests run, number passed, and code coverage.