IDEMPIERE-849 ORA-01730 on T_RV_RECONCILIATION
This commit is contained in:
parent
f6a69197d4
commit
761cc1e77e
|
@ -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
|
||||
;
|
|
@ -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
|
||||
;
|
|
@ -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
|
||||
;
|
||||
|
|
@ -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
|
||||
;
|
||||
|
Loading…
Reference in New Issue