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
how can develope the po variance and po summary report? with tables mandatory columns and query please?
How can we import the data into a database using sql * loader?
What is instead of trigger in where we will use?
List of all the modules under Manufacturing, Finance and Distribution in oracle applications?
how can i print random rows in plsql table
How to retry multiple errored workflow processes? What is the access level in workflow used for? How do you define start and end functions in workflow? How does they differ from normal functions? Give me some workflow tables? What is the difference between a function and notification in workflow? I have sent two different notifications to two different users and I want to wait till both they are approved to send 3rd notification. How can you achieve it? What is item type and item key in workflow? How do you use attribute values in workflow messages? How do you use lookups in workflow? What are roles in workflow and how they are used? How do you download or upload a workflow from a server? What are steps to customize the workflow? What functions can you perform from workflow administrator responsibility? To send an email to the user workflow notification is the only way or is there any other ways to send it? Give me some workflow standard procedures? How can you run/start/kickoff workflow? What is wf_engine package used for? How many processes can each workflow contain? What is Runnable option in workflow? At what level it exists? What are different types of attributes in workflow? How do you reassign a notification? What is process in workflow? How can you send direct oracle form link through workflow notifications? How can you send a notification to multiple users? Can you change the list dynamically? Can you send html code in workflow notification? I have sent two different notifications to two different users and I want to wait till atleast one is approved to send 3rd notification. How can you achieve it?
how to print multi lay outs,muti currency,muti language in xml publisher
What are file in oracle.
pls send me out bound code of supplers,site,bankiformation code pls as soon as
what are the different transaction clauses in AR?
Do you know what are user profiles in apps. Any examples you can give?
Pls tel me the best text book for Oracle Apps 11i Tech? & I want D2K Text book also?
do you know is it possible to run the interface without using oracle apps?
Can we create tables in apps schema?
WHAT IS CUSTOM VIEW AND CUSTOM COMPONENT?