• Amul
  • NEWBIE
  • 302 Points
  • Member since 2008
  • Sr. sfdc Consultant


  • Chatter
    Feed
  • 9
    Best Answers
  • 1
    Likes Received
  • 1
    Likes Given
  • 19
    Questions
  • 155
    Replies
Hi all, I have a requirement custom lead conversion process here my lead and Opportunity is custom object please help me out in this particular area
User-added image
please look at my above Image it shows how my page is breaking on my Visualforce PDF page, Here I want my entire 3rd row should go to next page without breaking in the middle.

So please find the code related to above concern:
<table style="font-size:80%;*page-break-inside:avoid*" border="1px" cellpadding="0" cellspacing="0" height="100%" width="100%​">

 
Hello,

I have below use case to execute.

I have a standard button on opportunity, to clone with and without products.
I want to add an option to this clone button. like do XYZ, if user chooses this XYZ, it will execute few actions. if they choose the standard options, it remains the same.

Thank you for suggestions !
Hi, I am fairly new to Salesforce and this community, so please bare with me. On our case object, we have a field calls "Days Open" that counts when the case is not in the "Closed" status. However, we have added a status called "Pending" and I have run into a bit of a wall. I talked with SF Support and they suggested I turn to this community.

We want the "Days Open" counter to only count when the case is in "Open" status. Then for the counter to stop when it's moved to "Pending" and then start up again if moved back to "Open" and finally when the case is "Closed" to leave the counter in the final number. Meaning if the case is in open for 5 days, the days open counter says 5; then if I move it to pending it stays at 5 and then if I move it back to open for 3 more days, it would say 8. Then when I close the case, the counter still says 8. Any guidance at all would be appreciated and please let me know if I need to clarify anything further!
User-added image

Not able to define sharing set for Community underCommunity Cloud. After clicking on update Sharing Set. getting blank. Its not working in any browser.
Hiring Salesforce Administrator in Singapore (Flexible Work Arrangements, Part-Time)
 
About HNWI Private Limited
You Deliver, We Grow
 
As a wealth consultancy firm in Singapore, we have been serving our clients with bespoke wealth solutions since 2012. 
 
Our Mission
We strive to improve the quality of life of our clients, employees, communities and shareholders.
 
Our Vision
We aim to be one of the most respected firms in Asia, delighting our corporate and private clients.
 
Our Core Values
Integrity
Respect
Open communication
Teamwork
Results Driven
Creating Positive and Sustainable Impact
 
For more information about us, please visit our website.
www.hnwi.com.sg
www.facebook.com/hnwi.com.sg/
 
Job responsibilities
Our Marketing Services department uses Salesforce Sales Cloud Spring 2017 Enterprise version and plug-in Apps from Salesforce AppExchange, e.g. Vision-e Scan, MailChimp, Eventbrite, etc, as the marketing automation solution i.e. automating the processes on lead generation, lead management, event management, etc
Collect and document requirements and processes from users
Analyze user requirements and issues
Scoping, planning, development, implementation, managing, configuration, testing, maintenance, administration, enhancement and integration of Salesforce and related applications
Create and customize standard and custom objects including fields, page layouts, security rules, workflow, validation rules, automated alerts, email generation, processes, queries, etc
create new users, customize, implement and maintain user, profiles, security settings, roles, data sharing rules, assignment rules, license types, permission sets, etc
Improve data security
Assess training needs; develop, maintain and enhance training materials and user documentation e.g. processes, policies, application configuration
Provide training to end users
User and technical support; trouble shooting
Database management e.g. list acquisition, importing and exporting data, list unsubscribes, data organization, storage and backup
Ensure data quality and integrity through de-duplication, standardization, verification
Design, develop and maintain dashboards and reports e.g. campaign performance measurement (contribution to pipeline and revenue), customer-level analysis, segmentation analysis and customer profiling analysis
Complying Salesforce governance guidelines
Auditing user practices to ensure compliance
Managing relationship with vendors and service providers on Salesforce-related matters e.g. application roadmap, planned enhancements and updates
Conduct research and analysis on Salesforce-related products, services and applications in order to justify buying decisions
Liaising and meeting with stakeholders and clients is required
 
 
JOB APPLICATION PROCESS
If you are interested and qualified, we invite you to submit a completed online form shown below:
https://goo.gl/forms/UPJ3BJlvRUuBoqg42
Please do not send any resume to us before we request for it. 
If you are shortlisted, we will request for your resume by email.  We apologise that only shortlisted applicants will be notified.
We offer a competitive total remuneration and benefits package to our team members (conditions apply):
 
