DBA Data[Home] [Help]

APPS.AP_WEB_DFLEX_PKG dependencies on ICX_SEC

Line 528: c_language := icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);

524: l_title AK_REGIONS_VL.NAME%TYPE;
525: l_where_clause varchar2(2000);
526:
527: begin
528: c_language := icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);
529: AP_WEB_DISC_PKG.getPrompts(601,'ICX_LOV',l_title,l_prompts);
530: l_where_clause := icx_call.encrypt2(c_where_clause);
531: temp1 := 'javascript:top.opener.top.framMain.lines.setProjectNumberBindValue();';
532: temp := htf.anchor(temp1||'LOV('''||c_attribute_app_id||''','''||c_attribute_code||''','''||c_region_app_id||''','''||c_region_code||''','''||c_form_name||''','''||c_frame_name||''','''||l_where_clause||''','''||c_js_where_clause||''')',

Line 2227: V_Date_Format := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));

2223: FOR i in 1..l_num_of_cust_fields LOOP
2224:
2225: GetValueSet(p_custom_fields_array(i).value_set,V_ValueSetInfo,V_ValueSetFormat);
2226: IF (V_ValueSetInfo.name = 'FND_STANDARD_DATE') AND (p_custom_fields_array(i).value IS NOT NULL) THEN
2227: V_Date_Format := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));
2228: V_Date := FND_DATE.string_to_date(p_custom_fields_array(i).value,V_Date_Format);
2229: IF (V_Date IS NOT NULL) THEN
2230: p_custom_fields_array(i).value := FND_DATE.date_to_canonical(V_Date);
2231: END IF;