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 1024: UPDATE ap_suppliers

1020: p_employee_id => x_employee_id,
1021: X_calling_sequence => current_calling_sequence);
1022:
1023: debug_info := 'Update PO_VENDORS';
1024: UPDATE ap_suppliers
1025: SET
1026: vendor_id = x_Vendor_Id,
1027: last_update_date = x_Last_Update_Date,
1028: last_updated_by = x_Last_Updated_By,

Line 1202: UPDATE ap_suppliers

1198: );
1199: END IF;
1200: -- Bug 6216082 Ends.
1201:
1202: UPDATE ap_suppliers
1203: SET
1204: last_update_date = p_Last_Update_Date,
1205: last_updated_by = p_Last_Updated_By,
1206: segment1 = p_vendor_rec.Segment1,

Line 1492: FROM ap_suppliers

1488: X_calling_sequence IN VARCHAR2 ) IS
1489:
1490: CURSOR C IS
1491: SELECT *
1492: FROM ap_suppliers
1493: WHERE rowid = x_Rowid
1494: FOR UPDATE of Vendor_Id NOWAIT;
1495: Recinfo C%ROWTYPE;
1496: