DBA Data[Home] [Help]

APPS.PO_SHIPMENTS_SV7 dependencies on PO_MESSAGE_S

Line 49: po_message_s.sql_error('get_dest_type_dist',X_Progress,sqlcode);

45: when no_data_found then
46: X_distribs_exist := FALSE;
47: return(X_distribs_exist);
48: when others then
49: po_message_s.sql_error('get_dest_type_dist',X_Progress,sqlcode);
50: raise;
51:
52: end get_dest_type_dist;
53:

Line 91: po_message_s.sql_error('get_original_date',X_Progress,sqlcode);

87:
88: when no_data_found then
89: null;
90: when others then
91: po_message_s.sql_error('get_original_date',X_Progress,sqlcode);
92: raise;
93:
94: end get_original_date;
95:

Line 129: po_message_s.sql_error('get_original_date',X_Progress,sqlcode);

125:
126: when no_data_found then
127: null;
128: when others then
129: po_message_s.sql_error('get_original_date',X_Progress,sqlcode);
130: raise;
131:
132: end get_dist_num;
133:

Line 170: po_message_s.app_error('PO_PO_QTY_EXCEEDS_UNREL','QUANTITY',to_char(X_quantity),

166: GROUP BY (pll.quantity - nvl(pll.quantity_cancelled,0));
167:
168:
169: if X_unreleased_quantity < 0 then
170: po_message_s.app_error('PO_PO_QTY_EXCEEDS_UNREL','QUANTITY',to_char(X_quantity),
171: 'UNRELEASED', to_char(X_available_quantity));
172: end if;
173:
174: exception

Line 179: po_message_s.sql_error('check_available_quantity',X_Progress,sqlcode);

175:
176: when no_data_found then
177: null;
178: when others then
179: po_message_s.sql_error('check_available_quantity',X_Progress,sqlcode);
180: raise;
181:
182: end check_available_quantity;
183: