Harvest

 View Only
  • 1.  Recover Life cycle Template Name

    Posted Dec 13, 2014 06:11 AM

    I have another question - Mistakely the Life cycle Templates in Harvest has been renamed and I would like to know if there is a way to restore the previous name??



  • 2.  Re: Recover Life cycle Template Name

    Posted Dec 15, 2014 08:00 AM

    Correction. The question how to find out the previous Life cycle Templates in Harvest



  • 3.  Re: Recover Life cycle Template Name

    Posted Jan 02, 2015 10:27 PM

    Hi you can get previous name from harauditlogview table.

    for more details refer Administrator user guide page numbers 172-180.

    below is sample query for your requirement

      select ResourceName as OLDNAME, EventDescription as NEWNAME from HARAUDITLOGVIEW where ResourceTypeObjId=2 and username='xxxx' and actionname='Update project' and EventTime >= '2014-12-23';

    in the above query username means the user who renamed the project name.

    usage of above query is your own risk.

     

    Regards,

    Amar.