Added content.

- Theory assignments
- Notes
- Practical
- Question Papers
- DISCLAIMER and motto files
Lastly, updated README.

Stored using LFS:
- Practical/Assignment-1/AWS EC2 - User Guide.pdf
- Practical/Assignment-3/Bank-App-Demo.mp4
- Practical/Assignment-3/Demo-3.mp4
- Practical/Assignment-3/Salesforce Apex - Reference Guide.pdf
This commit is contained in:
K
2025-06-11 16:56:28 +05:30
parent c0c311d52b
commit 4d1029dbdb
60 changed files with 534 additions and 0 deletions
Binary file not shown.
@@ -0,0 +1,66 @@
# Objects for Accounts Management App
Problem Statement: Design and develop custom Application (Accounts Management) using Salesforce Cloud.
---
## Objects
1. Account Details
2. Contact Details
3. Activity Information
4. Case Information
---
## Fields and Relations
### Account Details
1. Fields:
- Account Name (Text)
- Account Type (Picklist: Customer, Partner, Vendor, etc.)
- Industry (Picklist: Technology, Finance, Healthcare, etc.)
- Phone (Phone)
- Address (Address)
2. Relationships:
Account Details to Contact Details: One-to-Many (One Account can have multiple Contacts)
Account Details to Activity Information: One-to-Many (One Account can have multiple Activities)
Account Details to Case Information: One-to-Many (One Account can have multiple Cases)
### Contact Details
1. Fields:
- Name (Text)
- Email (Email)
- Phone (Phone)
- Job Title (Text)
- Account (Lookup to Account)
2. Relationships:
- Contact Details to Activity Information: One-to-Many (One Contact can have multiple Activities)
- Contact Details to Case Information: One-to-Many (One Contact can have multiple Cases)
### Activity Information
1. Fields:
- Subject (Text)
- Account (Lookup to Account)
- Contact (Lookup to Contact)
- Activity Type (Picklist: Call, Meeting, Email, Task)
- Due Date (Date)
- Status (Picklist: Not Started, In Progress, Completed)
- Notes (Long Text Area)
### Case Information
1. Fields:
- Case Number (Auto Number)
- Account (Lookup to Account)
- Contact (Lookup to Contact)
- Status (Picklist: New, In Progress, Escalated, Closed)
- Priority (Picklist: Low, Medium, High)
- Description (Long Text Area)
- Created Date (Date/Time)
- Last Modified Date (Date/Time)
---
@@ -0,0 +1,48 @@
# Objects for Contact Management App
Problem Statement: Design and develop custom Application (Contact Management) using Salesforce Cloud.
---
## Objects
1. Contact Information
2. Interaction History
3. Company Details
---
## Fields and Relations
### Contact Information
1. Fields:
- Name (Text)
- Email (Email)
- Phone (Phone)
- Address (Text Area)
- Date of Birth (Date)
- Company (Text)
2. Relationships:
- Contact Information to Interaction History: One-to-Many (One contact can have multiple interactions)
- Contact Information to Company Details: Many-to-One (Multiple contacts can belong to one company)
### Interaction History
1. Fields:
- Interaction Date (Date/Time)
- Interaction Type (Picklist: Call, Email, Meeting, Other)
- Notes (Long Text Area)
- Follow-up Date (Date)
2. Relationships:
- Lookup Relationship to Contact Information (Each interaction is related to a specific contact)
### Company Details
1. Fields:
- Company Name (Text)
- Industry (Picklist: Technology, Finance, Healthcare, etc.)
2. Relationships:
- Lookup Relationship to Contact Information (A company can have multiple contacts)
---
@@ -0,0 +1,56 @@
# Objects for Online Shopping App
Problem Statement: Design and develop custom Application (Online Shopping) using Salesforce Cloud.
---
## Objects
1. Online Product
2. Product Category
3. Customer Details
4. Order Details
---
## Fields and Relations
### Online Product
1. Fields:
- Product Name (Text)
- Description (Long Text)
- Price (Currency)
- Stock Quantity (Number)
- Product Category (Picklist)
2. Relationships:
- Related to Product Category (Many-to-One)
### Product Category
1. Fields:
- Category Name (Text/Picklist)
2. Relationships:
- Related to Online Product (One-to-Many)
### Customer Details
1. Fields:
- Name (Text)
- Email (Email)
- Phone Number (Phone)
- Address (Text Area)
2. Relationships:
- Related to Orders Details (One-to-Many)
### Order Details
1. Fields:
- Order Number (Auto-Number)
- Order Date (Date/Time)
- Total Amount (Currency)
- Status (Picklist: Pending, Shipped, Delivered, Cancelled)
2. Relationships:
- Related to Customer Details (Many-to-One)
---
Binary file not shown.