Previous  Next          Contents  Index  Navigation  Glossary  Library

Importing Your Asset Information

During this phase, use SQL*Plus to move your asset data into the FA_MASS_ADDITIONS table. Run the Mass Additions Status Report and the Unposted Mass Additions Report to check your data. Then prepare the assets using Prepare Mass Additions if necessary and post them using Mass Additions Post.

Once you have set up Oracle Assets, you are ready to import your asset information.

If you are importing asset information from another payables system, load the FA_MASS_ADDITIONS table directly. Then use Prepare Mass Additions and Mass Additions Post to add your assets to Oracle Assets.

If you are converting asset information from another assets system, use SQL*Plus to move the asset information from the interim table into the FA_MASS_ADDITIONS table. After you load and confirm the FA_MASS_ADDITIONS table, run Mass Additions Post to post your assets to Oracle Assets.

Suggestion: Load your data into the FA_MASS_ADDITIONS table in stages, posting and cleaning the table, to avoid exceeding tablespace allocations.

select segment_name, application_column_name
     from fnd_id_flex_segments
     where id_flex_code = 'GL#'
     and enabled_flag = 'Y'
     and id_flex_num in (
          select id_flex_num
          from fnd_id_flex_structures
          where id_flex_structure_name = 
                    Your Chart of Accounts Name
                    and id_flex_code = 'GL#')

select segment_name, application_column_name
     from fnd_id_flex_segments
     where id_flex_code = 'CAT#'
     and enabled_flag = 'Y'
     and id_flex_num in (
          select id_flex_num
         from fnd_id_flex_structures
          where id_flex_structure_name = 
                  Your Category Flexfield Name
                  and id_flex_code = 'CAT#')

select segment_name, application_column_name
     from fnd_id_flex_segments
     where id_flex_code = 'LOC#'
     and enabled_flag = 'Y'
     and id_flex_num in (
          select id_flex_num
          from fnd_id_flex_structures
         where id_flex_structure_name = 
                        Your Location Flexfield Name
                        and id_flex_code = 'LOC#')

See Also

About the Mass Additions Interface

Planning Your Import

Defining Oracle Assets for Mass Additions

FA_MASS_ADDITIONS Interface Table

Loading Your Asset Data

Finishing Your Import


         Previous  Next          Contents  Index  Navigation  Glossary  Library