DBA Data[Home] [Help]

APPS.WF_WS_GEN dependencies on FND_FORM_FUNCTIONS_TL

Line 1332: from fnd_form_functions_tl

1328:
1329: is
1330: cursor c_base_function_tl(c_base_function_id in pls_integer) is
1331: select *
1332: from fnd_form_functions_tl
1333: where function_id = c_base_function_id;
1334:
1335: cursor c_function_name(c_function_id in number) is
1336: select function_name

Line 1402: from fnd_form_functions_tl

1398: c_function_id number,
1399: c_language in varchar2
1400: ) is
1401: select *
1402: from fnd_form_functions_tl
1403: where function_id = c_function_id
1404: and language = c_language
1405: for update ;
1406:

Line 1433: insert into FND_FORM_FUNCTIONS_TL

1429: fetch c_function_language into c_function_language_rec;
1430:
1431: if c_function_language%NOTFOUND then
1432:
1433: insert into FND_FORM_FUNCTIONS_TL
1434: (
1435: LANGUAGE,
1436: FUNCTION_ID,
1437: USER_FUNCTION_NAME,

Line 1462: update fnd_form_functions_tl

1458: );
1459:
1460: elsif c_function_language%FOUND then
1461:
1462: update fnd_form_functions_tl
1463: set user_function_name = p_user_function_name,
1464: description = p_description,
1465: source_lang = p_source_lang,
1466: last_update_date = sysdate,