• Ghulam
  • NEWBIE
  • 60 Points
  • Member since 2016
  • Salesforce Analyst
  • Polestar Solutions & Services India LLP

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 12
    Questions
  • 26
    Replies
Hi everyone,

How can I integrate google calendar with salesforce calendar??

Thanks,
Ghulam
Hi everyone,
I have a problem when i check challenge it gives an error:
Challenge Not yet complete... here's what's wrong:
The Lead object does not display the formula fields correctly. Tip: check the requirements again and make sure you have the correctly forumlas and their values.

my formulas are below that are working currect but i unable to pass challenge

Lead Quality helper:

IF(ISBLANK(Email), 0, 1) +
IF(ISBLANK(Phone), 0, 1) +
IF(ISBLANK(Company), 0, 1) +
IF(ISBLANK(Title), 0, 1) +
IF(ISPICKVAL(Industry, ""), 0, 1)

Lead Quality:

IF(Lead_Quality_Helper__c=1, IMAGE("/img/samples/stars_100.gif","1 star"),
IF(Lead_Quality_Helper__c=2, IMAGE("/img/samples/stars_200.gif","2 stars"),
IF(Lead_Quality_Helper__c=3, IMAGE("/img/samples/stars_300.gif","3 stars"),
IF(Lead_Quality_Helper__c=4, IMAGE("/img/samples/stars_400.gif","4 stars"),
IF(Lead_Quality_Helper__c=5, IMAGE("/img/samples/stars_500.gif","5 stars"),IMAGE("/img/samples/stars_000.gif","0 stars"))))))

I am not understanding whats wrong with this, help me to pass challenge.

Thanks,
Ghulam
 
Hi everyone,

How to enable Home tab as landing tab in Salesforce Setup  means If i login to salesforce it takes me to Home tab on setup page.
earlier I have lost my Home Landing tab from Setup and for last few hours i trying to customize it but unable to do.... how can i customize it...... For detail understanding of this question,please see below snapshot..

User-added image

I just want Home tab here before Accounts tab like below image.... how can i customize it....

User-added image



thanks,
Ghulam
Hi Evereyone,

I want to create an approval process which requires approval from one user(Role : CFO ) if Assessed Loss < 5 lacs and if Assessed Loss >5 lacs than it must be approved by another user (Role: CEO).

I created this approval but its not working as expected... see below..

approval snapshot
 
help me,if anyone can do....

Thanks,
Ghulam
 
Hi everyone,

I have created a report with some fields and I have created a formula in report using Report Formulas(Maximum limit of Liability that display  minimum value of all other fields). see below--

User-added image

This report is saved and "Maximum limit of liability " is available in this report, But when I run this report then "Maximum limit of liability " is not available in report, see below---

User-added image

Please help me.. to display "Maximum limit of liability " after run report.

Thanks in Advance,
Ghulam
Hi Everyone,

I have two custom objects.. one is Claim__c(Master) and other is Labour_cost__c(Child).
I have a formula field   Deprecition_amount__c on Labour_cost__c and one number field   Depreciation_Reimbursed__c on Claim__c.

I want to calculate sum of Deprecition_amount__c  which will display sum on Depreciation_Reimbursed__c on Claim__c  for each record.


Thanks in Advance.......
Ghulam
 
Hi everyone,

How can upload an image using custom field when i click on browse.. or insert image ,it can allow to choose an image from your computer or local system.
It just like when we upload a profile picture.
or any other way just like when we upload a picture in Discussion Forums and click on image symbol it will open a new window 
like below---

User-added image  

here we can click on Browse and we can select any image from our computer or local system...

Thanks in advance,
Ghulam
 
Hi everyone,

I am trying to create a process which will send an email if

FirstName is not Null.

I tried but could not do... please anyone help me.

Thanks in advance,
Ghulam
 
Hi everyone,

How to send email to multiple leads.
Hi Everyone,
I passed the challenge.... but i got an error when creating record using flow.
Error is:  
An unhandled fault has occurred in this flow
An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information.

How can resolve this error.    
  
User-added imageUser-added image
User-added image
User-added image

Create Record  :   Variable Name--

Create Account : AccountID
Create Contact : ContactID
Create Opportunity : OpportunityID
Hi,
I have two custom object Claim__c(master) and Labour_Cost__c(detail).
They have master detail relationship.
I want to create a Trigger which prevent duplicate Name(standard field which is created default when we create any custom object) only on master object.
but we can multipe record with same Name from detail object and we select it from lookup field (Claim_Name__c) on detail object.
plz write a trigger for same.
for example: I have a record on Master Object with Name='S1 Claim' .
if i create a new record with Name 'S1 Claim' then it will display an error 'record already exists with same name'.
But,I can create multiple record with Name 'S1 Claim' from detail object.

Thanks,
Ghulam
 
  • April 28, 2016
  • Like
  • 0
