User Story
As a Salesforce Admin,
I want to create a custom object named Leave_Application__c
that is related to Teacher__c
,
so that teachers can submit leave requests and track their leave status efficiently.
Acceptance Criteria:
-
Create a custom object called Leave_Application__c
.
-
Establish a lookup relationship with Teacher__c
, allowing each leave request to be associated with a teacher.
-
Add the following fields to capture leave details:
-
Teacher (Lookup to Teacher__c
): Links the leave request to a specific teacher.
-
Leave Start Date (Date
): The first day of the leave period.
-
Leave End Date (Date
): The last day of the leave period.
-
Leave Type (Picklist
): Options should include Sick Leave
, Personal Leave
, Vacation
, and Other
.
-
Reason (Long Text Area
): Allows teachers to provide an explanation for their leave request.
-
Status (Picklist
): Values should include Pending
, Approved
, and Rejected
, with Pending
as the default.
-
Approver (Lookup to User
): Stores the user responsible for approving or rejecting the leave request.
-
Approval Date (Date
): Records the date when the leave request is approved or rejected.