API

Reading Outlook Emails with Microsoft Graph API using OAuth 2.0 Authentication

Introduction: – The Microsoft Graph API provides a powerful way to interact with a wide range of Microsoft 365 services, including Outlook, using a unified endpoint. By leveraging OAuth 2.0…

Read More

ITEM Category creation in EBS using API. 

Introduction:  This API will create Item categories in EBS.    SET SERVEROUTPUT ON;   DECLARE    v_return_status  VARCHAR2(1)   := NULL;    v_msg_count      NUMBER        := 0;    v_msg_data       VARCHAR2(2000);    v_errorcode      VARCHAR2(1000); …

Read More

Query to update payment terms for supplier site

Using Below script we can update payment terms for suppliers.       DECLARE      p_customer_profile_rec         hz_customer_profile_v2pub.customer_profile_rec_type;      xin_xout_object_version_number NUMBER;      x_return_status                VARCHAR2(2000);      x_msg_count                    NUMBER;      x_msg_data                     VARCHAR2(2000);     …

Read More

Oracle R12 Customer TaxPayer ID Update API

/*Upload the customer data that needs to be updated in a temp table*/ CREATE TABLE scratch.RITM0669580 (account_number VARCHAR2(30), tax_payer_id VARCHAR2(20), tax_reg_num VARCHAR2(50), status VARCHAR2(1), message VARCHAR2(1000)); / set serveroutput on;…

Read More

Oracle R12 Customer Remittance Email Update API

DECLARE x_return_status VARCHAR2 (200) := NULL; x_msg_count NUMBER := 0; x_msg_data VARCHAR2 (200) := NULL; t_output VARCHAR2 (200) := NULL; t_msg_dummy VARCHAR2 (200) := NULL; l_payee_upd_status iby_disbursement_setup_pub.ext_payee_update_tab_type; p_external_payee_tab_type iby_disbursement_setup_pub.external_payee_tab_type; p_ext_payee_id_tab_type…

Read More

Oracle R12 Customer Site Remittance Email Update API

DECLARE x_return_status VARCHAR2 (200) := NULL; x_msg_count NUMBER := 0; x_msg_data VARCHAR2 (200) := NULL; t_output VARCHAR2 (200) := NULL; t_msg_dummy VARCHAR2 (200) := NULL; l_payee_upd_status iby_disbursement_setup_pub.ext_payee_update_tab_type; p_external_payee_tab_type iby_disbursement_setup_pub.external_payee_tab_type; p_ext_payee_id_tab_type…

Read More

Script to delete the employee record using API in oracle

–Create Table create table papf_16082018 (person_id number, employee_number varchar2(10)); –Insert Data insert into papf_16082018 values (53687,’215677′); commit; update apps.fnd_user set employee_id=null where employee_id in                 (select distinct p.person_id from apps.per_all_people_f…

Read More

Dynamic Approver List for AME

Oracle has provided an API to get the dynamic list of approvers for AME. ame_dynamic_approval_pkg.get_ame_apprs_and_ins_list. We need to pass the transaction type id and transaction number. Rransaction Id is available…

Read More

How to programmatically close PO using PO_ACTIONS API

How to programmatically close PO using PO_ACTIONS API PO_ACTIONS.CLOSE_PO is the API used to programmatically close/final close Purchase Order. We have to pass P_ACTION parameter value as ‘CLOSE’/’FINALLY CLOSE’ depending…

Read More

Create Bulk GL Code Combinations Using API

DECLARE CURSOR c1    IS    SELECT  a.rowid row_id,a.* FROM    temp_gl_code a WHERE   process_flag= ‘N’;                 l_segment1        …

Read More