Enable the BASELOGTIMEPHASEDONLY Entry

Use this procedure to enable the BASELOGTIMEPHASEDONLY entry.

Note: If the BASELOGTIMEPHASEDONLY entry is enabled, integration log entries for time-phased changes that resulted in no currency change in the project are displayed in the IPMR Format 3 report.

To enable the BASELOGTIMEPHASEDONLY entry:

  1. In the Data group on the Tools tab, click SQL Command Utility.
  2. In the SQL Statement pane, enter the following query:
    • To enable the BASELOGTIMEPHASEDONLY entry:
      INSERT INTO SETTING
      (DIR_ID,CONTEXT,OWNER_ID,DATA,USR_ID,SEQUENCE,LASTUPDATE)  
      VALUES
      (' ','BASELOGTIMEPHASEDONLY','SYSADMIN','1','',0,'');
    • To disable the BASELOGTIMEPHASEDONLY entry:
      DELETE FROM SETTING WHERE CONTEXT='BASELOGTIMEPHASEDONLY';
    Important: Each parameter in the query is described as follows:
    • CONTEXT = 'BASELOGTIMEPHASEDONLY refers to the setting that you are going to enable.
    • DATA = '1' refers to a "true" value.

    To ensure the BASELOGTIMEPHASEDONLY entry works properly, you must not change the value for each parameter in the query.

  3. Click Execute.
    The Message pane displays messages related to the command or script that you are running.