DBA Data[Home] [Help]

APPS.JL_ZZ_GL_INFL_ADJ_PKG dependencies on FND_FLEX_KEY_API

Line 270: acct_flexfield fnd_flex_key_api.flexfield_type;

266: , p_curr_precision IN OUT NOCOPY NUMBER
267: , p_num_enabled_segments IN OUT NOCOPY INTEGER)
268: RETURN BOOLEAN IS
269:
270: acct_flexfield fnd_flex_key_api.flexfield_type;
271: acct_structure fnd_flex_key_api.structure_type;
272: acct_segments fnd_flex_key_api.segment_list;
273: statement VARCHAR2 (20);
274:

Line 271: acct_structure fnd_flex_key_api.structure_type;

267: , p_num_enabled_segments IN OUT NOCOPY INTEGER)
268: RETURN BOOLEAN IS
269:
270: acct_flexfield fnd_flex_key_api.flexfield_type;
271: acct_structure fnd_flex_key_api.structure_type;
272: acct_segments fnd_flex_key_api.segment_list;
273: statement VARCHAR2 (20);
274:
275: cannot_find_balancing_segment EXCEPTION;

Line 272: acct_segments fnd_flex_key_api.segment_list;

268: RETURN BOOLEAN IS
269:
270: acct_flexfield fnd_flex_key_api.flexfield_type;
271: acct_structure fnd_flex_key_api.structure_type;
272: acct_segments fnd_flex_key_api.segment_list;
273: statement VARCHAR2 (20);
274:
275: cannot_find_balancing_segment EXCEPTION;
276:

Line 303: fnd_flex_key_api.set_session_mode('customer_data');

299: ------------------------------------------------------------
300: -- Get flexfield information --
301: ------------------------------------------------------------
302: statement := 'FND FLEX';
303: fnd_flex_key_api.set_session_mode('customer_data');
304:
305: acct_flexfield := fnd_flex_key_api.find_flexfield
306: (appl_short_name => 'SQLGL'
307: , flex_code =>'GL#');

Line 305: acct_flexfield := fnd_flex_key_api.find_flexfield

301: ------------------------------------------------------------
302: statement := 'FND FLEX';
303: fnd_flex_key_api.set_session_mode('customer_data');
304:
305: acct_flexfield := fnd_flex_key_api.find_flexfield
306: (appl_short_name => 'SQLGL'
307: , flex_code =>'GL#');
308:
309: acct_structure := fnd_flex_key_api.find_structure

Line 309: acct_structure := fnd_flex_key_api.find_structure

305: acct_flexfield := fnd_flex_key_api.find_flexfield
306: (appl_short_name => 'SQLGL'
307: , flex_code =>'GL#');
308:
309: acct_structure := fnd_flex_key_api.find_structure
310: (flexfield => acct_flexfield
311: , structure_number => p_chart_of_accounts_id);
312:
313: ------------------------------------------------------------

Line 316: fnd_flex_key_api.get_segments (flexfield => acct_flexfield

312:
313: ------------------------------------------------------------
314: -- Get number of segments enabled and the segments names. --
315: ------------------------------------------------------------
316: fnd_flex_key_api.get_segments (flexfield => acct_flexfield
317: , structure => acct_structure
318: , enabled_only => TRUE
319: , nsegments => p_num_enabled_segments
320: , segments => acct_segments);