This is a view of the UM_HR_ACCTG_LN - Payroll Accounting Line table in FNPRD.

MAX of line_descr and SUM of monetary_amount are calculated in this view. See SQL code at right.

KeyRecord.FieldnameFormatXLATHeading Text
 ACCOUNT - AccountChar10 Account
 ACCOUNTING_PERIOD - Accounting PeriodNum3.0 Period
BUSINESS_UNIT - Business UnitChar5 Unit
 CLASS_FLD - Class FieldChar5 Class
 DEPTID - DepartmentChar10 Dept
 FISCAL_YEAR - Fiscal YearNum4.0 Year
 FUND_CODE - Fund CodeChar5 Fund
JOURNAL_DATE - Journal DateDate Date
JOURNAL_ID - Journal IDChar10 Journal ID
JOURNAL_LINE - GL Journal Line NumberNum9.0 Line #
 JRNL_LN_REF - Journal Line ReferenceChar10 Ref
 KK_AMOUNT_TYPE - Commitment Control Amount TypeChar1NAmount Type
LEDGER - LedgerChar10 Ledger
 LEDGER_GROUP - Ledger GroupChar10 Ledger Grp
 LINE_DESCR - Journal Line DescriptionChar30 Line Descr
 OFF_CYCLE - Off Cycle ?Char1 Off Cycle
 OPERATING_UNIT - Operating UnitChar8 Oper Unit
 PAY_END_DT - Pay Period End DateDate End Date
 PAYGROUP - Pay GroupChar3 Group
 POSITION_NBR - Position NumberChar8 Position
 PROGRAM_CODE - Program CodeChar5 Program
 PROJECT_ID - ProjectChar15 Project
 RUN_ID - Run IDChar25 Run ID
 UM_DEPTID_HR - HR DepartmentChar10 HE Dept
 UM_MONETARY_AMOUNT - Monetary AmountSNm25.2 Amount


Data Dictionary Links

Clicking the linked (blue) fields in any table will take you to the Data Dictionary and provide you with more information about that field as well as field values if they are available.

SQL code for UM_GLINQ_HR_VW
SELECT c.fiscal_year,
       c.accounting_period,
       c.business_unit_gl,
       c.deptid,
       c.program_code,
       c.fund_code,
       c.project_id,
       c.operating_unit,
       c.journal_id,
       c.journal_date,
       c.journal_line,
       c.ledger,
       c.ledger_group,
       c.account,
       c.class_fld,
       c.paygroup,
       c.pay_end_dt,
       c.off_cycle,
       c.run_id,
       c.jrnl_ln_ref,
       MAX(c.line_descr),
       SUM(c.monetary_amount),
       c.position_nbr,
       c.um_deptid_hr,
       c.kk_amount_type
  FROM ps_um_hr_acctg_ln C
 GROUP BY c.fiscal_year,
          c.accounting_period,
          c.business_unit_gl,
          c.deptid,
          c.program_code,
          c.fund_code,
          c.project_id,
          c.operating_unit,
          c.journal_id,
          c.journal_date,
          c.journal_line,
          c.ledger,
          c.ledger_group,
          c.account,
          c.class_fld,
          c.paygroup,
          c.pay_end_dt,
          c.off_cycle,
          c.run_id,
          c.jrnl_ln_ref,
          c.position_nbr,
          c.um_deptid_hr,
          c.kk_amount_type;