• Manoj Reddi
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 3
    Replies
Hi
I have the following text field value in excel file:
20170320

I would like to convert it to a date field value when uploading files using Apex class & Visualforce Page:
03/20/2017

Thanks

 
Hi,

How can i get records for picklist  Field  Using Visualforce Page Code ?

User-added image

Hi

How can i get stage value picklist records ?

User-added image
 global class scheduledMerge implements Schedulable
{
   public string no;
   global void execute(SchedulableContext SC) 
   {
      for(Integer i=1;i<=24;i++)
      {
            Date dt=System.today().addmonths(-i);
            no=string.valueof(i);
            Id batchInstanceId = Database.executeBatch(new BatchA(string.valueof(dt.month()),String.valueof(dt.Year()),no), 200);
       }
   } 
}
How to Design the Forecasts Visualforce Page for below Image

User-added image
Hi

how to move Curser from one fileds other fields on Visualforce Page 

Thanks,
Manoj
Hi
I have the following text field value in excel file:
20170320

I would like to convert it to a date field value when uploading files using Apex class & Visualforce Page:
03/20/2017

Thanks

 
Hi,

How can i get records for picklist  Field  Using Visualforce Page Code ?

User-added image
Hi

how to move Curser from one fileds other fields on Visualforce Page 

Thanks,
Manoj