Hi everyone,
can anyone know ...

How many salesforce implementations ???

Thanks in advance
  • April 21, 2016
  • Like
  • 0
Hi everyone,

How to send email to multiple leads.
Hi Everyone,
I passed the challenge.... but i got an error when creating record using flow.
Error is:  
An unhandled fault has occurred in this flow
An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information.

How can resolve this error.    
  
User-added imageUser-added image
User-added image
User-added image

Create Record  :   Variable Name--

Create Account : AccountID
Create Contact : ContactID
Create Opportunity : OpportunityID
Hi everyone,

How can I integrate google calendar with salesforce calendar??

Thanks,
Ghulam
Hi everyone,

How to enable Home tab as landing tab in Salesforce Setup  means If i login to salesforce it takes me to Home tab on setup page.
earlier I have lost my Home Landing tab from Setup and for last few hours i trying to customize it but unable to do.... how can i customize it...... For detail understanding of this question,please see below snapshot..

User-added image

I just want Home tab here before Accounts tab like below image.... how can i customize it....

User-added image



thanks,
Ghulam
Hi Evereyone,

I want to create an approval process which requires approval from one user(Role : CFO ) if Assessed Loss < 5 lacs and if Assessed Loss >5 lacs than it must be approved by another user (Role: CEO).

I created this approval but its not working as expected... see below..

approval snapshot
 
help me,if anyone can do....

Thanks,
Ghulam
 
<!--campingListItem.cmp-->
<aura:component >
	<aura:attribute name="item" type="Camping_Item__c" required="true"/>

	<ui:outputText value="{!v.item.Name}" />
	<ui:outputCheckbox value="{!v.item.Packed__c}" />
	<ui:outputCurrency value="{!v.item.Price__c}" />
	<ui:outputNumber value="{!v.item.Quantity__c}" />
	<ui:button label="Packed!" press="{!c.packItem}"/>
	
</aura:component>
<!--campingListController.js-->
({
	packItem : function(component, event, helper) {
		var button = event.getSource().get("v.disabled");
		component.set("v.item.Packed__c", "true");
		component.set(button, "true");
	}
})
What am I doing wrong?

 
Hi everyone,

I have created a report with some fields and I have created a formula in report using Report Formulas(Maximum limit of Liability that display  minimum value of all other fields). see below--

User-added image

This report is saved and "Maximum limit of liability " is available in this report, But when I run this report then "Maximum limit of liability " is not available in report, see below---

User-added image

Please help me.. to display "Maximum limit of liability " after run report.

Thanks in Advance,
Ghulam
Hi Everyone,

I have two custom objects.. one is Claim__c(Master) and other is Labour_cost__c(Child).
I have a formula field   Deprecition_amount__c on Labour_cost__c and one number field   Depreciation_Reimbursed__c on Claim__c.

I want to calculate sum of Deprecition_amount__c  which will display sum on Depreciation_Reimbursed__c on Claim__c  for each record.


Thanks in Advance.......
Ghulam
 
Hi everyone,

How to send email to multiple leads.
Hi,
I have two custom object Claim__c(master) and Labour_Cost__c(detail).
They have master detail relationship.
I want to create a Trigger which prevent duplicate Name(standard field which is created default when we create any custom object) only on master object.
but we can multipe record with same Name from detail object and we select it from lookup field (Claim_Name__c) on detail object.
plz write a trigger for same.
for example: I have a record on Master Object with Name='S1 Claim' .
if i create a new record with Name 'S1 Claim' then it will display an error 'record already exists with same name'.
But,I can create multiple record with Name 'S1 Claim' from detail object.

Thanks,
Ghulam
 
  • April 28, 2016
  • Like
  • 0
GE Healthcare is looking for talented Saleforce.com individuals to help build their new team in the Center of Excellence in Krakow, Poland.

We employ more than 52,000 people worldwide and serving healthcare professionals in more than 100 countries. We believe in our strategy - and we'd like you to be a part of it. As a global leader, GE can bring together the best in science, technology, business and people to help solve one of the world's toughest challenges and shape a new age of healthcare.

Please contact me if you are interested or would like more information.
At GE Healthcare we are committed to creating the ideal workplace! Join us in Krakow, Poland: Senior Java Developer - Salesforce.com http://ow.ly/B50xU For a full list of vacancies, visit http://invent.ge/16VEAHk

 

 

Hi,

 

I have two custom object Job and Task.
They are having master detail relationship where Job(Master) --> Task(Child)

Each Job must contain multiple Tasks.

For e.g. Job Name: Prining Books

 

Task
        Task Name: Task 1
        Task Name : Task 2
       
It should not allow another record with student name as 'Task 1', because it is already available under Job.

But Task Name "Task 1" can be allowed to add under different Job (say under Job Design Graphics), simply because here Task 1 is belongs to different Job.

How to resolve this problem?

Thanks,
Devendra S