Captions for Schedule Date Fields in Tasks CRM 7.2

SOLVED

Hello,

I would like to change the captions in the schedule box for a Task type communication in CRM 7.2.  The captions associated with the fields in the field list under customization only apply to the Appointment type communication.  Where are the Task type captions stored?  Are they in a HTML file somewhere that I can change?

Any and all advice appreciated

Dana

 

Parents
  • 0

    Hi Dana,

    Both communication types (Tasks/Appointments) uses the same Action Translations.

    We can see this by running

    select * from Custom_Captions where Capt_FamilyType = 'choices' and capt_family = 'comm_action'

    If we then for instance update the 'To Do' action to be called 'To Do X'

    UPDATE custom_captions SET capt_US = 'To Do X' WHERE Capt_CaptionId = 5503

    After an IIS reset, we will now see this change affect the drop down selection list for both tasks and appointments.

  • 0 in reply to TomasBlomqvist

    Hi Tomas,

    Those are not the captions I'm referring to.  The captions in the schedule box are what I need t change.

    Here is an appointment being added:

    In the customization for communications the field titles are used as the captions.  Here is the field list below:

     

    Here is a Task being added.  Note that the captions for the date fields are different.  These are the ones I wish to change but I don't know where they are stored.

    Thanks for your help with this.

     

Reply
  • 0 in reply to TomasBlomqvist

    Hi Tomas,

    Those are not the captions I'm referring to.  The captions in the schedule box are what I need t change.

    Here is an appointment being added:

    In the customization for communications the field titles are used as the captions.  Here is the field list below:

     

    Here is a Task being added.  Note that the captions for the date fields are different.  These are the ones I wish to change but I don't know where they are stored.

    Thanks for your help with this.

     

Children