DBA Data[Home] [Help]

APPS.QA_CHAR_UPDATE_PKG dependencies on QA_SPECS

Line 687: UPDATE QA_SPECS

683: )
684: IS
685: l_api_name CONSTANT VARCHAR2(30) := 'update_specs';
686: BEGIN
687: UPDATE QA_SPECS
688: SET spec_element_value = p_new_value
689: WHERE char_id = p_char_id
690: AND spec_element_value = p_old_value;
691:

Line 697: 'Updated ' || SQL%ROWCOUNT || ' Rows for QA_SPECS.spec_element_value for char_id: ' || p_char_id

693: FND_LOG.string
694: (
695: FND_LOG.level_statement,
696: g_pkg_name || '.' || l_api_name,
697: 'Updated ' || SQL%ROWCOUNT || ' Rows for QA_SPECS.spec_element_value for char_id: ' || p_char_id
698: );
699: END IF;
700: END update_specs;
701: