DBA Data[Home] [Help]

APPS.AMW_VIOLATION_PUB dependencies on FND_FORM_FUNCTIONS_VL

Line 1940: from FND_FORM_FUNCTIONS_VL

1936: close CONSTRAINT_ENTRIES;
1937:
1938: for i in 1 .. g_constraint_function_id_list.COUNT loop
1939: select USER_FUNCTION_NAME into m_function_name
1940: from FND_FORM_FUNCTIONS_VL
1941: where FUNCTION_ID = g_constraint_function_id_list(i);
1942:
1943: if i = 1 then m_constraint_details := m_function_name;
1944: else m_constraint_details := substrb((m_constraint_details || ', ' || m_function_name), 1, 4000);

Line 2120: from FND_FORM_FUNCTIONS_VL

2116:
2117: for i in 1 .. g_constraint_function_id_list.COUNT loop
2118:
2119: select USER_FUNCTION_NAME into m_function_name
2120: from FND_FORM_FUNCTIONS_VL
2121: where FUNCTION_ID = g_constraint_function_id_list(i);
2122:
2123: if i = 1 then m_constraint_details := m_function_name;
2124: else m_constraint_details := m_constraint_details || ', ' || m_function_name;