Could any one tell me the steps of conversions and what
kind of validations and exceptions do we use during this
conversion? Please do answer in detail.
what program do we write in user exit in reports?
Answer Posted / prasad reddy
Hi,
In Oracle apps if you want to load data from legacy
system to Oracle application we go for conversion, if it is
one time process.
The following steps must be followed.
Load data from flat file to staging tables ( temp tables )
then write your own package or procedure to populate the
interface table.
Then finally you can run oracle seeded program to populate
the base table.
ex
----
Interface tables
MTL_SYSTEM_ITEMS_INTERFACE
MTL_ITEM_REVISIONS_INTERFACE
MTL_ITEM_CATEGORIES_INTERFACE
Base tables
MTL_SYSTEM_ITEMS_B
MTL_CATEGORIES_B
MTL_ITEM_REVISIONS_B
Concurrent program name is -> import items
Error table
------------
MTL_INTERFACE_ERRORS
Validations
-------------
Organization Code
SELECT organization_code
INTO l_organization_code
FROM org_organization_definitions
WHERE organization_code =
cur_rec.organization_code;
Inventory Org Id
SELECT organization_id
INTO l_organization_id
FROM mtl_parameters
WHERE organization_code = l_organization_code;
To check whether item is already exits
SELECT COUNT (*)
INTO l_item_count
FROM mtl_system_items_b
WHERE segment1 = cur_rec.segment1
AND organization_id = l_organization_id;
Item Type
IF cur_rec.item_type IS NOT NULL
THEN
SELECT lookup_code
INTO l_item_type
FROM fnd_common_lookups
WHERE lookup_type = 'ITEM_TYPE' AND meaning =
cur_rec.item_type;
very mandatory
mtl_system_items_interface
(
process_flag,
transaction_type,
item_number,
description,
organization_id,
set_process_id)
VALUES
(1,
'CREATE', or update
'Rev_hist_test', ----item_number
'IOI Revision Part', ----description
204,
1
);
I think the explanation could help you.
Regards,
-prasad
| Is This Answer Correct ? | 11 Yes | 5 No |
Post New Answer View All Answers
pls send me out bound code of supplers,site,bankiformation code pls as soon as
Tell me how to find the custom directory in front end?
what is the differences between internal requisition and internal sales order?
Can you define an erp system?
Hi, Anybody please send me the Oracle APPS 1i technical interview questions (Real time) as wel as sample resume also?
In which tables receopt application form Appliy to field Value will come. I know one table i.e, ra_customer_trx.trx_number. Could U please any one tell me other than this except(ra_customer_trx and ar_payment_schedules_all tables). plz mentioned tables_name.Column_name.
What is oracle soa suite and what are its different components?
How to move the one file from one instance to another instance? And your scripts also?
What is sca and how is it useful?
how can i print random rows in plsql table
What do you understand by concurrent programs?
What are the benefits of using soa architecture?
what is global tempory table?
What do you understand by a set of books?
what are the balancing segments in AR?