DBA Data[Home] [Help]

APPS.BIS_FORM_FUNCTIONS_PUB dependencies on FND_FORM_FUNCTIONS_PKG

Line 60: FND_FORM_FUNCTIONS_PKG.INSERT_ROW(

56:
57: begin
58: select FND_FORM_FUNCTIONS_S.NEXTVAL into l_new_function_id from dual;
59:
60: FND_FORM_FUNCTIONS_PKG.INSERT_ROW(
61: X_ROWID => X_ROWID,
62: X_FUNCTION_ID => l_new_function_id,
63: X_WEB_HOST_NAME => null,
64: X_WEB_AGENT_NAME => null,

Line 136: FND_FORM_FUNCTIONS_PKG.INSERT_ROW(

132: l_application_id := p_application_id;
133: end if;
134:
135:
136: FND_FORM_FUNCTIONS_PKG.INSERT_ROW(
137: X_ROWID => l_ROWID,
138: X_FUNCTION_ID => l_new_function_id,
139: X_WEB_HOST_NAME => null,
140: X_WEB_AGENT_NAME => null,

Line 251: FND_FORM_FUNCTIONS_PKG.UPDATE_ROW(

247: l_formFunction_rec.maintenance_mode_support,
248: l_formFunction_rec.context_dependence;
249: CLOSE cFormFunction;
250:
251: FND_FORM_FUNCTIONS_PKG.UPDATE_ROW(
252: X_FUNCTION_ID => X_FUNCTION_ID,
253: X_WEB_HOST_NAME => l_formFunction_rec.web_host_name,
254: X_WEB_AGENT_NAME => l_formFunction_rec.web_agent_name,
255: X_WEB_HTML_CALL => l_formFunction_rec.web_html_call,

Line 368: FND_FORM_FUNCTIONS_PKG.UPDATE_ROW(

364:
365: l_formFunction_rec.region_code := p_REGION_CODE; --We need to update with null even in update case
366: l_formFunction_rec.region_application_id := p_REGION_APPLICATION_ID;
367:
368: FND_FORM_FUNCTIONS_PKG.UPDATE_ROW(
369: X_FUNCTION_ID => p_FUNCTION_ID,
370: X_WEB_HOST_NAME => l_formFunction_rec.web_host_name,
371: X_WEB_AGENT_NAME => l_formFunction_rec.web_agent_name,
372: X_WEB_HTML_CALL => l_formFunction_rec.web_html_call,

Line 452: FND_FORM_FUNCTIONS_PKG.DELETE_ROW(

448: select function_name into l_function_name
449: from fnd_form_functions
450: where function_id = p_function_id;
451:
452: FND_FORM_FUNCTIONS_PKG.DELETE_ROW(
453: X_FUNCTION_ID => p_FUNCTION_ID
454: );
455:
456: -- mdamle 01/03/2005 - Integrate with extension table

Line 583: FND_FORM_FUNCTIONS_PKG.DELETE_ROW(

579: x_msg_data => l_msg_data);
580:
581: end loop;
582:
583: FND_FORM_FUNCTIONS_PKG.DELETE_ROW(
584: X_FUNCTION_ID => p_FUNCTION_ID
585: );
586:
587: EXCEPTION