DBA Data[Home] [Help]

APPS.GR_SAFETY_PHRASES_B_PKG dependencies on GR_ITEM_SAFETY_PHRASES

Line 1007: FROM gr_item_safety_phrases isp

1003:
1004: CURSOR c_get_item_safety_phrases
1005: IS
1006: SELECT COUNT(*)
1007: FROM gr_item_safety_phrases isp
1008: WHERE isp.safety_phrase_code = p_safety_phrase_code;
1009:
1010: BEGIN
1011:

Line 1029: l_msg_data := l_msg_data || 'gr_item_safety_phrases, ';

1025: OPEN c_get_item_safety_phrases;
1026: FETCH c_get_item_safety_phrases INTO l_record_count;
1027: IF l_record_count <> 0 THEN
1028: l_return_status := 'E';
1029: l_msg_data := l_msg_data || 'gr_item_safety_phrases, ';
1030: END IF;
1031: CLOSE c_get_item_safety_phrases;
1032:
1033: