DBA Data[Home] [Help]

APPS.SOA_GENERATE dependencies on FND_FORM_FUNCTIONS_TL

Line 1206: from fnd_form_functions_tl

1202:
1203: is
1204: cursor c_base_function_tl(c_base_function_id in pls_integer) is
1205: select *
1206: from fnd_form_functions_tl
1207: where function_id = c_base_function_id;
1208:
1209: cursor c_function_name(c_function_id in number) is
1210: select function_name

Line 1276: from fnd_form_functions_tl

1272: c_function_id number,
1273: c_language in varchar2
1274: ) is
1275: select *
1276: from fnd_form_functions_tl
1277: where function_id = c_function_id
1278: and language = c_language
1279: for update ;
1280:

Line 1307: insert into FND_FORM_FUNCTIONS_TL

1303: fetch c_function_language into c_function_language_rec;
1304:
1305: if c_function_language%NOTFOUND then
1306:
1307: insert into FND_FORM_FUNCTIONS_TL
1308: (
1309: LANGUAGE,
1310: FUNCTION_ID,
1311: USER_FUNCTION_NAME,

Line 1336: update fnd_form_functions_tl

1332: );
1333:
1334: elsif c_function_language%FOUND then
1335:
1336: update fnd_form_functions_tl
1337: set user_function_name = p_user_function_name,
1338: description = p_description,
1339: source_lang = p_source_lang,
1340: last_update_date = sysdate,