DBA Data[Home] [Help]

APPS.PAY_IP_UTILITY dependencies on FND_FLEX_DSC_API

Line 192: fnd_flex_dsc_api.set_session_mode('seed_data');

188: lv_val_set_name fnd_flex_value_sets.flex_value_set_name%TYPE;
189: BEGIN
190: hr_utility.set_location('pay_ip_utility.create_ele_info_dff_ctxt ',10);
191: /*hr_utility.trace_on(null,'DFF_FLEX'); */
192: fnd_flex_dsc_api.set_session_mode('seed_data');
193:
194: lv_sql_stmt := 'select fdfc.application_id,
195: fdfc.DESCRIPTIVE_FLEXFIELD_NAME
196: ,fdfc.DESCRIPTIVE_FLEX_CONTEXT_CODE

Line 231: lv_context_exists := fnd_flex_dsc_api.context_exists(

227:
228: hr_utility.set_location('pay_ip_utility.create_ele_info_dff_ctxt ',20);
229: lv_new_context_name := p_legislation_code||substr(lv_desc_flex_context_code,3);
230: hr_utility.trace('lv_new_context_name '||lv_new_context_name );
231: lv_context_exists := fnd_flex_dsc_api.context_exists(
232: p_appl_short_name => p_appl_short_name
233: ,p_flexfield_name => p_dff_name
234: ,p_context_code => lv_new_context_name
235: );

Line 241: fnd_flex_dsc_api.update_context(

237: pay_ip_startup_util.write_log('LOG',NULL,NULL,NULL);
238: pay_ip_startup_util.write_log('LOG','PAY_34073_IP_UPD_FLEX_CONTEXT',lv_new_context_name, NULL);
239:
240: hr_utility.trace('Updating the context '||lv_new_context_name );
241: fnd_flex_dsc_api.update_context(
242: p_appl_short_name => p_appl_short_name
243: ,p_flexfield_name => lv_desc_flexfield_name
244: ,p_desc_flex_context_code =>lv_new_context_name
245: ,p_desc_flex_context_name => lv_new_context_name

Line 257: fnd_flex_dsc_api.create_context(

253: hr_utility.trace('get_context_rec.DESCRIPTION '||lv_description);
254: pay_ip_startup_util.write_log('LOG',NULL,NULL,NULL);
255: pay_ip_startup_util.write_log('LOG','PAY_34072_IP_INS_FLEX_CONTEXT',lv_new_context_name, NULL);
256:
257: fnd_flex_dsc_api.create_context(
258: appl_short_name => p_appl_short_name
259: ,flexfield_name => lv_desc_flexfield_name
260: ,context_code => lv_new_context_name
261: ,context_name =>lv_new_context_name

Line 280: lv_segment_exists := fnd_flex_dsc_api.segment_exists(

276: lv_val_set_name :=NULL;
277: END IF;
278: CLOSE c_get_val_set_name;
279: hr_utility.set_location('pay_ip_utility.create_ele_info_dff_ctxt ',40);
280: lv_segment_exists := fnd_flex_dsc_api.segment_exists(
281: p_appl_short_name => p_appl_short_name
282: ,p_segment_name => get_segments_rec.END_USER_COLUMN_NAME
283: ,p_flexfield_name => p_dff_name
284: ,p_context_code => lv_new_context_name

Line 292: fnd_flex_dsc_api.modify_segment

288: hr_utility.trace('segments exists TRUE');
289: pay_ip_startup_util.write_log('LOG','PAY_34075_IP_UPD_FLEX_SEGMENT',get_segments_rec.END_USER_COLUMN_NAME, NULL);
290:
291:
292: fnd_flex_dsc_api.modify_segment
293: (
294: P_APPL_SHORT_NAME => p_appl_short_name,
295: P_FLEXFIELD_NAME => p_dff_name,
296: P_CONTEXT_CODE => lv_new_context_name,

Line 321: fnd_flex_dsc_api.create_segment(

317:
318: ELSE
319: hr_utility.trace('segments exists FALSE');
320: pay_ip_startup_util.write_log('LOG','PAY_34074_IP_INS_FLEX_SEGMENT',get_segments_rec.END_USER_COLUMN_NAME, NULL);
321: fnd_flex_dsc_api.create_segment(
322: appl_short_name => p_appl_short_name,
323: flexfield_name => p_dff_name,
324: context_name => lv_new_context_name,
325: name => get_segments_rec.END_USER_COLUMN_NAME,