Author Archives: gvr4wd

Unknown's avatar

About gvr4wd

...hmmm

Dong Shin 08.12.2013

  • converting FA to Flex 4.6
    • working on Financial Data Editor – done
    • flexlib 2.4 is not compatible – new 2.5 version
    • arc90 flexlib.container (CollapsiblePanel) is not compatible – looking for suitable replacement….
      • trying ShinyLib CollapsiblePanel
      • not working!
    • trying http://store.kapit.biz/media/demo/klovis/prod/index.html#/Panel
    • converting all mx references to fx….
    • States not compatible! (LoginScreen) – removed for now.

Dong Shin 08.06.2013

  • group meeting at R&E
  • talked with Lenny about the duplicate COGNOS Contract – no need to keep old data
  • continue working on FA
    • remove old COGNOS data on new import
    • fixed sum of the dollars not working for some data (NULL contracts)
    • more tooltips!

Dong Shin 07.30.2013

  • continue working on FA
    • jar created with maven works in Tomcat!
    • set all the TitleWindows to position at upper left corner
    • changed Clear COGNOS Data to COGNOS Data Mgmt
    • query to find duplicates (records having same amount) in COGNOS imports
      • SELECT c1.*
        FROM contracts_cognos c1
        INNER JOIN contracts_cognos c2
        ON c1.committed_amount = c2.committed_amount
        OR c1.obligated_amount = c2.obligated_amount
        OR c1.expensed_amount = c2.expensed_amount
        WHERE c1.uid <> c2.uid
        AND c1.sub_budget_center = c2.sub_budget_center
        AND c1.requisition_id = c2.requisition_id
        ORDER BY c1.uid

Dong Shin 07.30.2013

  • continue working on FA
    • setting up Eclipse to create jar file for the FA server
      • figured out a way to create a jar file using maven!
      • http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html
        • <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <configuration>
          <version>X.Y</version>
          <archiveClasses>true</archiveClasses>
          <attachClasses>true</attachClasses>
          <classesClassifier>${project.build.version}</classesClassifier>
          </configuration>
          </plugin>
    • working on duplicate resolution for COGNOS data

Dong Shin 07.29.2013

  • went to the Fort to figure out why doubling/tripling occurs
    • the rows have different dates with same amount! These are same data with slightly different dates and/or additional info on columns.
  • continue working on FA
    • converting ProjPortfolioMgr to WTP project – FinancialAssistantServer
    • working on conflict resolution to resolve doubling/tripling problem

Dong Shin 07.26.2013

  • trouble-shooting DynamicPanel hiding min/max/close buttons when it’s minimize with a title set
    • had to override set title method – invalidateViewMetricsAndPadding() messes up everything
    • add a Label to the titleBar – default titleTextField property is not working!
  • continue working on FA
    • looking at incorrect Committed and Obligated Amounts for EA’s

Dong Shin 07.22.2013

  • VizTool meeting – notes at Req’s page
  • all projects disappeared (again?) from my workspace, ugh!
  • continue working on FA/RA
    • fixed SQL error updating users.
    • removed PM Actuals from Project Editor
    • added Search to FA
    • removed all dates and MIPR description in Req View in RA
    • added Type datagrid to Req View in RA to freeze the Type and finance data scrollable