• Anderson da Silva 9
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi There,

I'm having a hard time trying to validate the challenge of the module:
Lightning Flow
(step 3) Guide Users Through Your Business Processes with Cloud Flow Designer 

I followed every direction of the challenge, three times, removing eveything in between so I start from scratch again, but no, I still get this error message upon challenge validation:
Challenge Not yet complete... here's what's wrong: 
Can't find the forceContent:fileUpload Lightning component in the 'New Lead' flow. Make sure the field’s unique name is 'Upload_File'
Thing is this field does exist in the right named flow, called by the properly named home page. I don't get what I did wrong.
Flow Lightning Component field Upload_File

Any idea?
feels like a bug since my flow seems to be setup correctly
User-added image
<?xml version="1.0" encoding="UTF-8"?>
<Flow xmlns="http://soap.sforce.com/2006/04/metadata">
    <interviewLabel>New Lead {!$Flow.CurrentDateTime}</interviewLabel>
    <label>New Lead</label>
    <processType>Flow</processType>
    <recordCreates>
        <name>Create_lead</name>
        <label>Create lead</label>
        <locationX>50</locationX>
        <locationY>200</locationY>
        <assignRecordIdToReference>LeadId</assignRecordIdToReference>
        <connector>
            <targetReference>File_Upload</targetReference>
        </connector>
        <inputAssignments>
            <field>Company</field>
            <value>
                <elementReference>Company_Name</elementReference>
            </value>
        </inputAssignments>
        <inputAssignments>
            <field>LastName</field>
            <value>
                <elementReference>Last_Name</elementReference>
            </value>
        </inputAssignments>
        <object>Lead</object>
    </recordCreates>
    <screens>
        <name>File_Upload</name>
        <label>File_Upload</label>
        <locationX>54</locationX>
        <locationY>297</locationY>
        <allowBack>true</allowBack>
        <allowFinish>true</allowFinish>
        <allowPause>true</allowPause>
        <fields>
            <name>Upload_File</name>
            <extensionName>forceContent:fileUpload</extensionName>
            <fieldType>ComponentInstance</fieldType>
            <inputParameters>
                <name>label</name>
                <value>
                    <stringValue>Upload_File</stringValue>
                </value>
            </inputParameters>
            <inputParameters>
                <name>recordId</name>
                <value>
                    <elementReference>LeadId</elementReference>
                </value>
            </inputParameters>
            <isRequired>true</isRequired>
        </fields>
    </screens>
    <screens>
        <name>X1st_page</name>
        <label>1st page</label>
        <locationX>55</locationX>
        <locationY>84</locationY>
        <allowBack>false</allowBack>
        <allowFinish>true</allowFinish>
        <allowPause>true</allowPause>
        <connector>
            <targetReference>Create_lead</targetReference>
        </connector>
        <fields>
            <name>Last_Name</name>
            <dataType>String</dataType>
            <fieldText>Last Name</fieldText>
            <fieldType>InputField</fieldType>
            <isRequired>true</isRequired>
        </fields>
        <fields>
            <name>Company_Name</name>
            <dataType>String</dataType>
            <fieldText>Company Name</fieldText>
            <fieldType>InputField</fieldType>
            <isRequired>true</isRequired>
        </fields>
    </screens>
    <startElementReference>X1st_page</startElementReference>
    <variables>
        <name>LeadId</name>
        <dataType>String</dataType>
        <isCollection>false</isCollection>
        <isInput>false</isInput>
        <isOutput>false</isOutput>
    </variables>
</Flow>

 
Use Schema Builder to create a custom field for the Property object
DreamHouse brokers often visit properties with their clients. They want to see on the property record where the property is located. Use Schema Builder to add a street address field to the Property object.
Field data type: Text Area
Field label: Street Address
Always require a value in this field in order to save a record: Selected


Result: Challenge Not yet complete... here's what's wrong: 
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea.


I have completed all the steps listed but still getting this same result. Any ideas?