• sekhar 131
  • NEWBIE
  • 10 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 13
    Replies
How to create custom loging page in lightning
How to Convert standed account page into custom page  in lightning
how to send verification code to email using jquery
 

my requirement same Page Creation in custom page


User-added image 
how to create Save and New Button in Lightning Component
hi
Please help me 
User-added image
this image see the top of errors using apex message 
my requirement below the image  fiield error message
User-added image
 
Hi 
How to throw the Error message in field side and manidatry field also throw the error message one by one field.
not error throw message in top and botume
example image  User-added image
How to Display the date Field fronted error message in visualforce 

Date Field is select the future date throw error message
 
hi 
this my error in backend and this error message dispaly the frented message.
how to dispaly the frented message

Insert failed. First exception on row 0; first error: FIELD_CUSTOM_VALIDATION_EXCEPTION, Enter the Year of Passing: []
Visualforce Error :Attempt to de-reference a null object 

line no in 27 apex page
Can any one help me out with this Error .I'm getting
my Task- I want a customized report on Lead owners and their Activities count.
code 
class
public class ActiveHistoryClass
{
 
    public list<wrapper> wrap{set;get;}
    public set<id> setr1{get;set;}
    public map<string,list<wrapper>> ma {set;get;}
    public AggregateResult[] numTasks{set;get;}
    public List<User> userinfo{get;set;}
    
    public ActiveHistoryClass()
    {
       userinfo=[select id,name from User];
        setr1=new set<Id>();
        for(User usr:userinfo)
        {
           setr1.add(usr.id);
        }
        
       numTasks =[select Owner.name owner,Status sta,Activity_type__c  active,count(id) coun from Task GROUP BY Owner.name,Status,Activity_type__c];   
        wrap = new List<wrapper>();
         System.debug('The Aggregate value is'+numTasks);
        
      for(AggregateResult ar:numTasks)
        {
        // wrap.add(new wrapper(ar.get('owner')),(ar.get('sta')),(ar.get('active')),(ar.get('coun')));
           wrap.add(new wrapper(ar));
           system.debug('wrap'+wrap);
        ma.put((string)ar.get('owner'),wrap); 
           // system.debug('ma'+ar);
           setr1.add(ar.id);
            system.debug('setr1'+ar.Id);
        } 
          System.debug('The map value is'+ma);     
        }
    public class wrapper {
        public integer coun{get;set;}
        public String owner{get;set;}
        public String sta{get;set;}
        public String active{get;set;}
        public string oname{set;get;}
   
    public wrapper(AggregateResult ar)
    {
            owner = (String) ar.get('owner');
            sta = (String) ar.get('sta');
            active = (String) ar.get('active');
            coun=(integer) ar.get('coun');
             this.oname=owner;
        }
    }     
}

vf page
<apex:page controller="ActiveHistoryClass" >
    <style>
table {
    font-family: arial, sans-serif; border-collapse: collapse; width: 100%;padding: 10px;
}

