• Rita Leverett 2
  • NEWBIE
  • 0 Points
  • Member since 2014


  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 5
    Replies
Hello. I am attempting to upload mdt records using SFDX CLI. I get the error The column Label is not found on the custom metadata type. I saved the file as CSV (Comma delimited) and CSV UTF-8 (Comma delimited) and received the same error. Similar error using MasterLabel. Any help would be appreciated. Thank you.
My company wants to prevent users from using private folders for reports and dashboards. First they want to delete any empty private folders. I know this can't be done in the UI, but can it be accomplished in the API?
A user is getting this error when logging into Salesforce: This page has an error. You might just need to refresh it. First, would you give us some details? (We're reporting this as error ID: -78170657)

This error happens on initial load. Any ideas how to resolve?
 
Hello,
How do I make the app launcher display in Experience Cloud? Show App Launcher in Experience Cloud sites is checked on the profiles. I'm using an Aura Component for a custom theme. Documentation says I need only add
<div class="appLauncher">
        <forceCommunity:appLauncher/>
 </div>
to my code but it doesn't work. Here is my code:
<aura:component implements="forceCommunity:themeLayout">
    <aura:attribute name="search" type="Aura.Component[]"/>
    <aura:attribute name="showSearch" type="Boolean" default="true" />
    <div>
        <div class="slds-row">
            <div class="slds-grid">
                <div class="slds-row">
                    <div class="logoContainer"></div>
                </div>
                <div class="appLauncher">
                    <forceCommunity:appLauncher/>
                </div>
		     <aura:if isTrue="{!v.showSearch}">
                    <div class="slds-row">
               	        {!v.search}
                    </div>
		     </aura:if>
            </div>
        </div>
        <div class="slds-row nav">
            <c:horizontalNav></c:horizontalNav>
        </div>
        <div class="slds-row content">
            {!v.body}
        </div>
    </div>
</aura:component>

 
Hello. I am attempting to upload mdt records using SFDX CLI. I get the error The column Label is not found on the custom metadata type. I saved the file as CSV (Comma delimited) and CSV UTF-8 (Comma delimited) and received the same error. Similar error using MasterLabel. Any help would be appreciated. Thank you.
Hello. I am attempting to upload mdt records using SFDX CLI. I get the error The column Label is not found on the custom metadata type. I saved the file as CSV (Comma delimited) and CSV UTF-8 (Comma delimited) and received the same error. Similar error using MasterLabel. Any help would be appreciated. Thank you.
A user is getting this error when logging into Salesforce: This page has an error. You might just need to refresh it. First, would you give us some details? (We're reporting this as error ID: -78170657)

This error happens on initial load. Any ideas how to resolve?
 
Hello,
How do I make the app launcher display in Experience Cloud? Show App Launcher in Experience Cloud sites is checked on the profiles. I'm using an Aura Component for a custom theme. Documentation says I need only add
<div class="appLauncher">
        <forceCommunity:appLauncher/>
 </div>
to my code but it doesn't work. Here is my code:
<aura:component implements="forceCommunity:themeLayout">
    <aura:attribute name="search" type="Aura.Component[]"/>
    <aura:attribute name="showSearch" type="Boolean" default="true" />
    <div>
        <div class="slds-row">
            <div class="slds-grid">
                <div class="slds-row">
                    <div class="logoContainer"></div>
                </div>
                <div class="appLauncher">
                    <forceCommunity:appLauncher/>
                </div>
		     <aura:if isTrue="{!v.showSearch}">
                    <div class="slds-row">
               	        {!v.search}
                    </div>
		     </aura:if>
            </div>
        </div>
        <div class="slds-row nav">
            <c:horizontalNav></c:horizontalNav>
        </div>
        <div class="slds-row content">
            {!v.body}
        </div>
    </div>
</aura:component>