DBA Data[Home] [Help]

APPS.ICX_SEC dependencies on FND_FORM_FUNCTIONS

Line 1150: from FND_FORM_FUNCTIONS

1146: if l_responsibility_id = -1
1147: then
1148: select FUNCTION_ID
1149: into l_function_id
1150: from FND_FORM_FUNCTIONS
1151: where FUNCTION_ID = l_entry_sequence
1152: and FUNCTION_NAME = 'ICX_NAVIGATE_PLUG';
1153:
1154: l_responsibility_id := '';

Line 1165: from FND_FORM_FUNCTIONS fff,

1161: into l_resp_appl_id,
1162: l_security_group_id,
1163: l_responsibility_id,
1164: l_function_id
1165: from FND_FORM_FUNCTIONS fff,
1166: FND_MENU_ENTRIES fme,
1167: ICX_PAGE_PLUGS ipe
1168: where ipe.PLUG_ID = p_plug_id
1169: and fme.MENU_ID = ipe.MENU_ID

Line 3586: from FND_FORM_FUNCTIONS

3582: if p_function_id is null
3583: then
3584: select FUNCTION_ID
3585: into l_function_id
3586: from FND_FORM_FUNCTIONS
3587: where FUNCTION_NAME = p_function_name;
3588: else
3589: l_function_id := p_function_id;
3590: end if;

Line 3720: from FND_FORM_FUNCTIONS

3716: if p_function_id is null and p_function_name is not null
3717: then
3718: select FUNCTION_ID, TYPE
3719: into l_function_id, l_function_type
3720: from FND_FORM_FUNCTIONS
3721: where FUNCTION_NAME = p_function_name;
3722: elsif p_function_name is null and p_function_id is not null
3723: then
3724: select FUNCTION_ID, TYPE

Line 3726: from FND_FORM_FUNCTIONS

3722: elsif p_function_name is null and p_function_id is not null
3723: then
3724: select FUNCTION_ID, TYPE
3725: into l_function_id, l_function_type
3726: from FND_FORM_FUNCTIONS
3727: where FUNCTION_ID = p_function_id;
3728: else
3729: l_function_id := '';
3730: l_function_type := '';

Line 3839: from fnd_form_functions

3835: begin
3836:
3837: select web_host_name,web_agent_name,web_html_call,web_encrypt_parameters
3838: into l_web_host_name,l_web_agent_name,l_web_html_call,l_web_encrypt_parameters
3839: from fnd_form_functions
3840: where FUNCTION_NAME = p_function_code
3841: and WEB_SECURED = 'Y';
3842:
3843: l_url := '';

Line 4438: from FND_FORM_FUNCTIONS a,

4434:
4435: END IF;
4436: select count(*)
4437: INTO n_hits
4438: from FND_FORM_FUNCTIONS a,
4439: fnd_menu_entries_vl b,
4440: fnd_responsibility_vl c,
4441: fnd_user_resp_groups d,
4442: fnd_security_groups_vl e