Sei sulla pagina 1di 3

All About Oracle Applications.....: How to fix error EC06:There is no co...

1 of 3

http://allaboutoracleapplication.blogspot.in/2014/09/how-to-fix-error-ec0...

Hello,I am Sagar Kumbhar.I have started my career as Oracle Apps Technical Consultant.So this is my sincere effort to share what I have learnt which
will helps other professionals to understand more functional/technical things about Oracle Applications.

Search This Blog

Various Technical/Functional Articles

Friday, September 12, 2014

About Me

How to fix error EC06:There is no conversion rate for this


currency, conversion type, and conversion date in oracle
GL

AP/AR Netting Sample SQL


API to associate AP Bank Account to
Supplier Site
API to Create Bank Account in Oracle AP
API to Create Bank Branch in Oracle AP
API to Create Bank in Oracle AP

Sagar Kumbhar

How to fix error EC06:There is no conversion rate for this


currency, conversion type, and conversion date in oracle
GL

API to validate gl accounting flexfields


Apps Initialization in TOAD/SQL
Developer/SQL*Plus

Please verify below columns of such errored records from gl_interface

Change Override address in workflow


notification mailer
Cron Job Configuration

CURRENCY_CODE
USER_CURRENCY_CONVERSION_TYPE
CURRENCY_CONVERSION_DATE

Different standard sql functions related


time date and timezone

Run below query to get details-

Hi, I am Sagar Kumbhar.


Decided to share what I have
learnt/know so that will be
helpful for others and for that i
could not find any other way
than blogging.
Suggestions/Feedback are
always welcome for
improvements :)
View my complete profile

Popular Posts

fnd_concurrent.wait_for_request
fnd_request.submit_request
FNDLOAD command for forms
personalization
FNDLOAD Commands
How to Add Text Form Field on rtf
template in XML/BI Publisher Report
How to calculate total of Oracle Sales
Order?

SELECT CURRENCY_CODE,
USER_CURRENCY_CONVERSION_TYPE,
CURRENCY_CONVERSION_DATE,GL.*
FROM GL.GL_INTERFACE GL
WHERE STATUS LIKE '%EC06%';
Once you have these details you have to verify for that currenct conversion rate is defined or not for
conversion date.

How to enable 'About this Page' on page?


How to find database version of system

SQL Table which holds daily exchange rateGL_DAILY_RATES

How to find Oracle Application


version/name and their module details

Run below query to get details-

How to enable Diagnostics?

How to fix invalid period issue in AP


How to fix invalid period issue in GL
How to Reset Oracle Application
Password From Backend
How to show Report Date in Local
Timezone instead of Server Timezone in
Oracle Apps
Important SQL's and Tables in Oracle GL
Open Period in GL
ORA-24813 cannot send or receive an
unsupported LOB
Oracle Account Payables Important SQL's

SELECT
FROM_CURRENCY, --currecy code of errored record
TO_CURRENCY,
CONVERSION_DATE, --CURRENCY_CONVERSION_DATE of errored record
CONVERSION_TYPE, --USER_CURRENCY_CONVERSION_TYPE of erroed record
CONVERSION_RATE,
GDR.*
FROM GL_DAILY_RATES GDR;
If you are not getting any record in this table for details of errored records. means that there is conversion
rate not defined for given conversion date of that currency

Oracle AP 1099 Processing


Oracle AP 1099 SQL to extract tax

Setup to define currency conversion rate for currency

Oracle AP Invoice Interface


Oracle API to Release Hold of Sale Order
Oracle API/SQL to convert Number into
Word
Oracle ASCP Planners
Oracle ASCP Standard Collection
Oracle Cash Management Bank
Statement Interface
Oracle Fixed Asset Important SQL's
Oracle Forms Personalization Examples
Oracle GL Budget Interface

Responsibility: General Ledger Super User


Login with this repsonsibility or any custom GL super user responsibility
Navigation:
Setup > Currencies > Rates > Types
First here verify that conversion type is defined. This is SER_CURRENCY_CONVERSION_TYPE of
errored record.
If not defined then first please define conversion type
SQL Table:
GL_DAILY_CONVERSION_TYPES

Oracle GL Error code EC06:No Coversion


Rate
Oracle GL Error code EP01:Invalid Period
Oracle GL Journal Interface
Oracle GL Posting Performance Issue
Oracle I-Expenses Overdue Receipts
Notifications Setup
Oracle Payables Accounting
Process(APACCENG)
Oracle R12 Subledger Related Various
Important Sql
Oracle Report Manager Configurations
Guide
Oracle Report Manager User Guide
Oracle SQL * Loader with Examples
Oracle Web ADI Configurations Guide
Oracle Web ADI User Guide

Navigation:
Setup > Currencies > Rates > Daily
If conversion type is defined , then check conversion rate is defined.
This is related to
CURRENCY_CODE,USER_CURRENCY_CONVERSION_TYPE,CURRENCY_CONVERSION_DATE of
errored record
If not defined then defined conversion rate for that date for given currency code.
SQL Table:
GL_DAILY_RATES

WFLOAD Command to
download/upload Oracle
Workflow
WFLOAD Command
WFLOAD Command to
download Oracle Workflow
Syntax- WFLOAD
<apps/pwd>@<connectstri
ng> 0 Y DOWNLOAD
FILE_...
SQL Query to Find
Scheduled Concurrent
Programs in System
SQL Query to Find
Scheduled Concurrent
Programs By running
below sql query in toad or
sql develper, you can get
list of scheduled concurr...
FNDLOAD command to
download/upload Oracle
forms personalization
FNDLOAD command to
download/upload form
personalization FNDLOAD
commands to download
form personalizationFNDLOAD <login>/...
Important SQL Queries
related to Oracle Fixed
Asset
Important SQL Queries
related to Oracle Fixed
Asset Developed for
version 11.5.10 --Below
sql to extract asset
information and...
Submit concurrent request
using
fnd_request.submit_reques
t api from sql/plsql
FND_REQUEST.SUBMIT.
REQUEST and
FND_CONCURRENT.WAI
T_FOR_REQUEST This is
an Oracle standard API
used to launch concurrent
request on Oracl...
Oracle AP Invoice Interface
How to use Payables
Open Interface Import
program (APXIIMPT) to
create invoices using AP
Invoice Interface tables
Oracle Applications 11...
SQL query to find expense
approver in Oracle Internet
Expenses
Oracle I-Expenses Query
built to pull data of active
employees and expenses
created after 1-jan-2013
--Below sql to give
expense detail...

Oracle XML Publisher Reports


Payables Accounting Process does Not

12/10/2016 7:04 AM

All About Oracle Applications.....: How to fix error EC06:There is no co...

2 of 3

http://allaboutoracleapplication.blogspot.in/2014/09/how-to-fix-error-ec0...

Account For Invoice Cancellation


Release Oracle ASCP Planned order as
Requisition
SQL to Derive Concurrent Managers
SQL to extract Oracle AP 1099 tax data
SQL to find active employee vendors in
AP
SQL to find active vendors in AP
SQL to find Latest Query Running in
database
SQL to find number of checks printed in
AP
SQL to find Oracle I-Expenses approver
SQL to find Oracle Internet Expenses
Overdue receipts
SQL to find Oracle Patch has applied or
not
SQL to Find Scheduled Concurrent
Programs
Unaccounted Transactions Report
(APXTRSWP)
Unlock Database Objects by Killing
Session
uuencode command to send email
attachments
WFLOAD Commands for Workflow

After defining types and rate, you can for importing those error rows of gl_interface, definately those will
get imported without any problem.
Posted by Sagar Kumbhar at 2:33 PM

Recommend this on Google


Labels: Oracle GL Error code EC06:No Coversion Rate
Sagar Kumbhar
Hi, I am Sagar Kumbhar. Decided to share what I have learnt/know so that will be helpful for others and for that i could
not find any other way than blogging. Suggestions/Feedback are always welcome for improvements :)

1 comment:
Sridevi K September 24, 2016 at 11:14 AM
Regards
Sridevi Koduru (Senior Oracle Apps Trainer Oracleappstechnical.com)
LinkedIn profile - https://in.linkedin.com/in/sridevi-koduru-9b876a8b
Please Contact for One to One Online Training on Oracle Apps Technical, Financials, SCM, SQL, PL/SQL,
D2K at training@oracleappstechnical.com | +91 - 9581017828.
Reply

Comment as:

Publish

Newer Post

Home

Older Post

Subscribe to: Post Comments (Atom)

12/10/2016 7:04 AM

All About Oracle Applications.....: How to fix error EC06:There is no co...

3 of 3

http://allaboutoracleapplication.blogspot.in/2014/09/how-to-fix-error-ec0...

12/10/2016 7:04 AM

Potrebbero piacerti anche