• Pankaj Mehra
  • NEWBIE
  • 469 Points
  • Member since 2014
  • Technical Lead
  • Appirio


  • Chatter
    Feed
  • 15
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 99
    Replies
Hello there,

When record manually deleted in salesforce send that record id to other system as URL parameter.
I know it is asynchronous process with @future(callout=true).
I was looking at the HttpRequest  API document I did not find the method to set parameters and send to as request.
instead of sending JSON file in the body send as URL parameter.
Can anyone suggest me how can I send URL parameters to other systems using HttpRequest .

Thank you.



 
  • February 02, 2017
  • Like
  • 0
Please help! Just started SFDC development. I've tried so many ways and looked at previously asked questions but can't figure out how to get the code right for an extension to a standardcontroller to be able to edit fields from Account and Opportunity on on VF page. 

VF Page User-added imageWhat does the extension have to look like for the VF page to update the Account fields??
Trying to build dynamic buttons in a lightning component. An array is loaded will labels and URL's. As I loop through the array I have gotten it to a point where the buttons show up. Now I need to have a URL in that button to launch.  None of the attributes I have tried will do it.  Any direction would be great.
How do you set up default app in salesforce lightning?  I would really appreciate if someone helps me.

Thanks,
Neeraja
User-added image

I try to solve but not find any solution 

how to solve it

Thanks In advance
I have a business process managed with workflow rules that I an debating using apex code for but don't know which way to proceed. Currently I have aproximately 80 workflow rules and 100 field updates active on one object too write a description of the record when the record is created and updated. These field updates are updating a string of text fields. In another automation the text fields are concatenated updated into a long text field to form a bulletted list.

I now need to combine both processes into one, where the logic from the workflow rules and field updates will run and update the long text field. Although I have been programming for years, this is the largest project that I have tackled. Would anyone advise me on how to structure this project to run the most efficiently and allow for the best maintanence?

Thank you
Hello,
 
I am working on building a “Mass Edit Opps” visualforce button on the opportunity list views and I need some help with the visualforce page.  The page allows the user to edit multiple Opportunity fields and one Account field.  The opportunity field updates work but the one Account picklist field labeled “Account Rank” does not make the update on the account.  The field shows on the page but will not make the update when I hit save. 
 
How can I get this to work?  Any help is much appreciated
 
Here is the visualforce code

<apex:page standardController="Opportunity" recordSetVar="unused" sidebar="false">
<apex:includeScript value="{!$Resource.UtilJS}" />
<apex:form >
<apex:pageBlock >
<apex:pageMessages />
<apex:pageBlock >
Note: All modifications made on the page will be lost if Return button is clicked without clicking the Save button first. 
</apex:pageBlock>
<apex:pageBlockButtons >
<apex:commandButton value="Save" action="{!save}"/>
<apex:commandButton value="Return" action="{!cancel}"/>
</apex:pageBlockButtons>
<apex:pageBlockTable value="{!selected}" var="opp" id="table">
<apex:column headerValue="Name">
<apex:inputField value="{!opp.name}"/>
</apex:column>

 <apex:column headerValue="Account Rank">

          <apex:inputField value="{!opp.account.Account_Rank__c}"/>


        </apex:column>


        
        <apex:column headerValue="Channel Partner">

          <apex:inputField value="{!opp.Channel_Partner__c}"/>

        </apex:column>

        <apex:column headerValue="Project Name">

          <apex:inputField value="{!opp.Project_Name__c}"/>

        </apex:column>

        <apex:column headerValue="Evaluation Period - Start Date">

          <apex:inputField value="{!opp.Evaluation_Period_Start_Date__c}"/>

        </apex:column>

        <apex:column headerValue="Success Criteria for Evaluation">

          <apex:inputField value="{!opp.Success_Criteria_for_Evaluation__c}"/>

        </apex:column>

        <apex:column headerValue="Customer Pain Points">

          <apex:inputField value="{!opp.Customer_Pain_Points__c}"/>

        </apex:column>



