• Abdul Azeez 4
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Hi Team

We have integrated a Calling Paltform with salesforce using connected app and after I make calls the Call Logs are being populated in Task Object in salesforce and as Claimed by the Platform the Call Recordings must be Populated in Files Object in salesforce
but the Call recordings are not populated in salesforce.

Please help us out in resolving this
HI All,

I am getting this error while I intergrate salesforce with a third party application.

 
HI I an getting this error : Failed to save AccountSearch.cmp: No EVENT named markup://c:AccountsLoaded found : [markup://c:AccountSearch]: Source when trying to save this code below:
<aura:component controller="AccountSearchController">
    <aura:registerEvent name="accountsLoaded" type="c:AccountsLoaded"/>
    <aura:handler name="init" value="{!this}" action="{!c.onInit}"/>
    <aura:attribute name="searchTerm" type="String" default="San Francisco"/>
    <lightning:card title="Account Search" iconName="standard:search">
        <div class="slds-form slds-p-around_x-small">
            <lightning:input
                label="Search"
                variant="label-hidden"
                value="{!v.searchTerm}"
                placeholder="Search by name, phone, website, or address"
                onchange="{!c.onSearchTermChange}"/>
        </div>
    </lightning:card>
</aura:component>