Supplier Deactivate through API
This document explain how to deactivate supplier through API. SET serveroutput on; DECLARE p_api_version NUMBER; p_init_msg_list VARCHAR2(200); p_commit VARCHAR2(200); p_validation_level NUMBER; x_return_status VARCHAR2(200); x_msg_count NUMBER; x_msg_data VARCHAR2(200); lr_vendor_rec apps.ap_vendor_pub_pkg.r_vendor_rec_type; lr_existing_vendor_rec ap_suppliers%ROWTYPE; l_msg VARCHAR2(200); p_vendor_id NUMBER; BEGIN — Initialize apps session fnd_global.apps_initialize(1234, 50833, 200); mo_global.init(‘SQLAP’);…
Read More