Flexible work arrangement for our people to achieve better work-life harmony
when there is no meeting, our team members have the freedom of choice when and where they work
Enjoy your holidays any time as long as the team can achieve business objectives and address business needs
Conducive environment for continuous improvement
Opportunities for rotation of duties
Usage of swimming pool / gym
Snacks / fruits / drinks would be provided during some meetings
Employee Benefits Allowance – 15% of basic pay
Performance incentives and awards
Discretionary incentive
Laptop
Mobile phone
Dining membership at 5 star hotel
Gym membership
Wellness programs
Team appreciation events at 5 star hotels or equivalent
Vouchers / tickets
Movie
Event
Shopping
Food & beverage
Travel
Hotel stay
Air ticket
Tour package
HI All 

Looking for a good "allrounder"  for Project support in Global Roll out, 8-9 month contract experienced Business Analyst prefered . Supporting live users, writing requirments, testing, project planning and follow up etc.

Thanks
 
Great new opportunity in a dynamic and growing tech company located in Toronto, Canada - looking for a skilled and energetic Salesforce Developer!

http://touchbistro.applytojob.com/apply/wnoCH6jysr/Salesforce-Developer

-TB
Hello,

I would like some help to bulkify the code bellow:
 
for (Trip__c trip : trigger.new )
{
	List<Trip__c> myTrips = [Select ID from Trip__c WHERE day__c =:trip.Day__c 
                            and driver__c =:trip.driver__c];

    .... rest of the code ....
}
Thanks
 
I want to integrate CCAvenue (online payment gateway solution provider) with Salesforce CRM.
Please share some steps or sample code of integration.

Thansk!
 When ever a case has ben created it should directly create an issue  in Jira(wrote a Trigger on case object whenever a case is identified it will fire by applying some condition) now its turn to attach a file or attachment into Jira from Salesforce, myself strucked ova here.



public SalesforcetoJira(){}
//Change values in this class according to you JIRA/Salesforce coordinates
public String baseUrl = '';   // Base URL of your JIRA instance
public String username = ''; // JIRA username
public String password = ''; // JIRA password // Constructs Basic Http Authentication header from provided credentials
public String authHeader(){ Blob headerValue = Blob.valueOf(username+':'+password); return 'Basic ' + EncodingUtil.base64Encode(headerValue);
}
public SalesforcetoJira(JiraUrl,String objectType,String projectKey,String issueType,string summary,string description)
{
HttpRequest req = new HttpRequest();
Http http = new Http();
req.setMethod('GET');
//Set HTTPRequest header properties
req.setHeader('Accept', 'application/json');
req.setHeader('Content-Type','application/json');
Blob headerValue = Blob.valueOf(username+':'+password);
req.setHeader('Authorization','Basic '+ EncodingUtil.base64Encode(headerValue));
req.setEndpoint(baseUrl);
String CreateIssueJsonJIra= '{"fields": {"project":{"key": " "},"summary":" ","description":" " ,"issuetype":{"name": "Bug"}}} ';
String JSONData = JSON.serializePretty(CreateIssueJsonJIra); r
eq.setBody(CreateIssueJsonJIra);
system.debug('after response....'+CreateIssueJsonJIra);
try{
//Execute web service call here
HTTPResponse res = http.send(req);
String ResponseJsonString = res.getBody();
map<string,string> attachment= (map<string,string>)JSON.deserializeUntyped(ResponseJsonStringJIra);
system.debug('after response...'+attachment);
system.debug('after response...'+attachment.get('id'));
System.debug('ResponseJsonStringJIra'+ResponseJsonStringJIra);
JSONParser parser = JSON.createParser(ResponseJsonStringJIra);
}
}
catch(System.CalloutException e)
{
System.debug('Callout error: '+ e);
}
}


I appreciate any help.

 
We are currently exploring Survey Force to capture customer feedback on case closure. We would like to link the survey responses to Account level as well. Currently it is linked only to Contact or Case. Is it possible to link to Account please share if someone has already done this.
Went through all the posts on Survey Force Error on Authorization required but could get it working in my set up. 
The problem is happening when i define a custom field under Survey Taken object and build a Master-Detail Relationship with Case object. When I do this, the contact is not able to submit the survey get the error, "Authorization is required"
If I remove this custom field or change the Data type to Lookup, it works perfectly.

I have checked many times on the site guest user profile. The VF pages are associated properly. The permissions are set properly for Case, Account and Contact objects, sharing rules are also defined but still i keep on getting Authorization error

Can some one help to see where the problem is and how to fix it?

Regards
Deepak