DBA Data[Home] [Help]

APPS.FEM_GL_POST_PROCESS_PKG dependencies on GL_BALANCES_DELTA

Line 5743: FROM GL_BALANCES_DELTA;

5739: -- 6. Cache the Maximum Delta Run ID
5740: -- ---------------------------------
5741: SELECT NVL(MAX(DELTA_RUN_ID), 0)
5742: INTO pv_max_delta_run_id
5743: FROM GL_BALANCES_DELTA;
5744:
5745: FEM_ENGINES_PKG.Tech_Message
5746: (p_severity => pc_log_level_statement,
5747: p_module => v_module,

Line 6962: -- or Encumbrance Type, so it'll only load balances from GL_BALANCES_DELTA

6958:
6959: ELSIF (v_load_method = 'I')
6960: THEN
6961: -- All load method codes are 'Incremental' and the balance type is Actual
6962: -- or Encumbrance Type, so it'll only load balances from GL_BALANCES_DELTA
6963: pv_from_gl_bal_flag := 'N';
6964: pv_from_gl_delta_flag := 'Y';
6965:
6966: ELSE

Line 6968: -- it'll load balances from both GL_BALANCES and GL_BALANCES_DELTA

6964: pv_from_gl_delta_flag := 'Y';
6965:
6966: ELSE
6967: -- Both codes exist and the balance type is Actual or Encumbrance Type, so
6968: -- it'll load balances from both GL_BALANCES and GL_BALANCES_DELTA
6969: pv_from_gl_bal_flag := 'Y';
6970: pv_from_gl_delta_flag := 'Y';
6971:
6972: END IF; -- IF (pv_ds_balance_type_cd = 'BALANCE' OR v_load_method = 'S')