DBA Data[Home] [Help]

APPS.FV_RECEIVABLES_ACTIVITY_PKG dependencies on FV_RECEIVABLES_ACTIVITY_TEMP

Line 160: DELETE FROM fv_receivables_activity_temp;

156: END IF;
157: -- purge the temp table
158: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_STATEMENT, l_module_name,
159: 'Purging Temporary Table...') ;
160: DELETE FROM fv_receivables_activity_temp;
161:
162: -- populate temp table for Part I section B and PartII SectionA and SectionB
163: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_STATEMENT, l_module_name,
164: 'Populating Temp Table with' ||

Line 1752: -- This procedure insert data in the fv_receivables_activity_temp

1748: -- ------------------------------------------------------------------
1749: -- Procedure Insert Row
1750: -- ------------------------------------------------------------------
1751: -- Insert_Row procedure is called from the <> <> procedure.
1752: -- This procedure insert data in the fv_receivables_activity_temp
1753: -- Table.
1754: -- ------------------------------------------------------------------
1755: PROCEDURE insert_row
1756: ( p_line_num VARCHAR2,

Line 1766: INSERT INTO fv_receivables_activity_temp (

1762:
1763: BEGIN
1764: l_module_name := g_module_name || 'Insert_Row.';
1765:
1766: INSERT INTO fv_receivables_activity_temp (
1767: LINE_NUM,
1768: DESCRIPTION,
1769: COUNT ,
1770: AMOUNT)

Line 1826: FROM fv_receivables_activity_temp ;

1822:
1823: l_module_name := g_module_name || 'Submit_Report.';
1824: SELECT COUNT(*)
1825: INTO vl_count
1826: FROM fv_receivables_activity_temp ;
1827:
1828: IF vl_count = 0 THEN
1829: vp_retcode := 1 ;
1830: vp_errbuf := 'No Data Found ' ;