<apex:column headerValue="Amount">
<apex:inputField required="true" value="{!opp.amount}"/>
</apex:column>

        <apex:column headerValue="Budget">

          <apex:inputField value="{!opp.Budget__c}"/>

        </apex:column>

        <apex:column headerValue="Close Date">

          <apex:inputField value="{!opp.closeDate}"/>

        </apex:column>

        <apex:column headerValue="Probability">

          <apex:inputField value="{!opp.Probability}"/>

        </apex:column>

        <apex:column headerValue="Weighted Revenue">

          <apex:inputField value="{!opp.Weighted_Revenue__c}"/>

        </apex:column>

        <apex:column headerValue="Champion">

          <apex:inputField value="{!opp.Champion__c}"/>

        </apex:column>

        <apex:column headerValue="Technical Issues">

          <apex:inputField value="{!opp.Technical_Issues__c}"/>

        </apex:column>

        <apex:column headerValue="Business Issues">

          <apex:inputField value="{!opp.Business_Issues__c}"/>

        </apex:column>

        <apex:column headerValue="Other Comments or Obstacles">

          <apex:inputField value="{!opp.Other_Comments_or_Obstacles__c}"/>

        </apex:column>

        <apex:column headerValue="Required Resources">

          <apex:inputField value="{!opp.Required_Resources__c}"/>

        </apex:column>

        <apex:column headerValue="SE Comments">

          <apex:inputField value="{!opp.SE_Comments__c}"/>

        </apex:column>


</apex:pageBlockTable>
</apex:pageBlock>
</apex:form>
</apex:page>
Hi Users,

I am looking for displaying the Apex command button only if the list that I have has atleast one value Amny suggestions?
 
<script>
                                    function load()
                                    {
                                        window.open("/oppitm/multilineitem.jsp?oppId={!Opportunity.Id}&retURL={!Opportunity.Id}", "_parent");
                                    }
                                </script>
                            <apex:commandButton value="Edit All" oncomplete="load();"/>
This list is created in the Apex Class 
Public List<OpportunityLineItem> ProdList{get;set;}

Advance thanks for seeing the post

I created a Visualforce Page in sandbox which works fine. It is about mapping Salesforce Campaigns with Mailchimp Campaigns. Then I deployed it to the active organization, and the Salesforce Campaign lookup fields just does not show up. I watched the logs, and figured out the reason, but I did not know what to do now:

VARIABLE_ASSIGNMENT [EXTERNAL]|value|{"s":1,"v":"List of size 27 too large to display"}

Image to show what's happening: first, what is the expected functionality:
User-added image
In the right column I could select a Salesforce Campaign to map, but in the active org, that is not shown:
User-added image

Can anyone help me with this? Thanks!

Visualforce page:

<apex:page controller="ACampaignMappingController"
           title="Mapping Campaigns">
    <apex:pageMessages id="messages" />

    <apex:form >
        <apex:pageBlock title="Mapping Campaigns">
            <apex:pageBlockButtons >
                <apex:commandButton action="{!save}" value="Save" />
                <apex:commandButton action="{!cancel}" value="Cancel" />
            </apex:pageBlockButtons>
            
            <apex:pageBlockSection title="MailChimp campaigns" columns="1">
                <apex:pageBlockTable value="{!mailChimpCampaigns}" var="p">
                    <apex:column value="{!p.Name}"/>
                    <apex:column headerValue="Salesforce Campaign" >                  
                        <apex:inputField value="{!p.A_Salesforce_Campaign__c}"/>
                    </apex:column>       
                </apex:pageBlockTable>
            </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:form>
    
</apex:page>
 

Controller

public class ACampaignMappingController {
  public List<MC4SF__MC_Campaign__c> mailChimpCampaigns {get; set;}

    public ACampaignMappingController(){
        mailChimpCampaigns = [SELECT name, A_Salesforce_Campaign__c FROM MC4SF__MC_Campaign__c];
    }
    
    public PageReference save(){
        try{
            update mailChimpCampaigns;
        }catch(DMLException e){
            //Report DML exceptions to the Apex Page messages element in Visualforce
            ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.Error,e.getMessage()));
        }
        
        return null;
    }
    
    public PageReference cancel(){
        //Return a link to the parent record perhaps or do something else besides return null here
        return null;
    }
}
Hey all, 

Need your help and thank you in advance. 

Trying to create a lightning component that would invoke the New Lead Event action. For example from Lightning Experience in Winter 17, when you click the Lead tab, the +New Lead when pressed will call the New Lead popup window. 

I'm looking for the lightning component syntax that would call the Lead's event handler when the end user presses a button on a lightning component (CREATE).

I'm on a deadline to have 6 of these types created by tomorrow :( but if I can get an idea of what the aura component syntax would look like or the code that would fire this, I can create the rest of the buttons I need. 

