DBA Data[Home] [Help]

APPS.MSC_PHUB_BUDGET_PKG dependencies on MSC_ST_BUDGETS_F

Line 193: delete from msc_st_budgets_f where st_transaction_id=p_st_transaction_id;

189: msc_phub_util.log('msc_phub_budget_pkg.export_budgets_f');
190: retcode := 0;
191: errbuf := null;
192:
193: delete from msc_st_budgets_f where st_transaction_id=p_st_transaction_id;
194: commit;
195:
196: l_sql :=
197: ' insert into msc_st_budgets_f('||

Line 197: ' insert into msc_st_budgets_f('||

193: delete from msc_st_budgets_f where st_transaction_id=p_st_transaction_id;
194: commit;
195:
196: l_sql :=
197: ' insert into msc_st_budgets_f('||
198: ' st_transaction_id,'||
199: ' error_code,'||
200: ' sr_instance_id,'||
201: ' organization_id,'||

Line 261: l_staging_table varchar2(30) := 'msc_st_budgets_f';

257: p_st_transaction_id number, p_plan_id number, p_plan_run_id number,
258: p_plan_type number, p_plan_start_date date, p_plan_cutoff_date date,
259: p_upload_mode number, p_overwrite_after_date date, p_def_instance_code varchar2)
260: is
261: l_staging_table varchar2(30) := 'msc_st_budgets_f';
262: l_fact_table varchar2(30) := 'msc_budgets_f';
263: l_result number := 0;
264: begin
265: msc_phub_util.log('msc_phub_budget_pkg.import_budgets_f');

Line 316: from msc_st_budgets_f

312: budget_value,
313: budget_value2,
314: fnd_global.user_id, sysdate,
315: fnd_global.user_id, sysdate, fnd_global.login_id
316: from msc_st_budgets_f
317: where st_transaction_id=p_st_transaction_id and error_code=0;
318:
319: msc_phub_util.log('msc_phub_budget_pkg.import_budgets_f: inserted='||sql%rowcount);
320: commit;