Oracle Application Blog

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

Project Accounting – Useful Queries

Project Basic Query: select proj.carrying_out_organization_name  project_organization,   proj.segment1  project_number,   proj.name  Project_Short_Name,   proj.city ,   proj.region,   proj.long_name project_long_name,   proj.start_date  transaction_start_date,   proj.target_finish_date  Target_Finish_Date,   proj.project_type ,  …

Read More

Insert Run Report in Excel for Apps

Insert Run Report Feature in ExcelforApps Insert Run functionality is used to return sum, count, max etc for the datapoint(columns) in E4A Report. The value will be returned in the…

Read More

How to Use Associative array in select statement as normal database table

Associative array in select statement as normal database table Step 1 First Create Associative Array Type TYPE  assoc_array_type  IS TABLE OF VARCHAR2(150) INDEX BY BINARY_INTEGER; if required We can use…

Read More

File Moving and renaming using UNIX SHELL Script in EBS

#!/bin/bash ################################################################################# # File_Name    : imauanzstmtfilearchv.prog                                               …

Read More

ORACLE UTL_SMTP MAIL

How to Send SMTP MAIL to Multiple Recipents using ORACLE UTL_SMTP package —————————————————————————————— Below procedure shows how to send email to mutliple recipents CREATE OR REPLACE PROCEDURE XXCUST.XXX_SMTP_MAIL_NOTIF_PRC(errbuf  OUT VARCHAR2,…

Read More

Fusion HCM – Customizing the Global Cheque

1. Copy the Existing Check Template from the Location :  2. Paste the Copied Check Template to the Custom Folder 3. Edit the Template according to your Requirement 4. Login to Application with implementation user and…

Read More

Fusion HCM – Customizing the Global Payslip

1. Copy the Existing Pay slip Template & Sub Template from the Location : Human Capital Management -> Payroll -> Payment Distribution 2. Paste the Copied Payslip Template to the Custom…

Read More

Fusion HCM – Query for Payroll Costing Details

SELECT paaf.assignment_number, petf.base_element_name element_name,        (SELECT petf2.base_element_name           FROM pay_input_values_f piv2,                pay_element_types_f petf2        …

Read More

Zooming : Calling One Form from another Form using Personalization

1. Open the main form you want to personalize and go to   Help -> Diagnostics -> Custom Code -> Personalize 2. Add a record as seq 10 Description =…

Read More