IDEMPIERE-849 ORA-01730 on T_RV_RECONCILIATION

This commit is contained in:
Carlos Ruiz 2013-04-20 17:47:18 -05:00
parent f6a69197d4
commit 761cc1e77e
4 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,5 @@
CREATE OR REPLACE VIEW t_rv_reconciliation AS
SELECT f.*, t.ad_pinstance_id, t.matchcode
FROM rv_fact_acct f
JOIN t_reconciliation t ON f.fact_acct_id = t.fact_acct_id
;

View File

@ -0,0 +1,5 @@
CREATE OR REPLACE VIEW t_rv_reconciliation AS
SELECT f.*, t.ad_pinstance_id, t.matchcode
FROM rv_fact_acct f
JOIN t_reconciliation t ON f.fact_acct_id = t.fact_acct_id
;

View File

@ -0,0 +1,10 @@
-- 821_IDEMPIERE-137_GLReconciliation.sql
CREATE OR REPLACE VIEW t_rv_reconciliation AS
SELECT f.*, t.ad_pinstance_id, t.matchcode
FROM rv_fact_acct f
JOIN t_reconciliation t ON f.fact_acct_id = t.fact_acct_id
;
SELECT register_migration_script('201304201736_IDEMPIERE-849.sql') FROM dual
;

View File

@ -0,0 +1,12 @@
-- 821_IDEMPIERE-137_GLReconciliation.sql
DROP VIEW t_rv_reconciliation;
CREATE OR REPLACE VIEW t_rv_reconciliation AS
SELECT f.*, t.ad_pinstance_id, t.matchcode
FROM rv_fact_acct f
JOIN t_reconciliation t ON f.fact_acct_id = t.fact_acct_id
;
SELECT register_migration_script('201304201736_IDEMPIERE-849.sql') FROM dual
;