• Silambarasan Velu
  • NEWBIE
  • 15 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 4
    Replies
Hi,
I have created the steps provided in https://trailhead.salesforce.com/projects/workshop-platform-events/steps/platform-event-define
while do verfy steps bellow error throws:
Challenge Not yet complete... here's what's wrong: 
Could not find an object named 'Notification__e'.


when I check the API name User-added image

Namespace is prepended. How to verify the step? how to delete the namespace?
Hi guyz,

I'm trying to  display serial number of record using vfp, standard list control. using below code:
 
<apex:variable var="rowNo" value="{!0}"/>
            <apex:pageblocktable value="{!cnts}" var="cnt">
                <apex:column headerValue="Sl.No">
                    <apex:variable var="rowNo" value="{!rowNo+1}"/>
                    {!rowNo}
                </apex:column>
using above code for first colum,
here my problem is while using pagination in second page also serial no starts with 1. instead of 11,12,13..etc.
kindly give suggestion.
i'm a learner.
 
Hi, I'm trying to create a profile with Salesforce user license. but while I try the Salesforce user license is not available in existing profile list. Im using developer edition login.

See the list
Hi, I copleted the challange "Creating Custom Objects and Fields" in trailhead. But while check challange it shows below error:

Challenge not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Insert failed. First exception on row 0; first error: REQUIRED_FIELD_MISSING, Required fields are missing: [Name__c]: [Name__c]

Custom objects

While I check the Name field with Name__c is available. Anything am I missed?
Hi,
I have created the steps provided in https://trailhead.salesforce.com/projects/workshop-platform-events/steps/platform-event-define
while do verfy steps bellow error throws:
Challenge Not yet complete... here's what's wrong: 
Could not find an object named 'Notification__e'.


when I check the API name User-added image

Namespace is prepended. How to verify the step? how to delete the namespace?
Re-factored my code from previous units with base lightning components, but receiving this error.  Here's my new form component.  Any help would be much appreciated.

<aura:component >   
    <aura:attribute name="newItem" type="Camping_Item__c"    default="{ 'sobjectType': 'Camping_Item__c',
                         'Name': '',
                         'Price__c': 0,
                         'Quantity__c': 0,                         
                         'Packed__c': false
                       }"/>
 
    <aura:registerEvent name="addItem" type="c:addItemEvent"/>
    <lightning:layout >
        <lightning:layoutItem padding="around-small" size="6">
<div aria-labelledby="newItemForm">

    <!-- BOXED AREA -->
    <fieldset class="slds-box slds-theme--default slds-container--small">

    <legend id="newItemForm" class="slds-text-heading--small 
      slds-p-vertical--medium">
      Add Camping Item
    </legend>

    <!-- CREATE NEW CAMPING ITEM FORM -->
    <form class="slds-form--stacked">          
        <lightning:input aura:id="itemForm" label="Camping Item Name"
                         name="Name"
                         value="{!v.newItem.Name}"
                         required="true"/> 
        <lightning:input type="number" aura:id="itemForm" label="Quantity"
                         name="Quantity"
                         maxlength="16"
                         min="0"
                         step="1"
                         value="{!v.newItem.Quantity__c}"
                         required="true"/>
        <lightning:input type="number" aura:id="itemForm" label="Price"
                         name="Price"
                         min="0"
                         step=".01"
                         value="{!v.newItem.Price__c}"
                         formatter="currency"
                         messageWhenRangeUnderflow="Enter an amount that's at least .01."/>
        <lightning:input type="checkbox" aura:id="itemForm" label="Packed?"  
                         name="Packed"
                         checked="{!v.newItem.Packed__c}"/>
        <lightning:button label="Create Expense" 
                          class="slds-m-top--medium"
                          variant="brand"
                          onclick="{!c.clickCreateItem}"/>
    </form>
  </fieldset>
  <!-- / BOXED AREA -->

</div>
        </lightning:layoutItem>
    </lightning:layout>
</aura:component>
Hi guyz,

I'm trying to  display serial number of record using vfp, standard list control. using below code:
 
<apex:variable var="rowNo" value="{!0}"/>
            <apex:pageblocktable value="{!cnts}" var="cnt">
                <apex:column headerValue="Sl.No">
                    <apex:variable var="rowNo" value="{!rowNo+1}"/>
                    {!rowNo}
                </apex:column>
using above code for first colum,
here my problem is while using pagination in second page also serial no starts with 1. instead of 11,12,13..etc.
kindly give suggestion.
i'm a learner.
 

Hello,

 

I have a trigger in which I need to lookup fields using a lookup field.

If I debug/print out value of "Primary_Partner__c" in my trigger this works correctly.  However when I try to lookup fields using "Primary_Partner__r.Name" or similar for other fields I cannot find or obtain the values.  Is there a restriction in triggers from looking up a parent object or could this be related to some settings on the field?

 

Thanks