DBA Data[Home] [Help]

APPS.POS_VENDOR_PUB_PKG dependencies on AP_SUPPLIERS

Line 330: from ap_suppliers

326: l_count number;
327: begin
328: select count(*)
329: into l_count
330: from ap_suppliers
331: where upper(vendor_name) like upper(p_vendor_name);
332:
333: return l_count;
334:

Line 1536: from ap_suppliers where vendor_id = p_vendor_id;

1532:
1533: -- BUG 5926560
1534: if p_last_update_date is not NULL then
1535: select last_update_date into l_last_update_date
1536: from ap_suppliers where vendor_id = p_vendor_id;
1537: if l_last_update_date > p_last_update_date then
1538: x_error_msg := fnd_message.get_string('POS','POS_LOCK_SUPPLIER_ROW');
1539: x_return_status := 'E';
1540: return;