DBA Data[Home] [Help]

APPS.FV_YE_CARRYFORWARD dependencies on GL_SETS_OF_BOOKS

Line 19: vp_sob_id Gl_Sets_Of_Books.set_of_books_id%TYPE ;

15: -- Parameter Global Variable Declarations
16: -- ======================================================================
17: vp_errbuf VARCHAR2(1000) ;
18: vp_retcode NUMBER := 0 ;
19: vp_sob_id Gl_Sets_Of_Books.set_of_books_id%TYPE ;
20: vp_carryfor_fyr Gl_Periods.period_year%TYPE ;
21: -- ======================================================================
22: -- Other Global Variable Declarations
23: -- ======================================================================

Line 24: vg_coa_id Gl_Sets_Of_Books.chart_of_accounts_id%TYPE;

20: vp_carryfor_fyr Gl_Periods.period_year%TYPE ;
21: -- ======================================================================
22: -- Other Global Variable Declarations
23: -- ======================================================================
24: vg_coa_id Gl_Sets_Of_Books.chart_of_accounts_id%TYPE;
25: vg_bal_seg_value varchar2(30);
26: vg_period_set_name Gl_Sets_Of_Books.period_set_name%TYPE;
27: vg_currency Gl_Sets_Of_Books.currency_code%TYPE;
28: vg_closing_period Gl_Period_Statuses.period_name%TYPE;

Line 26: vg_period_set_name Gl_Sets_Of_Books.period_set_name%TYPE;

22: -- Other Global Variable Declarations
23: -- ======================================================================
24: vg_coa_id Gl_Sets_Of_Books.chart_of_accounts_id%TYPE;
25: vg_bal_seg_value varchar2(30);
26: vg_period_set_name Gl_Sets_Of_Books.period_set_name%TYPE;
27: vg_currency Gl_Sets_Of_Books.currency_code%TYPE;
28: vg_closing_period Gl_Period_Statuses.period_name%TYPE;
29: vg_carryfor_period Gl_Period_Statuses.period_name%TYPE;
30: vg_start_date Gl_Period_Statuses.start_date%TYPE;

Line 27: vg_currency Gl_Sets_Of_Books.currency_code%TYPE;

23: -- ======================================================================
24: vg_coa_id Gl_Sets_Of_Books.chart_of_accounts_id%TYPE;
25: vg_bal_seg_value varchar2(30);
26: vg_period_set_name Gl_Sets_Of_Books.period_set_name%TYPE;
27: vg_currency Gl_Sets_Of_Books.currency_code%TYPE;
28: vg_closing_period Gl_Period_Statuses.period_name%TYPE;
29: vg_carryfor_period Gl_Period_Statuses.period_name%TYPE;
30: vg_start_date Gl_Period_Statuses.start_date%TYPE;
31: vg_closing_fyr Gl_Periods.period_year%TYPE;

Line 333: FROM Gl_Sets_Of_Books

329: END IF;
330: BEGIN
331: SELECT period_set_name
332: INTO vg_period_set_name
333: FROM Gl_Sets_Of_Books
334: WHERE set_of_books_id = vp_sob_id;
335: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
336: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_STATEMENT, l_module_name,' PERIOD SET NAME = '||VG_PERIOD_SET_NAME);
337: END IF;