td, th {
    border: 1px solid #dddddd;text-align: left;padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}
</style>
<apex:form >
   <apex:pageBlock >
       <!--- <apex:pageBlockTable>---->
       <body>
                      <table>
                          <thead>
                          <tr>
                          <th>Lead.name</th>
                              <th>Status</th>
                              <th>Ativity Type</th>
                              <th>Count</th>
                          </tr>
                              </thead>
    <apex:repeat value="{!setr1}" var="ownerids">
   
 <!---<tr>
                          <td>{!ownerids.owner}</td>
                               <td>{!ownerids.sta}</td>
                               <td>{!ownerids.active}</td>
                               <td>{!ownerids.coun}</td>
                          </tr> --->                        
        <apex:repeat value="{!ma[ownerids]}" var="c">
            <tbody>
                          <tr>
                          <td>{!c.owner}</td>
                               <td>{!c.sta}</td>
                               <td>{!c.active}</td>
                               <td>{!c.coun}</td>
                          </tr>
                          </tbody>
           
            
            <!---<apex:column value="{!c.o}" headerValue="Lead.name" styleClass="padding: 13px;" style="font-family: arial, sans-serif; border-collapse: collapse; width: 30%;padding: 10px"/> 
                      <apex:column value="{!c.s}"  headerValue="Status"/>
                         <apex:column value="{!c.a}"  headerValue="Ativity Type"/>
                           
                          <apex:column value="{!c.ct}"  headerValue="Count"/>---->
                         </apex:repeat>  
                      
                   
      
        </apex:repeat>
                          
                           </table>    
             </body>
       </apex:pageBlock>
    </apex:form>
</apex:page>

please help me
 
How to Convert standed account page into custom page  in lightning
how to create Save and New Button in Lightning Component
hi
Please help me 
User-added image
this image see the top of errors using apex message 
my requirement below the image  fiield error message
User-added image
 
Hi 
How to throw the Error message in field side and manidatry field also throw the error message one by one field.
not error throw message in top and botume
example image  User-added image
How to Display the date Field fronted error message in visualforce 

Date Field is select the future date throw error message
 
Visualforce Error :Attempt to de-reference a null object 

line no in 27 apex page
Can any one help me out with this Error .I'm getting
my Task- I want a customized report on Lead owners and their Activities count.
code 
class
public class ActiveHistoryClass
{
 
    public list<wrapper> wrap{set;get;}
    public set<id> setr1{get;set;}
    public map<string,list<wrapper>> ma {set;get;}
    public AggregateResult[] numTasks{set;get;}
    public List<User> userinfo{get;set;}
    
    public ActiveHistoryClass()
    {
       userinfo=[select id,name from User];
        setr1=new set<Id>();
        for(User usr:userinfo)
        {
           setr1.add(usr.id);
        }
        
       numTasks =[select Owner.name owner,Status sta,Activity_type__c  active,count(id) coun from Task GROUP BY Owner.name,Status,Activity_type__c];   
        wrap = new List<wrapper>();
         System.debug('The Aggregate value is'+numTasks);
        
      for(AggregateResult ar:numTasks)
        {
        // wrap.add(new wrapper(ar.get('owner')),(ar.get('sta')),(ar.get('active')),(ar.get('coun')));
           wrap.add(new wrapper(ar));
           system.debug('wrap'+wrap);
        ma.put((string)ar.get('owner'),wrap); 
           // system.debug('ma'+ar);
           setr1.add(ar.id);
            system.debug('setr1'+ar.Id);
        } 
          System.debug('The map value is'+ma);     
        }
    public class wrapper {
        public integer coun{get;set;}
        public String owner{get;set;}
        public String sta{get;set;}
        public String active{get;set;}
        public string oname{set;get;}
   
    public wrapper(AggregateResult ar)
    {
            owner = (String) ar.get('owner');
            sta = (String) ar.get('sta');
            active = (String) ar.get('active');
            coun=(integer) ar.get('coun');
             this.oname=owner;
        }
    }     
}

vf page
<apex:page controller="ActiveHistoryClass" >
    <style>
table {
    font-family: arial, sans-serif; border-collapse: collapse; width: 100%;padding: 10px;
}

td, th {
    border: 1px solid #dddddd;text-align: left;padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}
</style>
<apex:form >
   <apex:pageBlock >
       <!--- <apex:pageBlockTable>---->
       <body>
                      <table>
                          <thead>
                          <tr>
                          <th>Lead.name</th>
                              <th>Status</th>
                              <th>Ativity Type</th>
                              <th>Count</th>
                          </tr>
                              </thead>
    <apex:repeat value="{!setr1}" var="ownerids">
   
 <!---<tr>
                          <td>{!ownerids.owner}</td>
                               <td>{!ownerids.sta}</td>
                               <td>{!ownerids.active}</td>
                               <td>{!ownerids.coun}</td>
                          </tr> --->                        
        <apex:repeat value="{!ma[ownerids]}" var="c">
            <tbody>
                          <tr>
                          <td>{!c.owner}</td>
                               <td>{!c.sta}</td>
                               <td>{!c.active}</td>
                               <td>{!c.coun}</td>
                          </tr>
                          </tbody>
           
            
            <!---<apex:column value="{!c.o}" headerValue="Lead.name" styleClass="padding: 13px;" style="font-family: arial, sans-serif; border-collapse: collapse; width: 30%;padding: 10px"/> 
                      <apex:column value="{!c.s}"  headerValue="Status"/>
                         <apex:column value="{!c.a}"  headerValue="Ativity Type"/>
                           
                          <apex:column value="{!c.ct}"  headerValue="Count"/>---->
                         </apex:repeat>  
                      
                   
      
        </apex:repeat>
                          
                           </table>    
             </body>
       </apex:pageBlock>
    </apex:form>
</apex:page>

please help me