DBA Data[Home] [Help]

APPS.AP_VENDORS_PKG dependencies on AP_SUPPLIERS

Line 237: INSERT INTO ap_suppliers (

233: from sys.dual;
234: --
235: --
236: debug_info := 'Insert into PO_VENDORS';
237: INSERT INTO ap_suppliers (
238: vendor_id,
239: last_update_date,
240: last_updated_by,
241: vendor_name,

Line 588: debug_info := 'Insert into ap_suppliers';

584: from sys.dual;
585: --
586: --
587:
588: debug_info := 'Insert into ap_suppliers';
589: INSERT INTO ap_suppliers (
590: vendor_id,
591: last_update_date,
592: last_updated_by,

Line 589: INSERT INTO ap_suppliers (

585: --
586: --
587:
588: debug_info := 'Insert into ap_suppliers';
589: INSERT INTO ap_suppliers (
590: vendor_id,
591: last_update_date,
592: last_updated_by,
593: segment1,

Line 1042: UPDATE ap_suppliers

1038: p_employee_id => x_employee_id,
1039: X_calling_sequence => current_calling_sequence);
1040:
1041: debug_info := 'Update PO_VENDORS';
1042: UPDATE ap_suppliers
1043: SET
1044: vendor_id = x_Vendor_Id,
1045: last_update_date = x_Last_Update_Date,
1046: last_updated_by = x_Last_Updated_By,

Line 1220: UPDATE ap_suppliers

1216: );
1217: END IF;
1218: -- Bug 6216082 Ends.
1219:
1220: UPDATE ap_suppliers
1221: SET
1222: last_update_date = p_Last_Update_Date,
1223: last_updated_by = p_Last_Updated_By,
1224: segment1 = p_vendor_rec.Segment1,

Line 1518: FROM ap_suppliers

1514: X_calling_sequence IN VARCHAR2 ) IS
1515:
1516: CURSOR C IS
1517: SELECT *
1518: FROM ap_suppliers
1519: WHERE rowid = x_Rowid
1520: FOR UPDATE of Vendor_Id NOWAIT;
1521: Recinfo C%ROWTYPE;
1522: