DBA Data[Home] [Help]

APPS.FII_TIME_STRUCTURE_C dependencies on FII_UTIL

Line 24: fii_util.put_line(l_stmt);

20: begin
21:
22: l_stmt := 'truncate table '||g_schema||'.'||p_table_name;
23: if g_debug_flag = 'Y' then
24: fii_util.put_line(l_stmt);
25: end if;
26: execute immediate l_stmt;
27:
28: exception

Line 1338: fii_util.put_line(TO_CHAR(l_row_cnt)||' records has been populated to the Reporting Structure table for XTD and Rolling Periods');

1334:
1335: END LOOP;
1336:
1337: IF g_debug_flag = 'Y' THEN
1338: fii_util.put_line(TO_CHAR(l_row_cnt)||' records has been populated to the Reporting Structure table for XTD and Rolling Periods');
1339: END IF;
1340:
1341: fnd_stats.gather_table_stats(ownname => g_schema
1342: , tabname => 'FII_TIME_STRUCTURES'

Line 1346: fii_util.put_line('Gathered statistics for Reporting Structure table for XTD and Rolling Periods');

1342: , tabname => 'FII_TIME_STRUCTURES'
1343: );
1344:
1345: if g_debug_flag = 'Y' then
1346: fii_util.put_line('Gathered statistics for Reporting Structure table for XTD and Rolling Periods');
1347: end if;
1348:
1349: END LOAD_TIME_STRUCTURES;
1350: