OCI custom boot volume size – Resize-Extend unallocated/free space in linux
When we are trying to create OCI Instance with more space specifying the custom size is not fully usable. Only a certain space is utilized and rest sits as free space. So now we are going to Resize...
View ArticleConverting Number to decimal in Oracle SQL
Its just a simple one using to_char(number, ‘99.999’) will convert the number to decimal with the values that we have given after decimal. select TO_CHAR(10, '9,999,999.999') from dual; Below is the...
View Articleunable to load firmware rtl_nic in Debian 11
I have Installed Debian 11 while installing I got a message to install non-free drivers. I thought it would be installed when Installing the OS like Ubuntu. But it did not. So after the Installation I...
View ArticleInstalling Emacs Reference Manual in Debian 11
To begin, you need to include non-free repos. Do this by appending non-free to the end of each entry in /etc/apt/sources.list You’ll need to run sudo apt-get update to refresh the package listing....
View ArticleQuery to get AR Receipt, Invoice and Bank Details in Oracle Apps
Below is the Query to get AR Receipt, Invoice and Bank Details. Before executing the Query set the MO_GLOBAL.SET_POLICY_CONTEXT and execute BEGIN MO_GLOBAL.SET_POLICY_CONTEXT('S', 83); END; --Applied...
View ArticlePrinting a Diamond Star/Rhombus Dynamically in Java
At early days of career I started to learn java. Below is the same code to print Diamond star or Rhombus geometric shape dynamically in java. import java.io.BufferedReader; import...
View ArticleRemoving Holidays and Week-off from a Date Range in Oracle Apps
To remove Holidays and Leave from a Date Range is to iterate/print/show all the days so that we can remove week-off and Holidays as Holidays can be dynamic based on the Organization SELECT...
View ArticleElimating Duplicates In ArrayList And Sorting Collection Elements in Java
At early days of career I started to learn java. Below is the same code to print Diamond star or Rhombus geometric shape dynamically in java. import java.util.ArrayList; import java.util.Collections;...
View ArticleQuery to get Element Link Information with concatenated segments/Code...
Sometimes the Oracle view will not fetch the data and so we need to initialize the session Execute the below insert command to initialize the session insert into fnd_sessions values...
View ArticleOracle apps Leave Pending with/Leave Approval in Progress Query
Got a requirement to get the list of Leaves pending in System based on a Leave. Here the leaves are taken from hr_api_transactions table as SSHR requests submitted for Approval will reside in...
View ArticleOracle Apps HRMS API Sample Harcoded API’s
My Colleague has shared this Document as it will be helpful for loading data in Oracle tables. Hardcoded HRMS API Examples (Doc ID 1505063.1)...
View ArticleQuery to get HRMS Active Positions in Oracle Apps EBz.
select HR_GENERAL.DECODE_AVAILABILITY_STATUS(pap.AVAILABILITY_STATUS_ID) AVAILABILITY_STATUS_DESC , pap.* from hr_all_positions_f pap where...
View ArticleQuery to get Ex-Employees/Terminated/Deactivated Employees in Oracle Apps
SELECT DISTINCT papf.employee_number "Employee Number", papf.title "Title", papf.first_name "First Name", papf.last_name "Last Name", --papf.national_identifier, papf.email_address "E-mail",...
View ArticleQuery to find all responsibilities assigned to a user in Oracle apps
SELECT fu.user_name "User Name", frt.responsibility_name "Responsibility Name", furg.start_date "Start Date", furg.end_date "End Date", fr.responsibility_key "Responsibility Key",...
View ArticleGL Dump, GL Query, GL Detail Query in Oracle apps
Query to get GL Dump or GL related detail information. SELECT glh.doc_sequence_value Header_voucher_number, gll.JE_LINE_NUM, glh.LAST_UPDATED_BY, glh.LAST_UPDATED_BY last_updated_by_user, gjb.name...
View ArticleAnnual Leave or Other Leave Accrual Query in Oracle Apps
SELECT DISTINCT pf.employee_number, pf.full_name, pf.business_group_id,...
View ArticleReconciled Payments and Invoices
Below is the Query for Invoices and Payments SELECT aia.invoice_num, aia.invoice_amount, aia.amount_paid total_amount_paid, aia.invoice_currency_code, asup.vendor_name supplier, apsa.vendor_site_code...
View ArticleQuery to get All Custom Objects in Oracle Apps(E-business Suite)
-- Form, OAF Pages select decode(fff.type,'FORM', ff.user_form_name, fff.function_name) name, 'Application' objects, decode(fff.type,'JSP', 'OAF Page',initcap(fff.type)) type, decode(fff.type,'FORM',...
View Articleerror: failed to push some refs to
Root Cause : Always before pushing it is good practice to pull the repo and then to push. To pull as rebase git pull -r <remote-git-repository> Once pulled now we can push the committed changes.
View ArticleOracle apps EBS AP Invoice Approval History Query
select * from AP_INV_APRVL_HIST_ALL where invoice_id = 559817;
View Article