DBA Data[Home] [Help]

APPS.BSC_MIGRATION dependencies on FND_FORM_FUNCTIONS_PKG

Line 8738: FND_FORM_FUNCTIONS_PKG.DELETE_ROW(X_FUNCTION_ID => h_function_id);

8734: OPEN c_function_id;
8735: FETCH c_function_id INTO h_function_id;
8736: IF c_function_id%FOUND THEN
8737: -- Delete the form function from the target
8738: FND_FORM_FUNCTIONS_PKG.DELETE_ROW(X_FUNCTION_ID => h_function_id);
8739: END IF;
8740: CLOSE c_function_id;
8741:
8742: -- Create the form function in the target

Line 8745: FND_FORM_FUNCTIONS_PKG.INSERT_ROW (

8741:
8742: -- Create the form function in the target
8743: SELECT fnd_form_functions_s.nextval INTO h_function_id FROM DUAL;
8744:
8745: FND_FORM_FUNCTIONS_PKG.INSERT_ROW (
8746: X_ROWID => h_rowid,
8747: X_FUNCTION_ID => h_function_id,
8748: X_WEB_HOST_NAME => h_web_host_name,
8749: X_WEB_AGENT_NAME => h_web_agent_name,