DBA Data[Home] [Help]

APPS.SOA_GENERATE dependencies on FND_FORM_FUNCTIONS_TL

Line 1208: from fnd_form_functions_tl

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

Line 1278: from fnd_form_functions_tl

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

Line 1309: insert into FND_FORM_FUNCTIONS_TL

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

Line 1338: update fnd_form_functions_tl

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