function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
raju.Braju.B 

Trigger to find the year and month of a particular date

Hi,

 

I Need to display year and day of a particular date..

 

I have three fields.

Suppose in first field i have entered 1/05/2011

 

 

 

In second filed month has to display like(jan or feb or march,.............)

 

In third field year has to diplay (2011)

 

 

Please can any one help me out..??

 

Thanks & Regards,

 

Raj.k

Ritesh AswaneyRitesh Aswaney

 

Datetime dateinst = Date.today();
System.debug (dateinst.format('EEEE  dd MMM yyyy'));
.
Prints  the following output :
.
Friday  06 May 2011

 

Pradeep_NavatarPradeep_Navatar

In date type field there are methods to get year,Month and day of particular month.If date is date/time field in this case you have an option to format the date using datetime.format() methods.

 

For more information go through the Apex guide page no 209.