-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
4Likes Given
-
24Questions
-
10Replies
How to use <apex:commandbutton> in html
How to convert the below line into HTML for Salesforce1 VF page
<apex:commandbutton style="float:centre" value="Save" action="{!saveRecord}" />
<apex:commandbutton style="float:centre" value="Save" action="{!saveRecord}" />
- srikanth challa
- October 08, 2015
- Like
- 0
- Continue reading or reply
Share Account records
Is it possible to share the Account records without being the owner of the record and also without modify all permission?
- srikanth challa
- September 03, 2015
- Like
- 0
- Continue reading or reply
Can I set Email services Email address as Organization wide Email address by any chance?
Hi Guys, Is it possible to set Email services Email address as Organization wide Email address by any chance?
- srikanth challa
- August 20, 2015
- Like
- 0
- Continue reading or reply
Is it possible to change the Status picklist field via EMail?
Hi Guys, Is it possible to change a picklist value in a custom object when a user sends an email to a particular email address something like that instead of logging into salesforce and change the status?
- srikanth challa
- August 19, 2015
- Like
- 0
- Continue reading or reply
Is it possible to translate Help Text?
Hi Guys, Is there any way to translate helptext for Custom fields?
- srikanth challa
- August 18, 2015
- Like
- 0
- Continue reading or reply
Salesforce to Salesforce Integration
Hi Guys, we Implemented salesforce to salesforce Integration between two orgs and now we want to update the record automatically when the record in the source org is changed what is the process we need to follow. As the record Id will be different between the two orgs are we supposed to update based on the external Id's?
- srikanth challa
- August 01, 2015
- Like
- 0
- Continue reading or reply
Issue in repeating table headers in the following pages for PDF(Landscape mode)
Hi Guys, for displaying the table headers in all the pages I added HTML tag
<thead>
</thead>
and added paginate
<table border="0" cellpadding="0" cellspacing="0" style="width=100%;-fs-table-paginate:paginate;">
In the 1st page the table headers are looking good but coming to the 2nd page the height got reduced and the columns are not getting displayed
but when I change the width to 75% then they are displayed with the reduced width. What exactly Am I supposed to do in order to display the table headers in all the pages with 100% width?
<thead>
</thead>
and added paginate
<table border="0" cellpadding="0" cellspacing="0" style="width=100%;-fs-table-paginate:paginate;">
In the 1st page the table headers are looking good but coming to the 2nd page the height got reduced and the columns are not getting displayed
but when I change the width to 75% then they are displayed with the reduced width. What exactly Am I supposed to do in order to display the table headers in all the pages with 100% width?
- srikanth challa
- July 28, 2015
- Like
- 0
- Continue reading or reply
How to handle double quotes " " using dataloader
Hi Guys when I upsert records using data loader which consists of double quotes Phone__c="1111111111" the field is populating without ignoring the doublequotes i.e Is it any way to ignore double quotes and load only the value which is in between the double quotes?
- srikanth challa
- June 30, 2015
- Like
- 0
- Continue reading or reply
Error using Cliq dataloader when using Bulk API
I downloaded and traced the open source java code for data loader, it seems, looking at this logic, data loader will never get thru blanks in rows when bulk option is selected.
This is how the java code works from what I learnt, the section highlighted in yellow will never let blanks work with bulk upload:
Namespace hierarchy:
\dataloader\src\main\java\com\salesforce\dataloader\action\visitor
BulkLoadVisitor.java extends DAOLoadVisitor.java
Initialize() >
loadBatch() >
createbatches() >
for (i=0; i < totalbatches().count(); i++)
{
doOneBatch()
{
for (int i = 0; i < rows.size(); i++)
{
writeRow(i)
{
for (final String column in header)
{
writeSingleColumn()
{
if (fieldValue != null)
{
// write field to sales force output
}
Else
{
Logger.warn(message(“No value provided for field {fieldname}”));
}
}
}
}
}
}
}
It seems the code will never proceed to do anything if fieldValue is blank
This is how the java code works from what I learnt, the section highlighted in yellow will never let blanks work with bulk upload:
Namespace hierarchy:
\dataloader\src\main\java\com\salesforce\dataloader\action\visitor
BulkLoadVisitor.java extends DAOLoadVisitor.java
Initialize() >
loadBatch() >
createbatches() >
for (i=0; i < totalbatches().count(); i++)
{
doOneBatch()
{
for (int i = 0; i < rows.size(); i++)
{
writeRow(i)
{
for (final String column in header)
{
writeSingleColumn()
{
if (fieldValue != null)
{
// write field to sales force output
}
Else
{
Logger.warn(message(“No value provided for field {fieldname}”));
}
}
}
}
}
}
}
It seems the code will never proceed to do anything if fieldValue is blank
- srikanth challa
- June 25, 2015
- Like
- 0
- Continue reading or reply
Trigger to notify user regarding the list of duplicate records when uploaded using a .csv file
Hi Guys Is there any way to write a trigger to notify the user regarding the duplicate records list when uploaded via .csv file from customer community portal?
- srikanth challa
- June 10, 2015
- Like
- 0
- Continue reading or reply
SAP Integration using Web Services
Hi All,
What process exactly I should use to send few fields from Salesforce to SAP when a case is 'Saved'. Please explain in detail as I did not work on Webservices anytime before
What process exactly I should use to send few fields from Salesforce to SAP when a case is 'Saved'. Please explain in detail as I did not work on Webservices anytime before
- srikanth challa
- May 18, 2015
- Like
- 0
- Continue reading or reply
Time dependent trigger
Can anyone help me to fire a trigger after 5 minutes from the record created date. I cannot acheive my requirement via workflow because my trigger is to submit for approval.
- srikanth challa
- May 13, 2015
- Like
- 0
- Continue reading or reply
Is there any way to send a feedback form to the customers?
Is there any way to send a feedback form to the customers which consists of two links 'Satisfied' and 'Dissatisfied'. Where if the customer clicks on the link then the 'Customer feed back' field should auto populate against the case number. (Note:The Customers are not the users in salesforce)
- srikanth challa
- May 04, 2015
- Like
- 0
- Continue reading or reply
Is there any way to generate custom reports in pdf format using company header and footer?
Hi Guys, we would like to generate Service History reports in our org to send them to the customers. Is there any way to generate summary reports with company header and footer?
- srikanth challa
- April 14, 2015
- Like
- 0
- Continue reading or reply
Is there any way to enable multiple currencies?
Hi guys, Is there any way to enable currencies according to the locale settings in the user record?
- srikanth challa
- April 10, 2015
- Like
- 0
- Continue reading or reply
Is there any way to send a notification to a rep in chatter when a case is created ?
Hi Guys,
I would like to send a service notification for the sales reps in chatter when a case is created. I know that the workflow doesn't have this functionality. Is there any way to do it?
I would like to send a service notification for the sales reps in chatter when a case is created. I know that the workflow doesn't have this functionality. Is there any way to do it?
- srikanth challa
- March 20, 2015
- Like
- 0
- Continue reading or reply
How to create a report in PDF using visual force?
Presently I am using the following syntax but I am getting a blank pdf page with this. Can anyone please help me
<apex:page standardController="Report" renderAs="pdf">
<apex:iframe src="/00OK0000000TZ2u"/>
</apex:page>
<apex:page standardController="Report" renderAs="pdf">
<apex:iframe src="/00OK0000000TZ2u"/>
</apex:page>
- srikanth challa
- March 18, 2015
- Like
- 0
- Continue reading or reply
Is there any way to change the Status Field(Picklist) on a Custom object by sending an email to salesforce org?
Hi Everyone, when the Status is 'Assigned' workflow sends an email to the owner of the record that the Work order is assigned to him and Is there any way that he just reply to that email with "Accepted" text so that the status field of the object will be changed to Accepted?
- srikanth challa
- March 12, 2015
- Like
- 0
- Continue reading or reply
How to calculate total count of the field with a particular status in formula field
Can we calculate total number of records with Warranty Status = 'INACTIVE' in the formula field. If NO could you guys please suggest me a best way to do it?
- srikanth challa
- March 06, 2015
- Like
- 0
- Continue reading or reply
Can we adjust the space for each day in the Team calendar?
Is it possible to give equal space for all the days in team calendar view because now for Sunday and Saturday it got very less space and for Monday there is hell lot space.
- srikanth challa
- March 03, 2015
- Like
- 0
- Continue reading or reply
How to use <apex:commandbutton> in html
How to convert the below line into HTML for Salesforce1 VF page
<apex:commandbutton style="float:centre" value="Save" action="{!saveRecord}" />
<apex:commandbutton style="float:centre" value="Save" action="{!saveRecord}" />
- srikanth challa
- October 08, 2015
- Like
- 0
- Continue reading or reply
Can I set Email services Email address as Organization wide Email address by any chance?
Hi Guys, Is it possible to set Email services Email address as Organization wide Email address by any chance?
- srikanth challa
- August 20, 2015
- Like
- 0
- Continue reading or reply
Is it possible to change the Status picklist field via EMail?
Hi Guys, Is it possible to change a picklist value in a custom object when a user sends an email to a particular email address something like that instead of logging into salesforce and change the status?
- srikanth challa
- August 19, 2015
- Like
- 0
- Continue reading or reply
Trigger to notify user regarding the list of duplicate records when uploaded using a .csv file
Hi Guys Is there any way to write a trigger to notify the user regarding the duplicate records list when uploaded via .csv file from customer community portal?
- srikanth challa
- June 10, 2015
- Like
- 0
- Continue reading or reply
How to create a report in PDF using visual force?
Presently I am using the following syntax but I am getting a blank pdf page with this. Can anyone please help me
<apex:page standardController="Report" renderAs="pdf">
<apex:iframe src="/00OK0000000TZ2u"/>
</apex:page>
<apex:page standardController="Report" renderAs="pdf">
<apex:iframe src="/00OK0000000TZ2u"/>
</apex:page>
- srikanth challa
- March 18, 2015
- Like
- 0
- Continue reading or reply
How to Get Latitude and Longitude Values of GeoLocaton field from Apex(Trigger)
Hi all,
How to get Latitude and Longitude Values dynamically to update while inserting Records into Object
Thanks in Advance.
How to get Latitude and Longitude Values dynamically to update while inserting Records into Object
Thanks in Advance.
- mahi1
- December 11, 2014
- Like
- 2
- Continue reading or reply
How to write the logic for time delay in Trigger?
Hi,
There are two objects Contact and Custom Object. When ever we send Email from Email Services Email address along with Resume.
In Salesforce objects when the resume is parsing object the Picklist value will be New. In between the Picklist value will be In Process. When the Picklist Value changes to 'Done' the Contact gets created.
For this resume processing it will take around 5 minutes.
So would like to know if there is a workaround where the Trigger waits until the picklist values changes to done using time delay logic.
Thanks in advance!!
Chaitanya
There are two objects Contact and Custom Object. When ever we send Email from Email Services Email address along with Resume.
In Salesforce objects when the resume is parsing object the Picklist value will be New. In between the Picklist value will be In Process. When the Picklist Value changes to 'Done' the Contact gets created.
For this resume processing it will take around 5 minutes.
So would like to know if there is a workaround where the Trigger waits until the picklist values changes to done using time delay logic.
Thanks in advance!!
Chaitanya
- Krishna Chaitanya Hota
- November 18, 2014
- Like
- 1
- Continue reading or reply
Need some workaround
Hi
We have installed Service Max managed package.
We are getting trigger error on WorkOrder object while creating a record
on WorkOrder Object.We need a help or workaround to solve this issue.
Trigger Error below:
SVMXC.WORD_Trigger1:execution of BeforeInsert caused by: System.NullPointerException:
Attempt to de-reference a null object:(SVMXC)
We have installed Service Max managed package.
We are getting trigger error on WorkOrder object while creating a record
on WorkOrder Object.We need a help or workaround to solve this issue.
Trigger Error below:
SVMXC.WORD_Trigger1:execution of BeforeInsert caused by: System.NullPointerException:
Attempt to de-reference a null object:(SVMXC)
- dev_sfdc1
- September 26, 2014
- Like
- 1
- Continue reading or reply
How to Get Latitude and Longitude Values of GeoLocaton field from Apex(Trigger)
Hi all,
How to get Latitude and Longitude Values dynamically to update while inserting Records into Object
Thanks in Advance.
How to get Latitude and Longitude Values dynamically to update while inserting Records into Object
Thanks in Advance.
- mahi1
- December 11, 2014
- Like
- 2
- Continue reading or reply
How to write the logic for time delay in Trigger?
Hi,
There are two objects Contact and Custom Object. When ever we send Email from Email Services Email address along with Resume.
In Salesforce objects when the resume is parsing object the Picklist value will be New. In between the Picklist value will be In Process. When the Picklist Value changes to 'Done' the Contact gets created.
For this resume processing it will take around 5 minutes.
So would like to know if there is a workaround where the Trigger waits until the picklist values changes to done using time delay logic.
Thanks in advance!!
Chaitanya
There are two objects Contact and Custom Object. When ever we send Email from Email Services Email address along with Resume.
In Salesforce objects when the resume is parsing object the Picklist value will be New. In between the Picklist value will be In Process. When the Picklist Value changes to 'Done' the Contact gets created.
For this resume processing it will take around 5 minutes.
So would like to know if there is a workaround where the Trigger waits until the picklist values changes to done using time delay logic.
Thanks in advance!!
Chaitanya
- Krishna Chaitanya Hota
- November 18, 2014
- Like
- 1
- Continue reading or reply
Need some workaround
Hi
We have installed Service Max managed package.
We are getting trigger error on WorkOrder object while creating a record
on WorkOrder Object.We need a help or workaround to solve this issue.
Trigger Error below:
SVMXC.WORD_Trigger1:execution of BeforeInsert caused by: System.NullPointerException:
Attempt to de-reference a null object:(SVMXC)
We have installed Service Max managed package.
We are getting trigger error on WorkOrder object while creating a record
on WorkOrder Object.We need a help or workaround to solve this issue.
Trigger Error below:
SVMXC.WORD_Trigger1:execution of BeforeInsert caused by: System.NullPointerException:
Attempt to de-reference a null object:(SVMXC)
- dev_sfdc1
- September 26, 2014
- Like
- 1
- Continue reading or reply
Using Cliq to Clear Fields
I have been using Cliq as a way to automate my salesforce updates. Everything is working great, but it doesn't seem to clear fields. When I use the Apexloader UI, I have the settings set to "Bulk API". With this setting I can clear fields by inserting "#N/A" into the fields. When using Cliq, however, it will populate the field with "#N/A" instead of clearing the field. Does anyone know how to configure click to work the same as when using the "Bulk API" setting?
- jason.mesick1.3904938006993005E12
- February 07, 2014
- Like
- 2
- Continue reading or reply