Latest Posts

replace all file names within a folder from cmd

for %a in (".\*.*") do ren "%~a" "%~Na.profile-meta.xml%~Xa"Best regardsRajendar+91 9177719594Certified Salesforce Platform Developer Ihttps://rajendarb-developer-edition.ap5.force.com ...

product management challenges

product management challenges:Understanding customer needs: Product managers need to work closely with customers to understand their needs and pain points. This can be a challenge because customers often have different needs and priorities.Balancing short-term and long-term goals: Product managers need to balance short-term goals, such as hitting revenue targets, with long-term goals, such as building a sustainable product...

communications cloud

Communications Cloud Foundations:What is the Communications Cloud?: The Communications Cloud is a suite of tools and technologies that enable businesses to engage with customers across a variety of channels, including email, SMS, social media, and chat.Key features of the Communications Cloud: Some key features of the Communications Cloud include automated campaigns, personalization, segmentation, and reporting. These features allow...

telecommunications industry

various topics related to the telecommunications industry. Here is one of the best points from the module:Digital Transformation: The telecommunications industry is undergoing a massive digital transformation as more customers demand digital and mobile services. Telecommunications companies need to adapt and transform their business models, products, and services to meet the changing needs of customers and remain competitive...

industries cpq

The "Industries CPQ Foundations" module on Salesforce Trailhead provides an overview of Configure, Price, Quote (CPQ) and its application in various industries. Here are some of the best points from the module:What is CPQ: CPQ is a sales automation tool that helps companies accurately configure, price, and quote complex products and services. It enables sales teams to quickly...

interview notes

Trigger Apptrigger on Applicaton__C(after insert, after update, after delete, after undelete){ List<Id> conIdList = new List<Id>(); for(Applicaiton__c app:trigger.new){ conIdList.add(app.contact__c); } //List<Contact> contactList = [select id,count__c,() from contact where id in : conIdList]; Map<Contact,Number> contactList = new List<>(Contact); for(Applicaiton__c appList : [select id,contact__c from Applicaiton__c where contact__c in : conIdList]){ } }Best regardsRajendar+91 9177719594Certified Salesforce Platform Developer Ihttps://rajendarb-developer-edition.ap5.force.com ...

interview notes

<template> <template if:true={sendData}> <c-child-component message='more than 100'/> </template></template>class parentComp extends lightningelement{ parentId='xxxxxxx'; parent; sendData = false; connectedCallback(){ getParentRecord(data,error){ parent = data; if(parent.value>100){ sendData=true; } } }}trigger oppTrigger on Opportunity(after Insert, after update){ List<opportunityLineItem> oplList = [select id,status,opportunityId from opportunitylineitem where opportunityId in : trigger.new]; List<opportunityLineItem> oplListUpdate = new List<opportunityLineItem>(); for(opportunityLineItem opl: oplList ){ if(trigger.newmap.get(opl.opportunityId).amount>=50000){ opl.status=won; oplListUpdate.add(opl); } }...

Page 1 of 201234520Next
Powered by Blogger.