I know I'm close of where the information I need may be at, but missing the component and client-side controller source. 

The Lightning Components Developer Guide (https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/events_component_example.htm ) has some syntax that I think is the one:
 
<!--c:ceNotifier-->
<aura:component>
    <aura:registerEvent name="cmpEvent" type="c:ceEvent"/>

    <h1>Simple Component Event Sample</h1>
    <p><ui:button
        label="Click here to fire a component event"
        press="{!c.fireComponentEvent}" />
    </p>
</aura:component>
OR 
<aura:component>
    <aura:attribute name="text" type="String" default="Just a string. Waiting for change."/>
    <input type="button" value="Flawed HTML Button"
        onclick="alert('this will not work')"/>
    <br/>
    <ui:button label="Framework Button" press="{!c.handleClick}"/>
    <br/>
    {!v.text}
</aura:component>

and would only need the correct name at .handleClick (i'm guessing, Lead in this case, I'll try after I post this if someone doesn't beat me to it). 

Thank you!

 
I am new to communities and have a community with standard objects like Accounts, Opportunities. Community looks almost similar to a standard salesforce UI. Can i switch to lightning like we do for our salesforce login's

 
Hi,

I'm trying to determine if it's possible to have a popup box/window with a picklist appear when an opportunity is saved if the stage equals won or lost. Within the window we also need to save another field to the opportunity record. 

We're trying to get users to input this data as it's fairly critical in evaluating our sales process. A validation rule was considered but due to internal company reasons will not be used.

Thanks in advance for any help! 
Hi,

How do i update a field from one custom object to another standard object?

I have a field called "TF Amount" in a custom object "credit", i just want to update the "Amount" field in "Opportunity" with  "TF amount" field.

Can any one help me on this ASAP?
I have made a trigger and a class for when a contact gets created it sends Contact information to a third party.  So when I run my normal contact test the trigger gets 100% coverage but the Class gets skipped and I get this error 'Methods defined as TestMethod do not support Web service callouts, test skipped'

How do I create a test for this?

Class
public class sendHttpPostToCV{

@future(callout=true)
    public static void sendHttpRequest(String url){

        Http h = new Http();
        
        HttpRequest req = new HttpRequest();
        req.SetEndPoint(url);
        req.setMethod('POST');
        req.setHeader('Content-Type', 'text/html');
        req.setBody(''); 
        //req.setTimeout(60000);
        
        HttpResponse res = h.send(req);
        
    
        
    }
}

Trigger

trigger HttpPostToCV on Contact (after insert) {
    List<String> leadIds = new List<String>();
    
    for (Contact c : Trigger.new){
    
        String LeadSource = c.LeadSource;
        String FirstName = c.FirstName;
        String LastName = c.LastName;
        String MailingStreet = c.MailingStreet; 
        String MailingCity = c.MailingCity;
        String MailingState =  c.MailingState;
        String MailingPostalCode = c.MailingPostalCode;
        String MailingCountry = c.MailingCountry;
        String Email = c.Email;
        String Phone = c.Phone;
        String OtherPhone = c.OtherPhone;
        String Program_Code = c.Program_Code__c;
        String Previous_Education = c.Previous_Education__c;
        String Affiliation_Code = c.Affiliation_Code__c;
        String SalesForceID = c.id;
        
        String url = 'http://eleads.lafilm.com:8088/Cmc.Integration.LeadImport.HttpPost/ImportLeadProcessor.aspx?Format=CollegeDirectories&leadsource='
               + LeadSource + '&Firstname=' + FirstName + '&Lastname=' + LastName + '&Address1=' + MailingStreet + '&Address2=&City='
               + MailingCity + '&State=' + MailingState + '&Postalcodeorzip=' + MailingPostalCode + '&Country='
               + MailingCountry + '&Email=' + Email + '&Phone=' + Phone + '&WorkPhone=' + OtherPhone + '&Program='
               + Program_Code + '&Campus=MAIN&PreviousEducation=' + Previous_Education + '&Agency='
               + Affiliation_Code + '&ZSalesForceID=' + SalesForceID;
        
    
        sendHttpPostToCV.sendHttpRequest(url);
    }
}

Current Contact object test 

@isTest
public class TestContactTriggers {
    static testmethod void test()
    {
        
        
        Account acc = New Account(Name = 'Test Account');
        insert acc;
        
        Contact con = New contact ();
        con.FirstName = 'test';
        con.LastName = 'con';
        con.AccountId = acc.Id;
        con.Event_Scheduled_Date__c = system.now();
        con.Lead_Source_Code__c = 'test';
        con.school_status__c = 'Connected';
        insert con;
        
        Contact con2 = New contact ();
        con2.FirstName = 'test';
        con2.LastName = 'con';
        insert con2;
        
        
        datetime eventscheduleddate = con.Event_Scheduled_Date__c;
        datetime newdate = eventscheduleddate.addHours(1);
        
        Test.startTest();
        
        
        
        con.Event_Scheduled_Date__c = newdate;
        con.Lead_Source_Code__c = 'test2';
        con.school_status__c = 'test';
        Update con;
        
        con.school_status__c = 'connected';
        update con;   
        
        
        Test.stopTest();
        
    }
}

Thanks

Sean
I am trying to create a simple button for notes and attachements on the contact object

So have this
/002/e?parent_id={!Contact.Id}&retURL={!Contact.Id}

but I a  getting Error: Enter a URL that is valid and well-formed

I am not sure what that means or how to fix it 

Thanks

Sean


 
I recently appeared for salesforce developer plateform developer 2 exam, unfortunately due to some technical resaon the exam got suspended and proctor have to reschedule it. I got stucked in one of the question which was as follow:

When a Case is updated then we need to Insert a Account based on case status(Is case status is Approved), how it can be done
1. Use Lightening process (Process Builder).
2. Use After trigger on Case.

Both the answers are correct as we can insert a record from both After trigger and process builder. Need to figure which one is the correct answer among these two.
 
I was trying to get Superbadge Reports & Dashboards Specialist
https://trailhead.salesforce.com/en/super_badges/superbadge_reports

I have imported all the data in the excel sheet provided
http://developer.salesforce.com/files/Sanditas_Import_File.xlsx

Issue is there is no Hobby type in excel as I see in the trailhead scenario, Is the excel sheet updated ?

I created a bucket field 'Hobby Type" in report but there are no matching hobbies

User-added image

 
Hi Hive,

I am trying to replicate the Tree Grid view in my app:
https://www.lightningdesignsystem.com/components/trees/#flavor-grid-deep-nesting

I can see that index.scss is loaded on this page:

User-added image

I cannot add scss file in the component directly like this :
<ltng:require styles="/resource/accHierarchy__SLDS100/scss/components/trees/flavors/base/index.scss" />

I know that this is not the process to add scss.

The output of the component comes without the tree structure as the scss file is not loaded on page:

User-added image

Is there any lead how to add scss file on Lightening Component.

Thanks







 
We are experiencing some issues after Winter 18. I am not sure whether they are particular to our project or know issues.  Any help on below issues woule  greatly appreciated. 

Issue # 1:
We have noticed that some of our custom css classes are getting overridden with app.css and because of that our UI screens are getting distored.  

Issue#2:
One more issue is that whenever we do code changes through developer console , changes are not getting updated immediately at UI. We suppose to refresh the browser multiple times to see the updated change. It's really effecting our developement time.  This is not the case before winter18.

 
Hello there,

When record manually deleted in salesforce send that record id to other system as URL parameter.
I know it is asynchronous process with @future(callout=true).
I was looking at the HttpRequest  API document I did not find the method to set parameters and send to as request.
instead of sending JSON file in the body send as URL parameter.
Can anyone suggest me how can I send URL parameters to other systems using HttpRequest .

Thank you.



 
  • February 02, 2017
  • Like
  • 0
I was trying to get Superbadge Reports & Dashboards Specialist
https://trailhead.salesforce.com/en/super_badges/superbadge_reports

I have imported all the data in the excel sheet provided
http://developer.salesforce.com/files/Sanditas_Import_File.xlsx

Issue is there is no Hobby type in excel as I see in the trailhead scenario, Is the excel sheet updated ?

I created a bucket field 'Hobby Type" in report but there are no matching hobbies

User-added image

 
Hello I have created an object that has a child relationship to Account called Product. I have then created a child object to Product called Client that is also a child object of Account. The use case is that we want to create products against competitors and then link those products to prospects. When I look at a prospect (Account record) I now have a related list of all the products that they use. At an opportunity level, we would like to see this related list so that we don't have to switch back to the account. I have tried creating a Visualforce page, however I am unable to link it to the opportunity record. Can anyone let me know how I link the VF Page to the opportunity record? Thanks
Hello there,

I have created a Github remote repository and also created local branch and did some changes and pushed all the way to remote repo master.
But when I login into salesforce sandbox I don't see those changes.

how do I sync Github remote master repo to salesforce sandbox.

Note : I am not using eclipse force.com ide to clone the git hub project. I am using Gitshell command prompt to clone and to create the local branches.

Please help me to see the changes which I have done in git hub in salesforce sandbox.


 
  • December 22, 2016
  • Like
  • 0
Hello,
I created a custom button (on a custom object) to open a visual force page. I have that working, but not sure how to embed the report on the visual force page. I want to show a report on this visualforce page, but I don't know what code to use.

Any help is appreciated.  The code there now is:
<apex:page showHeader="false" sidebar="false"> <apex:outputPanel id="MissingAttRpt" > <apex:iframe src="/00O41000005csO8?isdtp=lt" scrolling="true" height="1588px" width="100%"/> </apex:outputPanel> </apex:page>

Is it possible to create a Trigger to decapitalize any letters in Account Name field after an apostrophe if the letter following is an "S"?

Example: St. Paul'S (decapitalize it) so that it would equal St. Paul's.

We had a developer write a code to capitalize all first letters and unfortunately the developer doesn't communicate with us anymore.

 

 I have an issue. the select statement returns no rows. If I put  in the Query Editor it works fine.   Help!!!

@isTest
Static void UpdateInvoice_Test(){

    Try  {
           Usage__c u = [Select BillingDate__c, InternetUsage__c, MobileUsage__c From Usage__c Where Id = 'a0B1500000tQ8beEAC']; 

            u.BillingDate__c = date.today();
               u.InternetUsage__c = 300;
               u.MobileUsage__c = 300;
            
        update u;
    }

List <peer__Investment_Booking__c> TEMPInvestmentBookingList = new List<peer__Investment_Booking__c>();
            peer__Investment_Booking__c TEMPInvestmentBooking1;
            bookingOrderList = [SELECT Id, peer__Investor__c,Insured_Amount__c,Total_Insured_Amount__c FROM peer__Booking_Order__c WHERE peer__Investor__c =: account.Id];
          

          
          Map<String,List<peer__Investment_Booking__c>> mapBookingOrder = new Map<String,List<peer__Investment_Booking__c>>();
          
          for(peer__Investment_Booking__c peer : [SELECT peer__Investment_Amount__c,Insured_Percentage__c,Insured_Amount__c,Premium_Component__c,peer__Loan_Application__c
                                         FROM peer__Investment_Booking__c WHERE peer__Booking_Order__c in: bookingOrderList]) {
            if(!mapBookingOrder.containsKey(peer.peer__Booking_Order__c)) {
                List<peer__Investment_Booking__c> lstinvestBooking =  new List<peer__Investment_Booking__c>();
                mapBookingOrder.put(peer.peer__Booking_Order__c,lstinvestBooking);
            }
            mapBookingOrder.get(peer.peer__Booking_Order__c).add(peer);
          }
                
          for(i=0;i<bookingOrderList.size();i++)
            {
                bookingOrder = bookingOrderList.get(i);
                investmentBookingList = mapBookingOrder.get(bookingOrder.Id);//[SELECT peer__Investment_Amount__c,Insured_Percentage__c,Insured_Amount__c,Premium_Component__c,peer__Loan_Application__c
                                        // FROM peer__Investment_Booking__c WHERE peer__Booking_Order__c =: bookingOrder.Id];
                for(j=0;j<investmentBookingList.size();j++)
                {
                    investmentBooking = investmentBookingList.get(j);
                    TEMPInvestmentBookingList.add(investmentBooking);
                }
            }
            for(i=0;i<TEMPInvestmentBookingList.size();i++)
            {
                investmentBooking = TEMPInvestmentBookingList.get(i);
                j=i+1;
                while(j<TEMPInvestmentBookingList.size())
                {
                    TEMPInvestmentBooking1 = TEMPInvestmentBookingList.get(j);
                    if(investmentBooking.peer__Loan_Application__c == TEMPInvestmentBooking1.peer__Loan_Application__c)
                    {
                        investmentBooking.peer__Investment_Amount__c = investmentBooking.peer__Investment_Amount__c + TEMPInvestmentBooking1.peer__Investment_Amount__c;
                        TEMPInvestmentBookingList.remove(j);
                    }
                    else{
                        j++;
                    }
                }
                }
Hi,

I have a custom object A and record types A1,A2,A3 
I want to write a before delete trigger and it's supporting test class so that it prevents deleting of A1 record type records but can delete A2,A3 record type records.
Please help!
public class WrapperClass {
    public List<Account> AccountList{get; set;}
        public List<Account> getAccounts(){
            if(AccountList==null){
                AccountList=new List<Account>();
                for(Account acc:[select name,phone,Type from Account limit 10]){
                    AccountList.add(new Account(acc));
               }
            }        
                return AccountList;
        }
   
}
 
Hi All,

I have approval process on custom object.. i have locked the record on final approval actions..
Now i want only the record owner edit some of the fields..after the record is approved.. I thought the case owner can always edit the record..
Appreciate any help.. any inputs please.

Thanks
 List <peer__Investment_Booking__c> TEMPInvestmentBookingList = new List<peer__Investment_Booking__c>();
            peer__Investment_Booking__c TEMPInvestmentBooking1;
            bookingOrderList = [SELECT Id, peer__Investor__c,Insured_Amount__c,Total_Insured_Amount__c FROM peer__Booking_Order__c WHERE peer__Investor__c =: account.Id];
              /*List<Id> bookingId = new List<Id>();
            for(peer__Booking_Order__c tempbookingOrder:bookingOrderList){
                 bookingId.add(tempbookingOrder.Id);               
            }
            investmentBookingList = [SELECT peer__Investment_Amount__c,Insured_Percentage__c,Insured_Amount__c,Premium_Component__c,peer__Loan_Application__c
                                         FROM peer__Investment_Booking__c WHERE peer__Booking_Order__c IN :bookingId];
            for(j=0;j<investmentBookingList.size();j++)
                {
                    investmentBooking = investmentBookingList.get(j);
                    TEMPInvestmentBookingList.add(investmentBooking);
                }*/
          for(i=0;i<bookingOrderList.size();i++)
            {
                bookingOrder = bookingOrderList.get(i);
                investmentBookingList = [SELECT peer__Investment_Amount__c,Insured_Percentage__c,Insured_Amount__c,Premium_Component__c,peer__Loan_Application__c
                                         FROM peer__Investment_Booking__c WHERE peer__Booking_Order__c =: bookingOrder.Id];
                for(j=0;j<investmentBookingList.size();j++)
                {
                    investmentBooking = investmentBookingList.get(j);
                    TEMPInvestmentBookingList.add(investmentBooking);
                }
            }
            for(i=0;i<TEMPInvestmentBookingList.size();i++)
            {
                investmentBooking = TEMPInvestmentBookingList.get(i);
                j=i+1;
                while(j<TEMPInvestmentBookingList.size())
                {
                    TEMPInvestmentBooking1 = TEMPInvestmentBookingList.get(j);
                    if(investmentBooking.peer__Loan_Application__c == TEMPInvestmentBooking1.peer__Loan_Application__c)
                    {
                        investmentBooking.peer__Investment_Amount__c = investmentBooking.peer__Investment_Amount__c + TEMPInvestmentBooking1.peer__Investment_Amount__c;
                        TEMPInvestmentBookingList.remove(j);
                    }
                    else{
                        j++;
                    }
                }
            }
HI experts, 

can any one suggest me how to migrate existing salesforce classic community to salesforce lightning,and also please let me know how we can create new community using salesforce lightning
In a custom object, I have a Text Area(255) field in which a user can input stock numbers, one per line. What I would like to do with a flow is take those lines and assign them into individual variables with the purpose of iterating through each of those stock numbers assigning them to a campaign specified earlier in the object. The flow will be an auto-flow kicked off by a Process Builder process. I know how to accomplish everything except pulling the lines of the text area into individual variables. I would like to avoid any Apex code if possible, as our org is getting fairly close to the limit there. Thank you in advance for any help!
Is there a way for one component to reference the functions in another without embedding?

If I have to embed the component, how do I reference there parent function from a  child component and vice versa?
Hi , everyone I'm new to salesforce I have requirement to send emails to the contacts on every Friday using workflows can anyone tell me how to write a formula for it

Hi All,

 

I need to call two functions and want a delay of 10 seconds between then.

 

It is possible with Apex code ?

 

Thanks,

Deepak