- Hiral Patel 25
- NEWBIE
- 10 Points
- Member since 2020
- Sr. Developer
- xyz
-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
24Questions
-
6Replies
Return values: Less than or equal to 10%: Low Between 10% and 40%: Medium More than 40%: High
I want solution for this
Return values:
Less than or equal to 10%: Low
Between 10% and 40%: Medium
More than 40%: High
Hint: CASE statements can’t contain Boolean functions. Use IF statements instead.
Return values:
Less than or equal to 10%: Low
Between 10% and 40%: Medium
More than 40%: High
Hint: CASE statements can’t contain Boolean functions. Use IF statements instead.
- Hiral Patel 25
- January 04, 2022
- Like
- 0
- Continue reading or reply
1. Tell me about a time you work through a request that was not well-defined and what did you build?
- Tell me about a time you work through a request that was not well-defined and what did you build?
- Hiral Patel 25
- December 01, 2021
- Like
- 0
- Continue reading or reply
3. What are some limitations when working with WhoId and WhatId in Salesforce? How can you work around those?
- What are some limitations when working with WhoId and WhatId in Salesforce? How can you work around those?
- Hiral Patel 25
- December 01, 2021
- Like
- 0
- Continue reading or reply
- Hiral Patel 25
- June 29, 2021
- Like
- 0
- Continue reading or reply
Create a component student with last name,firstname,phone as attributes and invoke the student componenet in the application
Create a component student with last name,firstname,phone as attributes and invoke the student componenet in the application
- Hiral Patel 25
- June 05, 2021
- Like
- 0
- Continue reading or reply
Step not yet complete in Playful Moose Playground We couldn't find a Lightning web component named 'helloWorld'.
Hi , i finish each and every steps for create a hello world lightning web component but than i show this error please help me i try so many times
Step not yet complete in Playful Moose Playground
We couldn't find a Lightning web component named 'helloWorld'.
Step not yet complete in Playful Moose Playground
We couldn't find a Lightning web component named 'helloWorld'.
- Hiral Patel 25
- March 19, 2021
- Like
- 0
- Continue reading or reply
i got job i salesforce developer
i got job as a salesforce developer
this is job description what should i more focus ?
Job Description
Additional Skills:
• Roles and Responsibilities:
• Design and develop solutions primarily on the Salesforce platform using Apex programming language and Lightning component.
• Develop software solutions using Salesforce.com API framework, and 3rd party APIs
• Impact custom features look and feel.
• Participate in all aspects of the product development life cycle
• Collaborate closely with QA.
• Consistently applies learned processes, procedures and workflows to include (however not limited to) the software development lifecycle and/or release processes.
• Creates system requirements, performs design and analysis, coding of medium to high complexity, unit testing of core system functionality and corrects defects during various phases of testing.
• Independently install, customize and integrate commercial software packages. Facilitates root cause analysis of system issues.
• May serve as the subject matter expert on development techniques. Creates system documentation/play book and participates as a reviewer and contributor in requirements, design and code reviews.
• Provide ideas to improve system performance and impact availability and resolves complex technical design issues.
• Interact with and present to product owners throughout the development process
• Develop documentation of coding standards, training, and support
• Participate in defining best practices around report development, testing, access management, and report refresh scheduling
• Experience capturing and translating Business Requirements into technical sol
this is job description what should i more focus ?
Job Description
Additional Skills:
• Roles and Responsibilities:
• Design and develop solutions primarily on the Salesforce platform using Apex programming language and Lightning component.
• Develop software solutions using Salesforce.com API framework, and 3rd party APIs
• Impact custom features look and feel.
• Participate in all aspects of the product development life cycle
• Collaborate closely with QA.
• Consistently applies learned processes, procedures and workflows to include (however not limited to) the software development lifecycle and/or release processes.
• Creates system requirements, performs design and analysis, coding of medium to high complexity, unit testing of core system functionality and corrects defects during various phases of testing.
• Independently install, customize and integrate commercial software packages. Facilitates root cause analysis of system issues.
• May serve as the subject matter expert on development techniques. Creates system documentation/play book and participates as a reviewer and contributor in requirements, design and code reviews.
• Provide ideas to improve system performance and impact availability and resolves complex technical design issues.
• Interact with and present to product owners throughout the development process
• Develop documentation of coding standards, training, and support
• Participate in defining best practices around report development, testing, access management, and report refresh scheduling
• Experience capturing and translating Business Requirements into technical sol
- Hiral Patel 25
- March 12, 2021
- Like
- 0
- Continue reading or reply
Error: ExtensionController Compile Error: Variable does not exist: stdcontroller at line 6 column 29
Error: ExtensionController Compile Error: Variable does not exist: stdcontroller at line 6 column 29
public class ExtensionController
{
public final Account acct;
public ExtensionController(ApexPages.StandardController controller)
{
this.acct = (Account)stdcontroller.getRecord();
}
public string getGreeting()
{
return 'Hello' + acct.name + '('+ acct.id +')';
}
}
- Hiral Patel 25
- March 01, 2021
- Like
- 0
- Continue reading or reply
// Write an APEX Program to fetch All Lead Records, Based on the Lead status Supplied by the User at Run-Time
// Write an APEX Program to fetch All Lead Records, Based on the Lead status Supplied by the User at Run-Time
- Hiral Patel 25
- February 27, 2021
- Like
- 0
- Continue reading or reply
list<Contact> lstContacts =[SELECT Id,FirstName, LastName, Email, Phone, accountID FROM Contact Where accountid =: accountRecordID];
i show error in this line like Illegal assignment from List<Contact> to List<contact>
list<Contact> lstContacts =[SELECT Id,FirstName, LastName, Email, Phone, accountID FROM Contact Where accountid =: accountRecordID];
list<Contact> lstContacts =[SELECT Id,FirstName, LastName, Email, Phone, accountID FROM Contact Where accountid =: accountRecordID];
- Hiral Patel 25
- February 27, 2021
- Like
- 0
- Continue reading or reply
showing error in this code
on this code showing error (Syntax error. Extra '1')
<apex:page>
<apex:form >
<apex:pageBlock title="CALCULATOR">
First Number: <apex:inputText value="{!First number}"/><br/><br/>
Second Number : <apex:inputText value="{! Second number}" /><br/><br/>
<apex:pageBlockButtons >
<apex:commandButton value="ADD" action="{!addition}" />
<apex:commandButton value="SUB" action="{!subtraction}" />
<apex:commandButton value="DIV" action="{!division}" />
<apex:commandButton value="MULTIPLY" action="{!multiplication}" />
</apex:pageBlockButtons>
<b>Output is:<apex:outputText value="{!result}"></apex:outputText></b>
</apex:pageBlock>
</apex:form>
</apex:page>
<apex:page>
<apex:form >
<apex:pageBlock title="CALCULATOR">
First Number: <apex:inputText value="{!First number}"/><br/><br/>
Second Number : <apex:inputText value="{! Second number}" /><br/><br/>
<apex:pageBlockButtons >
<apex:commandButton value="ADD" action="{!addition}" />
<apex:commandButton value="SUB" action="{!subtraction}" />
<apex:commandButton value="DIV" action="{!division}" />
<apex:commandButton value="MULTIPLY" action="{!multiplication}" />
</apex:pageBlockButtons>
<b>Output is:<apex:outputText value="{!result}"></apex:outputText></b>
</apex:pageBlock>
</apex:form>
</apex:page>
- Hiral Patel 25
- February 23, 2021
- Like
- 0
- Continue reading or reply
write down visual force page11111
write down visual force page
CALCULATOR
First Number :: box
Second Number : : box
Result:: box
Add SUB MUL DIV
Everything in box and background color is gray Nd calcular color is red
CALCULATOR
First Number :: box
Second Number : : box
Result:: box
Add SUB MUL DIV
Everything in box and background color is gray Nd calcular color is red
- Hiral Patel 25
- February 23, 2021
- Like
- 0
- Continue reading or reply
write down visual force page
write down visual force page
CALCULATOR
First Number :: box
Second Number : : box
Result:: box
Add SUB MUL DIV
Everything in box
CALCULATOR
First Number :: box
Second Number : : box
Result:: box
Add SUB MUL DIV
Everything in box
- Hiral Patel 25
- February 23, 2021
- Like
- 0
- Continue reading or reply
- Hiral Patel 25
- February 18, 2021
- Like
- 0
- Continue reading or reply
in scheduled apex write a program any custom object every 1st saturday of the month
in scheduled apex write a program any custom object every 1st saturday of the month
in Batch apex write program to update the name field in the contact object with the level as primary
(Note : upload 500 records through dataloader)
in Batch apex write program to update the name field in the contact object with the level as primary
(Note : upload 500 records through dataloader)
- Hiral Patel 25
- February 16, 2021
- Like
- 0
- Continue reading or reply
{ con.Phone.AddError ('Pl
why i am showing this error :Variable does not exist: Phone
trigger Phone_Email_Validation on Contact (before insert)
{
if (Trigger.Isbefore && Trigger.IsInsert)
{
for (Contact con : Trigger.New)
{
if (con.Phone == Null || con.Phone == '')
{
con.Phone.AddError ('Please Enter a valid Phone Number');
}
Else
if(con.Email == Null || con.Email == '')
{
con.Email.AddError ('Please Enter a valid Email Address');
}
}
}
}
trigger Phone_Email_Validation on Contact (before insert)
{
if (Trigger.Isbefore && Trigger.IsInsert)
{
for (Contact con : Trigger.New)
{
if (con.Phone == Null || con.Phone == '')
{
con.Phone.AddError ('Please Enter a valid Phone Number');
}
Else
if(con.Email == Null || con.Email == '')
{
con.Email.AddError ('Please Enter a valid Email Address');
}
}
}
}
- Hiral Patel 25
- February 13, 2021
- Like
- 0
- Continue reading or reply
AccountTeamMember actteam = New AccountTeamMemeber();
Invalid type: AccountTeamMemeber
Variable does not exist: TeamMemeberRole
why i am showing error?
trigger AccountTeamMemberAssign on Account (after insert)
{
user u = [Select id from user where alias = 'rpate'];
for (Account acc : Trigger.New)
{
if (acc.Annualrevenue > 500000)
{
AccountTeamMember actteam = New AccountTeamMemeber();
actteam.UserId = u.Id;
actteam.AccountId = acc.Id;
actteam.TeamMemeberRole = 'Account Manager';
}
}
}
Variable does not exist: TeamMemeberRole
why i am showing error?
trigger AccountTeamMemberAssign on Account (after insert)
{
user u = [Select id from user where alias = 'rpate'];
for (Account acc : Trigger.New)
{
if (acc.Annualrevenue > 500000)
{
AccountTeamMember actteam = New AccountTeamMemeber();
actteam.UserId = u.Id;
actteam.AccountId = acc.Id;
actteam.TeamMemeberRole = 'Account Manager';
}
}
}
- Hiral Patel 25
- February 13, 2021
- Like
- 0
- Continue reading or reply
once the record was restored from recycle bin...Needs to notify the Account owner
once the record was restored from recycle bin...Needs to notify the Account owner
- Hiral Patel 25
- February 12, 2021
- Like
- 0
- Continue reading or reply
Unexpected token 'Trigger'. if(Trigger.isbefore && (Trigger.isInsert || Trigger .IsUpdate))
Unexpected token 'Trigger'. if(Trigger.isbefore && (Trigger.isInsert || Trigger .IsUpdate))
- Hiral Patel 25
- February 11, 2021
- Like
- 0
- Continue reading or reply
trigger ContactEx2_0209 on Contact (before u pdate) { for(contact con : Trigger.New) { con.description = 'Updated by --->' +userinfo.getUserName(); } }
i got this error :Variable does not exist: description
trigger ContactEx2_0209 on Contact (before update)
{
for(contact con : Trigger.New)
{
con.description = 'Updated by --->' +userinfo.getUserName();
}
}
trigger ContactEx2_0209 on Contact (before update)
{
for(contact con : Trigger.New)
{
con.description = 'Updated by --->' +userinfo.getUserName();
}
}
- Hiral Patel 25
- February 09, 2021
- Like
- 0
- Continue reading or reply
write down visual force page
write down visual force page
CALCULATOR
First Number :: box
Second Number : : box
Result:: box
Add SUB MUL DIV
Everything in box
CALCULATOR
First Number :: box
Second Number : : box
Result:: box
Add SUB MUL DIV
Everything in box
- Hiral Patel 25
- February 23, 2021
- Like
- 0
- Continue reading or reply
in scheduled apex write a program any custom object every 1st saturday of the month
in scheduled apex write a program any custom object every 1st saturday of the month
in Batch apex write program to update the name field in the contact object with the level as primary
(Note : upload 500 records through dataloader)
in Batch apex write program to update the name field in the contact object with the level as primary
(Note : upload 500 records through dataloader)
- Hiral Patel 25
- February 16, 2021
- Like
- 0
- Continue reading or reply
{ con.Phone.AddError ('Pl
why i am showing this error :Variable does not exist: Phone
trigger Phone_Email_Validation on Contact (before insert)
{
if (Trigger.Isbefore && Trigger.IsInsert)
{
for (Contact con : Trigger.New)
{
if (con.Phone == Null || con.Phone == '')
{
con.Phone.AddError ('Please Enter a valid Phone Number');
}
Else
if(con.Email == Null || con.Email == '')
{
con.Email.AddError ('Please Enter a valid Email Address');
}
}
}
}
trigger Phone_Email_Validation on Contact (before insert)
{
if (Trigger.Isbefore && Trigger.IsInsert)
{
for (Contact con : Trigger.New)
{
if (con.Phone == Null || con.Phone == '')
{
con.Phone.AddError ('Please Enter a valid Phone Number');
}
Else
if(con.Email == Null || con.Email == '')
{
con.Email.AddError ('Please Enter a valid Email Address');
}
}
}
}
- Hiral Patel 25
- February 13, 2021
- Like
- 0
- Continue reading or reply
trigger ContactEx2_0209 on Contact (before u pdate) { for(contact con : Trigger.New) { con.description = 'Updated by --->' +userinfo.getUserName(); } }
i got this error :Variable does not exist: description
trigger ContactEx2_0209 on Contact (before update)
{
for(contact con : Trigger.New)
{
con.description = 'Updated by --->' +userinfo.getUserName();
}
}
trigger ContactEx2_0209 on Contact (before update)
{
for(contact con : Trigger.New)
{
con.description = 'Updated by --->' +userinfo.getUserName();
}
}
- Hiral Patel 25
- February 09, 2021
- Like
- 0
- Continue reading or reply
create new account with type=customer direct and industry=banking and new opportunities record will be created using trigger
create new account with type=customer direct and industry=banking and new opportunities record will be created using trigger
- Hiral Patel 25
- February 09, 2021
- Like
- 0
- Continue reading or reply