• leoSFDC 13
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 3
    Replies
Hi All, When we send email alert from process builder or workflow. Where these Email alerts are stored in salesforce database?
User-added image
I am getting above error in Aura Components Specialist step 5,I am not able to find why the chanllege is not completed ,Below is line of code, Please help ... Thanks in advance
 
boattile.cmp
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId" access="global" >
    <aura:attribute name="boat" type="Boat__c"></aura:attribute>
    <aura:attribute name='selected' type='Boolean' default='false'/> 
    <aura:registerEvent name ="boatSelect" type="c:BoatSelect"></aura:registerEvent>
    
<lightning:button class="{!v.selected ? 'tile selected' : 'tile'}" onclick ="{!c.onBoatClick}">
        <div style="{!'background:' + v.boat.backgroundColor + ' url(' + v.boat.Picture__c +') no-repeat;'}" class="innertile">
            <div class="lower-third">
                <h1 class="slds-truncate">{!v.boat.Name}</h1>
            </div>
        </div>
    </lightning:button> 
</aura:component>
boattileController.cmp
({
    onBoatClick : function(component, event, helper) { 
       var boatSelect = component.getEvent("boatSelect");
       var boatId = component.get("v.boat").Id;
       boatSelect.setParams({"boatId":boatId});
       boatSelect.fire();
    }
})

BoatSearchResult.Cmp
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId" controller="BoatSearchResults" access="global" >
    <aura:attribute name="boats" type="Boat__c[]"></aura:attribute>
    <aura:attribute name="boatTypeId" type="string"></aura:attribute>
     <aura:handler name="boatSelect" event="c.BoatSelect" action="{!c.onBoatSelect}"></aura:handler>
    <aura:handler name="init" value="{!this}" action="{!c.getDataBoats}"></aura:handler>
    <aura:attribute name="selectedBoatId" type="string"></aura:attribute> 
    <aura:method name="search" access="global" action="{!c.doSearch}" >
        <aura:attribute name="boatTypeId1" type="String"/>
     </aura:method>
    <lightning:layout multipleRows="true">
        <aura:if isTrue="{!v.boats}">
            <aura:iteration items="{!v.boats}" var="boat">
                <lightning:layoutItem size="4">
                    <c:BoatTile boat="{!boat}" selected="{!boat.Id == v.selectedBoatId ? true : false}"/>
                </lightning:layoutItem>
            </aura:iteration>

BoatSearchResultController

({
    getDataBoats : function(component, event, helper) {
        var boatTypeId = component.get("v.boatTypeId");
        console.log('boatTypeId>>>'+boatTypeId);
        helper.onSearch (component); 
    },
    doSearch  : function(component, event, helper) {
        var params = event.getParam('arguments');
        console.log('params>>>'+params.boatTypeId1);
        component.set('v.boatTypeId',params.boatTypeId1);
        helper.onSearch(component);
    },
    onBoatSelect : function(component, event, helper) {
        var boatId = event.getParam("boatId");
        component.set("v.selectedBoatId",boatId);
        console.log('helloji2>>');
    }  
})
I am trying to use VS Code for my two different dev org.
I am using Create project with Manifest option.
If i create Create project with Manifest option for first org and executes authorize and retrieve command, it works fine and i am able to retrieve all components,
now if i create 2nd new project with manifest option  and after authorizing the second org, when i open package.xml for second project and try to retrieve components,
it is not retrieving components for second org, later i realize it has retrieve all the component first projects directory
I need to send contact update from salesforce to third party using API call out.i am using future method in trigger for API call out to send updated data from salesforce to another system.will it be a performance issue if  we have many updates on contact object.
we are using live agent and in our web fom we have below mention code

<input type="hidden" name="liveagent.prechat.findorcreate.map:Task" value="Subject,Problem Type;RecordTypeId,TaskRecordTypeId" />
<select name="liveagent.prechat:Problem Type" id="problemType"> <option value="">Select Problem Type</option> <option value="Administration Tool issue">Administration Tool issue</option> </select>
this code is to create taks record from live chat.
i am assigning problem type to subject feld

i have one more field in our web form
<td colspan="3"><textarea rows="3" cols="55" name="liveagent.prechat:Task Subject," id="taskSubject" class="chatField DescriptionField subjectField"></textarea> </td>
how can i concatenate problem type and taskSubject to assign in task's subject field

 
we are using assignment rule for case.we have created queues for that.Now we have 100 special customer with specific agent. if we want to use same assigment rule than we need to create 100 queues(with 1 agent) for each account.

is there any other way for special customers for case assigmnet.as we do not want to create so many queues.
 
Hi All, When we send email alert from process builder or workflow. Where these Email alerts are stored in salesforce database?
I am trying to use VS Code for my two different dev org.
I am using Create project with Manifest option.
If i create Create project with Manifest option for first org and executes authorize and retrieve command, it works fine and i am able to retrieve all components,
now if i create 2nd new project with manifest option  and after authorizing the second org, when i open package.xml for second project and try to retrieve components,
it is not retrieving components for second org, later i realize it has retrieve all the component first projects directory
we are using live agent and in our web fom we have below mention code

<input type="hidden" name="liveagent.prechat.findorcreate.map:Task" value="Subject,Problem Type;RecordTypeId,TaskRecordTypeId" />
<select name="liveagent.prechat:Problem Type" id="problemType"> <option value="">Select Problem Type</option> <option value="Administration Tool issue">Administration Tool issue</option> </select>
this code is to create taks record from live chat.
i am assigning problem type to subject feld

i have one more field in our web form
<td colspan="3"><textarea rows="3" cols="55" name="liveagent.prechat:Task Subject," id="taskSubject" class="chatField DescriptionField subjectField"></textarea> </td>
how can i concatenate problem type and taskSubject to assign in task's subject field