Migration V4 to V7 -- journal tables

Dear all,
I got a problem during the migration of the journal tables.
I could succesfully migrate
Jrndeptable
Jrndtll
JrnTrans
JrnMemberset
But I have a problem with the JrnApplication table:
he gives following error during transfer on the server:
Validating (Error)
Messages
Error 0xc0202049: Data Flow Task 1: Failure inserting into the read-only column "IDJ".
(SQL Server Import and Export Wizard)
Does someone knows a solution?
Thanks

Hi,
   IDJ is an identity field, you should insert the other columns, IDJ will be generated automatically. So, you have to run something like:
insert into jrn<application>  (column1, column2, ccolumn3, ...)
Select column1, column2, column3, .... from jrn<applicationv4.2>
Hope this can help you,
Mihaela

Similar Messages

  • URGENT NEED HELP : JOURNALING TABLES AND TRIGGERS GENERATION

    Hi
    I need generate journaling tables for any tables to audit the update, delete statements executed for the users. I captured an existant schema, then and I change the derfiniton of the target tables, setting the value of Journaling to "Server".
    But, when I generate the DDL statements, the triggers of the journaling tables don't appears in the sql file.
    ¿What is the error?
    I thing that Designer generates the triggers and the journal tables, ¿It's true?
    Thanks in advance.
    Xavi

    You have to use the "Generate Table API" menu option. This will generate the "journalling" triggers.
    HTH
    Roel

  • JOURNAL 이 2번 POST 되어 BALANCE 와 JOURNAL TABLE 상에 금액 차이가 발생했을 경우

    제품 : FIN_GL
    작성날짜 : 2003-05-13
    JOURNAL 이 2번 POST 되어 BALANCE 와 JOURNAL TABLE 상에 금액 차이가 발생했을 경우
    ==============================================================
    PURPOSE
    gl_balances 와 gl_je_lines table 상의 금액이 차이가 날 경우 data fix 방법을 제공한다.
    Problem Description
    gl_balances 와 gl_je_lines table의 금액 차이가 나서 조사해 본 결과 일부 journal 이 2번 post 되었음을 발견하였다.
    Workaround
    Solution Description
    1. 해당하는journal batch를 Reverse 처리한 다음 Posting 까지 완료한다.
    2. delete 해야 할 data를 다시 한번 아래 문장으로 확인한다.
    set heading off
    set linesize 79
    column je_batch_id format a79 trunc
    column je_header_id format a79 trunc
    column je_line_num format a79 trunc
    column batch format a79 trunc
    column header format a79 trunc
    column entered_cr format a79 trunc
    column entered_dr format a79 trunc
    column code_combination_id format a79 trunc
    select
    'gjb.je_batch_id :'||' '|| gjb.je_batch_id je_batch_id,
    'gjh.je_header_i :'||' '|| gjh.je_header_id je_header_id,
    'gjb.name :'||' '|| gjb.name batch,
    'gjh.name header :'||' '|| gjh.name header,
    'gjl.je_line_num :'||' '|| gjl.je_line_num je_line_num,
    'gjl.entered_cr :'||' '|| gjl.entered_cr entered_cr,
    'gjl.entered_dr :'||' '|| gjl.entered_dr entered_dr,
    'gjl.code_combination_id :'||' '|| gjl.code_combination_id
    code_combination_id
    from gl_je_lines gjl, gl_je_batches gjb, gl_je_headers gjh
    where gjb.je_batch_id = gjh.je_batch_id
    and gjh.je_header_id = gjl.je_header_id
    and gjb.set_of_books_id = &set_of_books
    and gjb.name like '%Reversed_Batch_Name%';
    3. 위의 문장으로 delete 해야할 batch_id와 je_header_id 를 확인 한 후 아래 문장으로 data를 backup 해둔다. (만약의 경우를 대비해 반드시 backup한다.)
    create table gl_batch_temp as
    (select * from gl_je_batches
    where set_of_books_id=&set_of_books
    and je_batch_id=&batch_id);
    create table gl_header_temp as
    (select * from gl_je_headers
    where set_of_books_id=&set_of_books
    and je_header_id=&header_id);
    create table gl_line_temp as
    (select * from gl_je_lines
    where set_of_books_id=&set_of_books
    and je_header_id=&header_id);
    4. 아래 문장으로 해당 데이타를 gl_je_batches와 gl_je_headers, gl_je_lines 테이블에서 delete한다.
    delete from gl_je_batches where
    set_of_books_id = &set_of_books
    and je_batch_id= &batch_id;
    delete from gl_je_headers where
    set_of_books_id = &set_of_books
    and je_header_id= %je_header_id;
    delete from gl_je_lines where
    set_of_books_id = &set_of_books
    and je_header_id= &je_header_id;
    모든 작업 완료후에는 balance table과 gl_je_liens 테이블의 data가 일치하는지 다시 한번 확인해주세요.
    Reference Documents
    Note 132003.1

  • Journal tables in SQL Developer Data Modeler

    In my database I use journal tables, which can be generated automatically by Oracle Designer.
    Now that I'm trying to start using SQL Developer Data Modeler, I can't find how to make journal tables with it.
    Does anyone know whether Data Modeler supports journal tables or not? And if it does, how can I generate one?

    No automatic generation you have to create them manually - use copy/paste to speed up the process.
    Philip

  • Migration from sql server 2005 tables to oracle tables.

    Hi,
    Kindly give the steps to migrate from sql server 2005 tables to oracle tables.
    Kindly advise
    Oracle database version:
    Oracle Database 10g Release 10.2.0.1.0 - Production
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE 10.2.0.1.0 Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Edited by: 873127 on Jul 18, 2011 9:46 PM

    Are you migrating or taking continual updates?
    If migrating it might be worth considering The SQLDeveloper Migration Workbench (which moves more than just data)..
    http://www.oracle.com/technetwork/database/migration/sqldevmigrationworkbench-132899.pdf
    Cheers
    David

  • How to handle journal table using JPA+TopLink

    Hi,
    I am using JDev10.1.3.3 with Swing and EJB + JPA + TopLink using Oracle database. Every business table has a journal table. Does TopLink have any journal features or do I have to write my own code to insert data into the journal table.
    Thanks,
    Jim

    Depends what's in your journal table? TopLink does have support for historization (see HistoryPolicy or docs).
    Otherwise you could use TopLink events to insert into the table, or use database triggers.
    -- James : http://www.eclipselink.org

  • Is there a link between the Journal tables and the Marketing Document tables?

    Hi Everyone,
    Is there a link back from the Journal Tables (e.g.: OJDT and / or JDT1) to the Marketing Documents tables (e.g.: OINV and / or INV1)?
    If there is a link can you please let me know what it is?
    Kind Regards,
    David

    David..
    Try This
    Select T1.RefDate,
    Case
    When T1.TransType=13 Then 'Invoice'
    When T1.TransType=14 Then 'A/R Credit Memo'
    When T1.TransType=15 Then 'Delivery Note'
    When T1.TransType=16 Then 'Delivery Return'
    When T1.TransType=162 Then 'Stock Revaluation'
    When T1.TransType=18 Then 'Purchase Bill'
    When T1.TransType=19 Then 'A/P Credit Memo'
    When T1.TransType=20 Then 'GRPO'
    When T1.TransType=202 Then 'Work Order'
    When T1.TransType=21 Then 'Goods Return'
    When T1.TransType=24 Then 'Incoming Payment'
    When T1.TransType=30 Then 'Journal'
    When T1.TransType=46 Then 'Outgoing Payment'
    When T1.TransType=59 Then 'Goods Receipt'
    When T1.TransType=60 Then 'Goods Issue'
    When T1.TransType=67 Then 'Stock Transfer'
    Else T1.TransType
    End [TransType],
    T1.TransId,
    Case
    -- Sales A/R
    When T1.TransType = 13 Then (Select isnull(Comments, '') From OINV Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Invoice
    When T1.TransType = 14 Then (Select isnull(Comments, '') From ORIN Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- A/R Credit Memo
    When T1.TransType = 15 Then (Select isnull(Comments, '') From ODLN Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Delivery
    When T1.TransType = 16 Then (Select isnull(Comments, '') From ORDN Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Delivery Return
    -- Purchase A/P
    When T1.TransType = 18 Then (Select isnull(Comments, '') From OPCH Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Purchase Bill
    When T1.TransType = 19 Then (Select isnull(Comments, '') From ORPC Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- A/P Credit Memo
    When T1.TransType = 20 Then (Select isnull(Comments, '') From OPDN Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- GRPO
    When T1.TransType = 21 Then (Select isnull(Comments, '') From ORPD Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Goods Return
    -- Production
    When T1.TransType = 202 Then (Select isnull(Comments,'') From OWOR Where DocNum = T1.BaseRef and PostDate = T1.RefDate) -- Work Order
    -- Banking
    When T1.TransType = 24 Then (Select isnull(Comments, '') From ORCT Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Incoming Payment
    When T1.TransType = 46 Then (Select isnull(Comments, '') From OVPM Where DocNum = T1.BaseRef and CardCode = T1.ShortName) -- Outgoing Payment
    When T1.TransType = 30 Then (Select ISNULL(LineMemo, '') From JDT1 Where Ref1 = T1.Ref1 and ShortName = T1.ShortName) --  Journal
    -- Inventory
    When T1.TransType = 59 Then (Select ISNULL(Comments, '') From OIGE Where DocNum = T1.Ref1 and DocDate = T1.RefDate) -- Goods Receipt
    When T1.TransType = 60 Then (Select ISNULL(Comments, '') From OIGN Where DocNum = T1.Ref1 and DocDate = T1.RefDate) -- Goods Issue
    When T1.TransType = 67 Then (Select ISNULL(Comments, '') From OWTR Where DocNum = T1.Ref1 and DocDate = T1.RefDate) -- Stock Transfer
    When T1.TransType = 162 Then (Select ISNULL(Comments, '') From OMRV Where DocNum = T1.Ref1 and DocDate = T1.RefDate) -- Stock Revaluation
    Else ''
    End [Remarks],
    T1.LineMemo,
    Case
    When exists (Select AcctCode From OACT Where AcctCode = T1.ContraAct)
    Then (Select AcctName From OACT Where AcctCode = T1.ContraAct)
    else (Select CardName From OCRD Where CardCode = T1.ContraAct)
    End [Account],
    Case
    When T1.Debit=0.0
    Then 0.0
    Else T1.Debit
    End Debit,
    Case
    When T1.Credit=0.0
      Then 0.0
    Else T1.Credit
    End Credit
    From JDT1 T1
    Where T1.TransType <> -3
    And T1.RefDate Between @FromDate and @ToDate
    And T1.ShortName = @Account
    Order By T1.RefDate,
    T1.TransId
    Regards
    Kennedy

  • Journal table business rules

    We have a package in the database in which we use the TAPI INS procedure to insert data into a table.
    How should we open an close the transaction so that for every insert record a record in the journal table is created.
    We have created journalling business rules. A normal INSERT INTO statement works (because we also use the TAPI triggers). But if we use a cursor loop and within the loop the TAPI INS statement, only 1 record is created in the journal table (the first record that was inserted).
    Should we place the openening and closing of the transaction inside or outside of the cursor loop?
    The current code is outside the loop, like this:
    qms_transaction_mgt.open_transaction
    ( p_trans_opened_by => 'myprocedure'
    for r_import in c_import
    loop
    l_rec.id := Null;
    l_rec.code := r_import.code;
    l_rec.description := r_import.description;
    l_ind.id := False;
    l_ind.code := True;
    l_ind.description := True;
    cg$my_table.ins(l_rec, l_ind);
    end loop;
    qms_transaction_mgt.close_transaction
    ( p_trans_opened_by => 'myprocedure'
    commit;
    Anyone have a suggestion how solve this?

    The only way we can circumvent this problem is by not using the TAPI procedure, but use normal DML (INSERT, UPDATE).

  • Querying journal tables

    Hello !!!
    I intend to build a module where an authorized end-user can see the content of a journal table and run some queries on it (history of a specific file or actions performed by a given user). So, I would like to know if implementing indexes on a journal table is acceptable (both for performance and maintainance of the application). What could be the associated problems and do you know a more standard or better approach ?
    I thank you very much,
    Denis.

    What you want is to join the 2 tables to return a single resultset:
    http://en.wikipedia.org/wiki/Join_(SQL)
    http://www.w3schools.com/Sql/sql_join.asp
    SELECT profilePic, firstname, surname, eventName
    FROM clients
        INNER JOIN events ON events.clientID = clients.clientID
    WHERE clients.clientID = #URL.clientID#
    Mack

  • CDC Journal Tables in a differenct location

    Is it possible to setup the journalizing tables in a different location than the source system, even a different schema in the database? I am not allowed to alter the structure of the source schema.
    Thanks.

    Another option would be to connect to the source schema through a db link, but not sure how to set that up through Topology manager or where the journal tables would be setup?
    Thanks

  • Journal tables for Oracle Objects

    Hi.
    How can I create Journal tables for database tables including columns with datatype being a Nested table. I am trying to this in Oracle Designer.
    Thanks.

    Hi,
    check this table <b>TADIR</b> .
    Enter OBJECT = PROG
    and see in SE16.
    follow this link for sample program.
    http://abap4.tripod.com/Upload_and_Download_ABAP_Source_Code.html
    regards,
    Ashok Reddy

  • Issue in data migration of PO contract (Updating table A215)

    Hi  All,
    I doing data migration for PO contract throught BDC, I wanted to update the table A215,
    I can't see the field of A215 on PO contract transaction screen (i.e. Transaction ME33K ).
    Can anybody tell me how to load the data in A215 thorugh BDC.
    Regards,
    Sagar

    How is this A215 table maintained manually? Thru ME33K  or a different transaction like MEK1?
    you are saying you do BDC, are yoou using a SAP given report or did you record the maintenance transaction yourself in SHDB?

  • Migration (import) of simple Access table+screen to Apex is failing

    Hi,
    I have tried Exporting and then migrating an Access application - but have had repeated failures on the import step. These attempts are on the Oracle Application Express environment for evaluating Apex - I have a Workspace allocation (wsmihail1) on the Oracle database ( my schema is DBS1). User id is [email protected]
    Now, I have tried creating a Real simple Access application - 1 simple table & 1 form & 1 comand button !!
    Still crash::
    In APEX Create Migration Project screen / step :::::
    - try to Import db2.sql ....
    KEEP getting ::
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ERR-1021 Unable to run "function body returning boolean" validation.
    FYI::::
    THE db2.sql file is copied to here:::
    REM This SQL script was generated by the Oracle Migration Workbench
    REM Exporter for Microsoft Access on 19/10/2007 17:02:59
    REM Release: 10.2.0.2.0
    REM Version: Microsoft Access 2002
    REM Do not modify this file as any modification will invalidate the export
    REM and subsequent migration of your Microsoft Access database
    set define off
    set verify off
    set serveroutput on size 1000000
    set feedback off
    WHENEVER SQLERROR EXIT SQL.SQLCODE ROLLBACK
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACCESS (
         p_dbid => 1,
         p_dbname => 'db2',
         p_dbsize => '176KB',
         p_dbpathname => 'C:\db2.mdb',
         p_dbuser => 'db2',
         p_dbpassword => ' ',
         p_isappdb => 1,
         p_isattacheddb => 0,
         p_convertdb => 1,
         p_jetversion => 4.0,
         p_accessversion => 'MS Access 2000',
         p_build => 501,
         p_collatingorder => 1033,
         p_querytimeout => 60,
         p_startupform => NULL,
         p_startupshowstatusbar => 1
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_TABLES (
         p_dbid => 1,
         p_tblid => 1,
         p_tblname => 'Table1',
         p_primarykey => 1,
         p_cnvtablestruct => 1,
         p_cnvmovedata => 1,
         p_cnvri => 1,
         p_cnvvalidation => 1,
         p_cnvdefault => 1,
         p_cnvaddtimestamp => 1,
         p_attachtablebacktoaccess => 1,
         p_savepassword => 0,
         p_cnvmakeupdateable => 1,
         p_retainlocalcopy => 0,
         p_syncwithserver => 1,
         p_ownerid => 1,
         p_validationtext => ' ',
         p_validationrule => ' ',
         p_numberofrows => 4,
         p_cachingtable => 0,
         p_description => ' ',
         p_attributes => 0,
         p_conflicttable => NULL,
         p_datecreated => '20071019164930',
         p_lastupdated => '20071019164934',
         p_recordcount => 4,
         p_orderbyon => 1,
         p_replicafilter => NULL,
         p_sourcetablename => ' ',
         p_updatable => 0
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_COLUMNS (
         p_dbid => 1,
         p_colid => 1,
         p_tblid => 1,
         p_colname => 'ID',
         p_coltype => 4,
         p_coltypedesc => 'Long',
         p_colautoincr => 0,
         p_nextcountervalue => 0,
         p_maxlengthsource => 0,
         p_avglengthsource => 0,
         p_coltextsize => 4,
         p_allowzerolength => 0,
         p_defaultvalue => '0',
         p_colrequired => 1,
         p_colcollatingorder => 1033,
         p_colordposition => 1,
         p_validationrule => ' ',
         p_validationtext => ' ',
         p_columndescription => ' ',
         p_columnhidden => 1,
         p_columnorder => 0,
         p_columnwidth => '-1',
         p_decimalplaces => 255,
         p_foreignname => ' ',
         p_validateonset => 1
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_COLUMNS (
         p_dbid => 1,
         p_colid => 2,
         p_tblid => 1,
         p_colname => 'Desc',
         p_coltype => 10,
         p_coltypedesc => 'Text',
         p_colautoincr => 0,
         p_nextcountervalue => 0,
         p_maxlengthsource => 0,
         p_avglengthsource => 0,
         p_coltextsize => 50,
         p_allowzerolength => -1,
         p_defaultvalue => ' ',
         p_colrequired => 1,
         p_colcollatingorder => 1033,
         p_colordposition => 2,
         p_validationrule => ' ',
         p_validationtext => ' ',
         p_columndescription => ' ',
         p_columnhidden => 1,
         p_columnorder => 0,
         p_columnwidth => '-1',
         p_decimalplaces => 0,
         p_foreignname => ' ',
         p_validateonset => 1
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_INDEXES (
         p_dbid => 1,
         p_indid => 1,
         p_tblid => 1,
         p_indname => 'ID',
         p_cnvindex => 1,
         p_isprimary => 0,
         p_isunique => 0,
         p_isforeign => 0,
         p_ignorenulls => 0,
         p_isrequired => 0,
         p_distinctcount => 4,
         p_isclustered => 0
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_IDX_COLS (
         p_dbid => 1,
         p_indcolid => 1,
         p_indid => 1,
         p_colid => 1,
         p_colorder => 1,
         p_tblid => 1,
         p_colname => 'ID'
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_INDEXES (
         p_dbid => 1,
         p_indid => 2,
         p_tblid => 1,
         p_indname => 'PK_Table1',
         p_cnvindex => 1,
         p_isprimary => 1,
         p_isunique => 1,
         p_isforeign => 0,
         p_ignorenulls => 0,
         p_isrequired => 1,
         p_distinctcount => 4,
         p_isclustered => 0
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_IDX_COLS (
         p_dbid => 1,
         p_indcolid => 2,
         p_indid => 2,
         p_colid => 1,
         p_colorder => 1,
         p_tblid => 1,
         p_colname => 'ID'
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_TAB_PERM (
         p_dbid => 1,
         p_tblid => 1,
         p_userid => 1,
         p_permissionid => 1,
         p_permission => 1048319,
         p_permission_desc => ' DB_SEC_CREATE DB_SEC_FULLACCESS DB_SEC_DELETE DB_SEC_READSEC DB_SEC_WRITESEC DB_SEC_WRITEOWNER DB_SEC_FRMRPT_READDEF DB_SEC_FRMRPT_WRITEDEF DB_SEC_MAC_READDEF DB_SEC_MAC_WRITEDEF DB_SEC_MAC_EXECUTE DB_SEC_MOD_READDEF DB_SEC_MOD_WRITEDEF '
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS (
         p_dbid => 1,
         p_formid => 1,
         p_formname => 'MyForm',
         p_afterdelconfirm => ' ',
         p_afterinsert => ' ',
         p_afterupdate => ' ',
         p_allowadditions => 0,
         p_allowdeletions => 0,
         p_allowedits => 0,
         p_allowediting => 0,
         p_allowfilters => 0,
         p_allowupdating => 1,
         p_autocenter => 0,
         p_autoresize => 0,
         p_backcolor => -2147483633,
         p_beforedelconfirm => ' ',
         p_beforeinsert => ' ',
         p_beforeupdate => ' ',
         p_borderstyle => 2,
         p_formcaption => 'MyForm',
         p_closebutton => 0,
         p_controlbox => 0,
         p_count => 5,
         p_currentview => 0,
         p_cycle => 0,
         p_dataentry => 1,
         p_datasheetbackcolor => 16777215,
         p_datasheetcellseffect => 0,
         p_datasheetfontheight => 10,
         p_datasheetfontitalic => 1,
         p_datasheetfontname => 'Arial',
         p_datasheetfontunderline => 1,
         p_datasheetfontweight => 400,
         p_datasheetforecolor => 0,
         p_datasheetgridlinesbehavior => 3,
         p_datasheetgridlinescolor => 12632256,
         p_defaultediting => 2,
         p_defaultview => 0,
         p_dividinglines => 0,
         p_fastlaserprinting => 0,
         p_filter => ' ',
         p_filteron => 1,
         p_frozencolumns => 1,
         p_gridX => 10,
         p_gridY => 10,
         p_hasmodule => 0,
         p_helpcontextid => 0,
         p_helpfile => ' ',
         p_hwnd => 590738,
         p_insideheight => 2265,
         p_insidewidth => 5490,
         p_keypreview => 1,
         p_layoutforprint => 1,
         p_logicalpagewidth => 9012,
         p_maxbutton => 0,
         p_menubar => ' ',
         p_minbutton => 0,
         p_minmaxbuttons => 3,
         p_modal => 1,
         p_navigationbuttons => 0,
         p_onactivate => ' ',
         p_onapplyfilter => ' ',
         p_onclick => ' ',
         p_onclose => ' ',
         p_oncurrent => ' ',
         p_ondblclick => ' ',
         p_ondeactivate => ' ',
         p_ondelete => ' ',
         p_onerror => ' ',
         p_onfilter => ' ',
         p_ongotfocus => ' ',
         p_onkeydown => ' ',
         p_onkeypress => ' ',
         p_onkeyup => ' ',
         p_onload => ' ',
         p_onlostfocus => ' ',
         p_onmousedown => ' ',
         p_onmousemove => ' ',
         p_onmouseup => ' ',
         p_onopen => ' ',
         p_onresize => ' ',
         p_ontimer => ' ',
         p_onunload => ' ',
         p_openargs => 'True',
         p_orderby => ' ',
         p_orderbyon => 1,
         p_painting => 0,
         p_palettesource => '(Default)',
         p_picture => '(NONE)',
         p_picturealignment => 2,
         p_picturesizemode => 0,
         p_picturetiling => 1,
         p_picturetype => 0,
         p_popup => 1,
         p_recordlocks => 0,
         p_recordselectors => 0,
         p_recordsettype => 0,
         p_recordsource => 'Table1',
         p_rowheight => -1,
         p_scrollbars => 3,
         p_shortcutmenu => 0,
         p_shortcutmenubar => ' ',
         p_showgrid => 0,
         p_tag => ' ',
         p_timerinterval => 0,
         p_toolbar => ' ',
         p_viewsallowed => 0,
         p_visible => 0,
         p_whatsthisbutton => 1,
         p_width => 4044,
         p_windowheight => 2970,
         p_windowwidth => 5910
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_CONTROLS (
         p_dbid => 1,
         p_formid => 1,
         p_controlid => 1,
         p_controlname => 'ID',
         p_controltype => 109,
         p_eventprocprefix => 'ID',
         p_inselection => 1,
         p_left => 1677,
         p_parent => 'MyForm',
         p_section => 0,
         p_tag => ' ',
         p_top => 114,
         p_visible => 0,
         p_backcolor => -2147483643,
         p_backstyle => 1,
         p_boundcolumn => NULL,
         p_ctrlcaption => ' ',
         p_columncount => NULL,
         p_columnheads => ' ',
         p_columnwidths => ' ',
         p_controlsource => 'ID',
         p_controltiptext => ' ',
         p_defaultvalue => ' ',
         p_displaywhen => 0,
         p_enabled => 0,
         p_fontbold => 1,
         p_fontitalic => 1,
         p_fontname => 'MS Sans Serif',
         p_fontsize => 8,
         p_fontunderline => 1,
         p_fontwheight => NULL,
         p_forecolor => -2147483640,
         p_format => ' ',
         p_height => 255,
         p_helpcontextid => 0,
         p_limittolist => 1,
         p_linkchildfields => ' ',
         p_linkmasterfields => ' ',
         p_listrows => NULL,
         p_multirow => 1,
         p_onchange => ' ',
         p_onclick => ' ',
         p_ondblclick => ' ',
         p_onkeydown => ' ',
         p_onkeypress => ' ',
         p_onkeyup => ' ',
         p_onmousedown => ' ',
         p_onmousemove => ' ',
         p_onmouseup => ' ',
         p_optionvalue => NULL,
         p_pageindex => NULL,
         p_picture => ' ',
         p_picturealignment => NULL,
         p_pictureresizemode => NULL,
         p_picturetiling => 1,
         p_picturetype => NULL,
         p_rowsource => ' ',
         p_rowsourcetype => ' ',
         p_shortcutmenubar => ' ',
         p_sourceobject => ' ',
         p_statusbartext => ' ',
         p_style => NULL,
         p_tabfixedheight => NULL,
         p_tabfixedwidth => NULL,
         p_tabindex => 0,
         p_tabstop => 0,
         p_textalign => 0,
         p_textfontcharset => 0,
         p_width => 900
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_CONTROLS (
         p_dbid => 1,
         p_formid => 1,
         p_controlid => 2,
         p_controlname => 'ID_Label',
         p_controltype => 100,
         p_eventprocprefix => 'ID_Label',
         p_inselection => 1,
         p_left => 57,
         p_parent => 'ID',
         p_section => 0,
         p_tag => ' ',
         p_top => 114,
         p_visible => 0,
         p_backcolor => -2147483633,
         p_backstyle => 0,
         p_boundcolumn => NULL,
         p_ctrlcaption => 'ID',
         p_columncount => NULL,
         p_columnheads => ' ',
         p_columnwidths => ' ',
         p_controlsource => ' ',
         p_controltiptext => ' ',
         p_defaultvalue => ' ',
         p_displaywhen => 0,
         p_enabled => 1,
         p_fontbold => 1,
         p_fontitalic => 1,
         p_fontname => 'MS Sans Serif',
         p_fontsize => 8,
         p_fontunderline => 1,
         p_fontwheight => NULL,
         p_forecolor => -2147483630,
         p_format => ' ',
         p_height => 255,
         p_helpcontextid => 0,
         p_limittolist => 1,
         p_linkchildfields => ' ',
         p_linkmasterfields => ' ',
         p_listrows => NULL,
         p_multirow => 1,
         p_onchange => ' ',
         p_onclick => ' ',
         p_ondblclick => ' ',
         p_onkeydown => ' ',
         p_onkeypress => ' ',
         p_onkeyup => ' ',
         p_onmousedown => ' ',
         p_onmousemove => ' ',
         p_onmouseup => ' ',
         p_optionvalue => NULL,
         p_pageindex => NULL,
         p_picture => ' ',
         p_picturealignment => NULL,
         p_pictureresizemode => NULL,
         p_picturetiling => 1,
         p_picturetype => NULL,
         p_rowsource => ' ',
         p_rowsourcetype => ' ',
         p_shortcutmenubar => ' ',
         p_sourceobject => ' ',
         p_statusbartext => ' ',
         p_style => NULL,
         p_tabfixedheight => NULL,
         p_tabfixedwidth => NULL,
         p_tabindex => NULL,
         p_tabstop => 1,
         p_textalign => 0,
         p_textfontcharset => 0,
         p_width => 1560
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_CONTROLS (
         p_dbid => 1,
         p_formid => 1,
         p_controlid => 3,
         p_controlname => 'Desc',
         p_controltype => 109,
         p_eventprocprefix => 'Desc',
         p_inselection => 1,
         p_left => 1677,
         p_parent => 'MyForm',
         p_section => 0,
         p_tag => ' ',
         p_top => 456,
         p_visible => 0,
         p_backcolor => -2147483643,
         p_backstyle => 1,
         p_boundcolumn => NULL,
         p_ctrlcaption => ' ',
         p_columncount => NULL,
         p_columnheads => ' ',
         p_columnwidths => ' ',
         p_controlsource => 'Desc',
         p_controltiptext => ' ',
         p_defaultvalue => ' ',
         p_displaywhen => 0,
         p_enabled => 0,
         p_fontbold => 1,
         p_fontitalic => 1,
         p_fontname => 'MS Sans Serif',
         p_fontsize => 8,
         p_fontunderline => 1,
         p_fontwheight => NULL,
         p_forecolor => -2147483640,
         p_format => ' ',
         p_height => 255,
         p_helpcontextid => 0,
         p_limittolist => 1,
         p_linkchildfields => ' ',
         p_linkmasterfields => ' ',
         p_listrows => NULL,
         p_multirow => 1,
         p_onchange => ' ',
         p_onclick => ' ',
         p_ondblclick => ' ',
         p_onkeydown => ' ',
         p_onkeypress => ' ',
         p_onkeyup => ' ',
         p_onmousedown => ' ',
         p_onmousemove => ' ',
         p_onmouseup => ' ',
         p_optionvalue => NULL,
         p_pageindex => NULL,
         p_picture => ' ',
         p_picturealignment => NULL,
         p_pictureresizemode => NULL,
         p_picturetiling => 1,
         p_picturetype => NULL,
         p_rowsource => ' ',
         p_rowsourcetype => ' ',
         p_shortcutmenubar => ' ',
         p_sourceobject => ' ',
         p_statusbartext => ' ',
         p_style => NULL,
         p_tabfixedheight => NULL,
         p_tabfixedwidth => NULL,
         p_tabindex => 1,
         p_tabstop => 0,
         p_textalign => 0,
         p_textfontcharset => 0,
         p_width => 2310
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_CONTROLS (
         p_dbid => 1,
         p_formid => 1,
         p_controlid => 4,
         p_controlname => 'Desc_Label',
         p_controltype => 100,
         p_eventprocprefix => 'Desc_Label',
         p_inselection => 1,
         p_left => 57,
         p_parent => 'Desc',
         p_section => 0,
         p_tag => ' ',
         p_top => 456,
         p_visible => 0,
         p_backcolor => -2147483633,
         p_backstyle => 0,
         p_boundcolumn => NULL,
         p_ctrlcaption => 'Desc',
         p_columncount => NULL,
         p_columnheads => ' ',
         p_columnwidths => ' ',
         p_controlsource => ' ',
         p_controltiptext => ' ',
         p_defaultvalue => ' ',
         p_displaywhen => 0,
         p_enabled => 1,
         p_fontbold => 1,
         p_fontitalic => 1,
         p_fontname => 'MS Sans Serif',
         p_fontsize => 8,
         p_fontunderline => 1,
         p_fontwheight => NULL,
         p_forecolor => -2147483630,
         p_format => ' ',
         p_height => 255,
         p_helpcontextid => 0,
         p_limittolist => 1,
         p_linkchildfields => ' ',
         p_linkmasterfields => ' ',
         p_listrows => NULL,
         p_multirow => 1,
         p_onchange => ' ',
         p_onclick => ' ',
         p_ondblclick => ' ',
         p_onkeydown => ' ',
         p_onkeypress => ' ',
         p_onkeyup => ' ',
         p_onmousedown => ' ',
         p_onmousemove => ' ',
         p_onmouseup => ' ',
         p_optionvalue => NULL,
         p_pageindex => NULL,
         p_picture => ' ',
         p_picturealignment => NULL,
         p_pictureresizemode => NULL,
         p_picturetiling => 1,
         p_picturetype => NULL,
         p_rowsource => ' ',
         p_rowsourcetype => ' ',
         p_shortcutmenubar => ' ',
         p_sourceobject => ' ',
         p_statusbartext => ' ',
         p_style => NULL,
         p_tabfixedheight => NULL,
         p_tabfixedwidth => NULL,
         p_tabindex => NULL,
         p_tabstop => 1,
         p_textalign => 0,
         p_textfontcharset => 0,
         p_width => 1560
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_CONTROLS (
         p_dbid => 1,
         p_formid => 1,
         p_controlid => 5,
         p_controlname => 'Command4',
         p_controltype => 104,
         p_eventprocprefix => 'Command4',
         p_inselection => 1,
         p_left => 2891,
         p_parent => 'MyForm',
         p_section => 0,
         p_tag => ' ',
         p_top => 56,
         p_visible => 0,
         p_backcolor => NULL,
         p_backstyle => NULL,
         p_boundcolumn => NULL,
         p_ctrlcaption => 'Command4',
         p_columncount => NULL,
         p_columnheads => ' ',
         p_columnwidths => ' ',
         p_controlsource => ' ',
         p_controltiptext => ' ',
         p_defaultvalue => ' ',
         p_displaywhen => 0,
         p_enabled => 0,
         p_fontbold => 1,
         p_fontitalic => 1,
         p_fontname => 'MS Sans Serif',
         p_fontsize => 8,
         p_fontunderline => 1,
         p_fontwheight => NULL,
         p_forecolor => 0,
         p_format => ' ',
         p_height => 340,
         p_helpcontextid => 0,
         p_limittolist => 1,
         p_linkchildfields => ' ',
         p_linkmasterfields => ' ',
         p_listrows => NULL,
         p_multirow => 1,
         p_onchange => ' ',
         p_onclick => '[Event Procedure]',
         p_ondblclick => ' ',
         p_onkeydown => ' ',
         p_onkeypress => ' ',
         p_onkeyup => ' ',
         p_onmousedown => ' ',
         p_onmousemove => ' ',
         p_onmouseup => ' ',
         p_optionvalue => NULL,
         p_pageindex => NULL,
         p_picture => '(NONE)',
         p_picturealignment => NULL,
         p_pictureresizemode => NULL,
         p_picturetiling => 1,
         p_picturetype => 0,
         p_rowsource => ' ',
         p_rowsourcetype => ' ',
         p_shortcutmenubar => ' ',
         p_sourceobject => ' ',
         p_statusbartext => ' ',
         p_style => NULL,
         p_tabfixedheight => NULL,
         p_tabfixedwidth => NULL,
         p_tabindex => 2,
         p_tabstop => 0,
         p_textalign => NULL,
         p_textfontcharset => 0,
         p_width => 964
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_MODULES (
         p_dbid => 1,
         p_moduleid => 1,
         p_formid => 1,
         p_modulename => 'Form_MyForm',
         p_countofdeclarationlines => 1,
         p_countoflines => 21,
         p_lines => 'Option Compare Database
    NULL
    Private Sub Command4_Click()
    NULL
    Dim varX As Variant
    varX = MsgBox(Chr(34)Click [OK] to quit app or [Cancel] to stay.Chr(34), vbYesNo)
    If varX = vbYes Then
    MsgBox Chr(34)Exit appChr(34)
    Application.Quit
    Else
    NULL
    MsgBox Chr(34)StayChr(33)Chr(34)
    NULL
    End If
    NULL
    End Sub
         p_moduletype => 1
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_FORMS_PERM (
         p_dbid => 1,
         p_formid => 1,
         p_userid => 1,
         p_permissionid => 1,
         p_permission => 1048575,
         p_permission_desc => ' DB_SEC_CREATE DB_SEC_FULLACCESS DB_SEC_DELETE DB_SEC_READSEC DB_SEC_WRITESEC DB_SEC_WRITEOWNER DB_SEC_FRMRPT_EXECUTE DB_SEC_FRMRPT_READDEF DB_SEC_FRMRPT_WRITEDEF DB_SEC_FRMRPT_EXECUTE DB_SEC_MAC_READDEF DB_SEC_MAC_WRITEDEF DB_SEC_MAC_EXECUTE DB_SEC_MOD_READDEF DB_SEC_MOD_WRITEDEF '
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_GROUPS (
         p_dbid => 1,
         p_groupid => 1,
         p_grpname => 'Admins'
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_GROUPS (
         p_dbid => 1,
         p_groupid => 2,
         p_grpname => 'Users'
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_USERS (
         p_dbid => 1,
         p_userid => 1,
         p_username => 'admin'
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_GRPSMEMBERS (
         p_dbid => 1,
         p_grpmbrid => 1,
         p_userid => 1,
         p_groupid => 1
    end;
    begin
    WWV_MIG_ACC_LOAD.INS_WWV_MIG_ACC_GRPSMEMBERS (
         p_dbid => 1,
         p_grpmbrid => 2,
         p_userid => 1,
         p_groupid => 2
    end;
    +++++++++++++++++++++++++++++++++++++++++++
    The associated .xml file is :::
    <?xml version="1.0" encoding="UTF-8" ?>
    - <!-- this file was generated by the Oracle Migration Workbench Exporter for Microsoft Access 10.2.0.2.0 on 19/10/2007 17:02:59
    -->
    - <!-- Do not modify this file as any modification will invalidate the export and subsequent migration of your Microsoft Access database
    -->
    - <DATABASES>
    - <DATABASE>
    <DBID>1</DBID>
    <DBNAME>db2</DBNAME>
    <DBSIZE>1</DBSIZE>
    <DBPATHNAME>C:\db2.mdb</DBPATHNAME>
    <DBUSER>db2</DBUSER>
    <DBPASSWORD>oracle</DBPASSWORD>
    <ISAPPDB>1</ISAPPDB>
    <ISATTACHEDDB>0</ISATTACHEDDB>
    <CONVERTDB>1</CONVERTDB>
    <VERSION>4.0</VERSION>
    <ACCESSVERSION>MS Access 2000</ACCESSVERSION>
    <BUILD>501</BUILD>
    <COLLATINGORDER>1033</COLLATINGORDER>
    <QUERYTIMEOUT>60</QUERYTIMEOUT>
    <STARTUPFORM />
    <STARTUPSHOWSTATUSBAR>1</STARTUPSHOWSTATUSBAR>
    - <TABLES>
    - <TABLE PRIMARY_KEY="1">
    <TBLID>1</TBLID>
    <DBID>1</DBID>
    <TBLNAME>Table1</TBLNAME>
    <CNVTABLESTRUCT>1</CNVTABLESTRUCT>
    <CNVMOVEDATA>1</CNVMOVEDATA>
    <CNVRI>1</CNVRI>
    <CNVVALIDATION>1</CNVVALIDATION>
    <CNVDEFAULT>1</CNVDEFAULT>
    <CNVADDTIMESTAMP>1</CNVADDTIMESTAMP>
    <ATTACHTABLEBACKTOACCESS>1</ATTACHTABLEBACKTOACCESS>
    <SAVEPASSWORD>0</SAVEPASSWORD>
    <CNVMAKEUPDATEABLE>1</CNVMAKEUPDATEABLE>
    <RETAINLOCALCOPY>0</RETAINLOCALCOPY>
    <SYNCWITHSERVER>1</SYNCWITHSERVER>
    <OWNERID>1</OWNERID>
    <VALIDATIONTEXT />
    <VALIDATIONRULE />
    <NUMBEROFROWS>4</NUMBEROFROWS>
    <CACHINGTABLE>0</CACHINGTABLE>
    <DESCRIPTION />
    <ATTRIBUTES>0</ATTRIBUTES>
    <CONFLICTTABLE />
    <DATECREATED>19/10/2007 16:49:30</DATECREATED>
    <LASTUPDATED>19/10/2007 16:49:34</LASTUPDATED>
    <RECORDCOUNT>4</RECORDCOUNT>
    <ORDERBYON>1</ORDERBYON>
    <REPLICAFILTER />
    <SOURCETABLENAME />
    <UPDATABLE>0</UPDATABLE>
    - <COLUMNS>
    - <COLUMN>
    <COLID>1</COLID>
    <TBLID>1</TBLID>
    <DBID>1</DBID>
    <COLNAME>ID</COLNAME>
    <COLTYPE>4</COLTYPE>
    <COLTYPEDESC>Long</COLTYPEDESC>
    <COLAUTOINCR>0</COLAUTOINCR>
    <NEXTCOUNTERVALUE>0</NEXTCOUNTERVALUE>
    <MAXLENGTHSOURCE>0</MAXLENGTHSOURCE>
    <AVGLENGTHSOURCE>0</AVGLENGTHSOURCE>
    <COLTEXTSIZE>4</COLTEXTSIZE>
    <ALLOWZEROLENGTH>0</ALLOWZEROLENGTH>
    <DEFAULTVALUE>0</DEFAULTVALUE>
    <COLREQUIRED>1</COLREQUIRED>
    <COLCOLLATINGORDER>1033</COLCOLLATINGORDER>
    <COLORDPOSITION>1</COLORDPOSITION>
    <VALIDATIONRULE />
    <VALIDATIONTEXT />
    <COLUMNDESCRIPTION />
    <COLUMNHIDDEN>1</COLUMNHIDDEN>
    <COLUMNORDER>0</COLUMNORDER>
    <COLUMNWIDTH>-1</COLUMNWIDTH>
    <DECIMALPLACES>255</DECIMALPLACES>
    <FOREIGNNAME />
    <VALIDATEONSET>1</VALIDATEONSET>
    </COLUMN>
    - <COLUMN>
    <COLID>2</COLID>
    <TBLID>1</TBLID>
    <DBID>1</DBID>
    <COLNAME>Desc</COLNAME>
    <COLTYPE>10</COLTYPE>
    <COLTYPEDESC>Text</COLTYPEDESC>
    <COLAUTOINCR>0</COLAUTOINCR>
    <NEXTCOUNTERVALUE>0</NEXTCOUNTERVALUE>
    <MAXLENGTHSOURCE>0</MAXLENGTHSOURCE>
    <AVGLENGTHSOURCE>0</AVGLENGTHSOURCE>
    <COLTEXTSIZE>50</COLTEXTSIZE>
    <ALLOWZEROLENGTH>-1</ALLOWZEROLENGTH>
    <DEFAULTVALUE />
    <COLREQUIRED>1</COLREQUIRED>
    <COLCOLLATINGORDER>1033</COLCOLLATINGORDER>
    <COLORDPOSITION>2</COLORDPOSITION>
    <VALIDATIONRULE />
    <VALIDATIONTEXT />
    <COLUMNDESCRIPTION />
    <COLUMNHIDDEN>1</COLUMNHIDDEN>
    <COLUMNORDER>0</COLUMNORDER>
    <COLUMNWIDTH>-1</COLUMNWIDTH>
    <DECIMALPLACES>0</DECIMALPLACES>
    <FOREIGNNAME />
    <VALIDATEONSET>1</VALIDATEONSET>
    </COLUMN>
    </COLUMNS>
    - <INDEXES>
    - <INDEX>
    <INDID>1</INDID>
    <TBLID>1</TBLID>
    <DBID>1</DBID>
    <INDNAME>ID</INDNAME>
    <CNVINDEX>1</CNVINDEX>
    <ISPRIMARY>0</ISPRIMARY>
    <ISUNIQUE>0</ISUNIQUE>
    <ISFOREIGN>0</ISFOREIGN>
    <IGNORENULLS>0</IGNORENULLS>
    <ISREQUIRED>0</ISREQUIRED>
    <DISTINCTCOUNT>4</DISTINCTCOUNT>
    <ISCLUSTERED>0</ISCLUSTERED>
    - <INDEX_COLUMNS>
    - <INDEX_COLUMN>
    <INDCOLID>1</INDCOLID>
    <INDID>1</INDID>
    <COLID>1</COLID>
    <DBID>1</DBID>
    <COLORDER>1</COLORDER>
    <TBLID>1</TBLID>
    <COLNAME>ID</COLNAME>
    </INDEX_COLUMN>
    </INDEX_COLUMNS>
    </INDEX>
    - <INDEX>
    <INDID>2</INDID>
    <TBLID>1</TBLID>
    <DBID>1</DBID>
    <INDNAME>PK_Table1</INDNAME>
    <CNVINDEX>1</CNVINDEX>
    <ISPRIMARY>1</ISPRIMARY>
    <ISUNIQUE>1</ISUNIQUE>
    <ISFOREIGN>0</ISFOREIGN>
    <IGNORENULLS>0</IGNORENULLS>
    <ISREQUIRED>1</ISREQUIRED>
    <DISTINCTCOUNT>4</DISTINCTCOUNT>
    <ISCLUSTERED>0</ISCLUSTERED>
    - <INDEX_COLUMNS>
    - <INDEX_COLUMN>
    <INDCOLID>2</INDCOLID>
    <INDID>2</INDID>
    <COLID>1</COLID>
    <DBID>1</DBID>
    <COLORDER>1</COLORDER>
    <TBLID>1</TBLID>
    <COLNAME>ID</COLNAME>
    </INDEX_COLUMN>
    </INDEX_COLUMNS>
    </INDEX>
    </INDEXES>
    - <PERMISSIONS>
    - <USRS>
    - <USR>
    <USRNAME>admin</USRNAME>
    <PERMISSION>1048319</PERMISSION>
    </USR>
    </USRS>
    - <GRPS>
    - <GRP>
    <USRNAME>Admins</USRNAME>
    <PERMISSION>1048319</PERMISSION>
    </GRP>
    - <GRP>
    <USRNAME>Users</USRNAME>
    <PERMISSION>1048319</PERMISSION>
    </GRP>
    </GRPS>
    </PERMISSIONS>
    </TABLE>
    </TABLES>
    <QUERIES />
    <RELATIONS />
    <MODULES />
    - <GROUPS>
    - <GROUP>
    <GROUPID>1</GROUPID>
    <GRPNAME>Admins</GRPNAME>
    - <GROUPUSERS>
    <GROUPUSER>admin</GROUPUSER>
    </GROUPUSERS>
    </GROUP>
    - <GROUP>
    <GROUPID>2</GROUPID>
    <GRPNAME>Users</GRPNAME>
    - <GROUPUSERS>
    <GROUPUSER>admin</GROUPUSER>
    </GROUPUSERS>
    </GROUP>
    </GROUPS>
    - <USERS>
    - <USER>
    <USERID>1</USERID>
    <USERNAME>admin</USERNAME>
    </USER>
    </USERS>
    </DATABASE>
    <ATTACHED_TABLES />
    </DATABASES>

    Hi Mike,
    Hopefully I can help to clarify a few things for you. An MS Access application migration essentially involves 3 steps, to be completed in the following order:
    1. Export the database and application information from your MS Access MDB file using the Exporter tool for MS Access. This tool generates two files: an XML file containing the database schema information, and a SQL script containing the application metadata. You've already completed this step.
    2. Migrate the database schema to Oracle. Using Oracle SQL Developer Migration Workbench, load the XML file generated in step 1, to capture & convert the MS Access database objects to Oracle.
    3. Migrate the application to Oracle Application Express. Using Oracle Application Express Application Migrations, create a Migration Project to retrieve the application metadata from the SQL script generated in step 1. The Migration Project should be associated with the Oracle schema containing the migrated database objects (from step 2).
    It sounds like you have carried out steps 1 and 3, but skipped step 2. I would recommend that you do the following:
    * Download the latest release of Oracle SQL Developer, version 1.2.1, from OTN - http://www.oracle.com/technology/software/products/sql/index.html. It incorporates the Migration Workbench. Review the accompanying documentation from the Help > Table of Contents menu item, specifically the chapter "Migrating Third Party Databases".
    * Create a Migration Repository, which is used by the Migration Workbench during the migration process. In order to do so, you need to create a database user for the Migration Repository. I would recommend reviewing the documentation for further information on this. The section titled "Before You Start Migrating: General Information" will assist you.
    * From the menu bar go to Migration > Capture Microsoft Access Exported XML, where you should browse to the location of the XML file generated by the Exporter tool in step 1. This captures the MS Access database schema information, and create a Captured Model of the information.
    * Right-click on the captured model, and select "Convert to Oracle Model" from its context menu. This creates a converted model, which is a representation of the structure of the destination Oracle database.
    * From the menu bar go to Tools > Preferences, to launch the Preferences dialog. On the Preferences dialog go to Migration > Generation Options, and select the "Least Privilege Schema Migration" and click OK.
    * Right-click on the Converted Model & select "Generate" from its context menu. This will generate the DDL statements to create the migrated database objects. I would recommend that you save the statements as a SQL script.
    * Create a new Oracle connection in Oracle SQL Developer, providing the connection details to the schema associated with your Oracle APEX workspace. Then run the SQL script containing the output from the "Generate" step. This will create the objects in the schema associated with your Oracle APEX workspace.
    * Log in to the Oracle APEX workspace, and I would recommend creating a new Migration Project. You should then be in a position to review the information retrieved from your MS Access application forms & reports.
    I hope this helps. Apologies for the length of the posting, but hopefully the points I've outlined will make the process a little clearer for you.
    Regards,
    Hilary

  • Cash Journal Tables

    Dear all.
    I want to contribute some table information for Cash Journal for all user's reference.
    Please find the same.
    TCJ_BALANCE :-                     FI Cash Journal: Totals Records
    TCJ_C_JOURNALS:-                 Cash Journals
    TCJ_CHECK_STACKS:-               Check Lists in Cash Journal
    TCJ_CJ_NAMES:-                   Cash Journal Names
    TCJ_CPD:-                               FBCJ: One-Time Account Data of Cash Journals
    TCJ_DOCUMENTS:-                  Cash Journal Documents (Header Data)
    TCJ_MAX_AMOUNT :-                Cash Journal: Amount Limit
    TCJ_POSITIONS:-                  Cash Journal Document Items
    TCJ_PRINT:-                      Cash Journal Print Parameters
    TCJ_TRANS_NAMES:-                Cash Journal Business Transaction Names
    TCJ_TRANSACTIONS:-               Cash Journal Business Transactions
    TCJ_WTAX_ITEMS:-                 Withholding Tax Items for Cash Journal Document
    Thanks & Regards,
    Pankaj.
    Edited by: pankaj_ab on May 29, 2009 2:02 PM

    Nice of u pankaj B.

  • ECC to HANA DB Migration, DMO error with invalid tables

    Hello Migration Experts,
    I am facing one issue during the uptime migration phase in DMO. Some of the Export and Import jobs are failing, and i see they are failing due to invalid tables. I have checked in HANA,those table are not imported in to HANA schema.
    Should i be adding those tables as described in the BW first guidance document ?
    Since the tables doesn't exist in HANA schema , what flag i should be using while adding the tables ?
    Content from the first guidance doc
    If you encounter critical or invalid tables you can do the following workaround:
    Edit the file \\server\sapmnt\CIH\SUM\abap\bin\EUCLONEDEFS_ADD.LST (create if not available)
    and add the affected tables here, depending the option you want to take, e.g.
    /BIC/AZSPOB10300   noclone (Table seems not to exist)
    TBTCS  igncount (Table count will be ignored)
    TST01  igncount
    DBABARL  nocontent (Table doesn’t exist on HANA)
    REPOSRC  ignlargercount (Table might change during cloning)
    I have also found OSS Notes 1747673 - R3load on SAP HANA: SQL error: SQL syntax error: near ";" which advises to repalce DDLHDB.TPL, but my kernel is higher than the note says, Can i still try ?
    Please advise
    Thanks in advance,
    GR
    Below are some of my error logs
    Import Job One
    R3load: START OF LOG: 20140906205313
    R3load: sccsid @(#) $Id: //bas/741_REL/src/R3ld/R3load/R3ldmain.c#11 $ SAP
    R3load: version R7.41/V1.9 [UNICODE]
    Compiled Aug 16 2014 00:13:51
    R3load -pipe -decluster -i /usr/sap/ECS/SUM/abap/migrate_ut/MIGRATE_UT_00032_IMP.CMD -datacodepage 4103 -dbcodepage 4103 -l /usr/sap/ECS/SUM/abap/migrate_ut/MIGRATE_UT_
    00032_IMP.LOG -loadprocedure fast -table_suffix ~ -k 1gegdUM50D801eqteAAv1A94
    -------------------- Start of patch information ------------------------
    patchinfo (patches.h): (0.048) R3load stops in the dependency loop while creating tasks (note 2044380)
    DBSL patchinfo (patches.h): (0.031) New DBCON syntax for HANA (note 1983389)
    --------------------- End of patch information -------------------------
    process id 17232
    (DB) INFO: connected to DB
    (DB) INFO: NewDB Kernel version 1.00.80.00.391861
                             SQLDBC 1.00.82.00.0394270
    (GSI) INFO: dbname   = "DEV/00                                                                                                                          "
    (GSI) INFO: vname    = "HDB                             "
    (GSI) INFO: hostname = "saphana                                                         "
    (GSI) INFO: sysname  = "Linux"
    (GSI) INFO: nodename = "SAPECCBOX"
    (GSI) INFO: release  = "3.0.13-0.27-default"
    (GSI) INFO: version  = "#1 SMP Wed Feb 15 13:33:49 UTC 2012 (d73692b)"
    (GSI) INFO: machine  = "x86_64"
    (RTF) ########## WARNING ###########
            Without ORDER BY PRIMARY KEY the exported data may be unusable for some databases
    (RDI) INFO: /usr/sap/ECS/SUM/abap/migrate_ut/MIGRATE_UT_00032_IMP.STR has format version 2
    (RDI) INFO: /usr/sap/ECS/SUM/abap/migrate_ut/SAPDOKCLU.STR.logical has format version 2
    (DCL) INFO: found logical cluster description for DOKCLU in /usr/sap/ECS/SUM/abap/migrate_ut/SAPDOKCLU.STR.logical
    (DB) INFO: loading data in table "DOKCLU" with mass loader for LOBs #20140906205313
    (DB) INFO: DOKCLU deleted/truncated
    ERROR exec_ddl_stmt: (DB) ERROR: DDL statement failed
    (DELETE FROM "DOKTL"WHERE   ('HY' < "ID" OR ("ID" = 'HY' AND 'SIMGISPAM_BELEGARTEN' < "OBJECT")  OR ("ID" = 'HY' AND "OBJECT" = 'SIMGISPAM_BELEGARTEN' AND 'D' <  "LANG
    U") OR ("ID" = 'HY' AND "OBJECT" = 'SIMGISPAM_BELEGARTEN' AND  "LANGU" = 'D' AND 'E' < "TYP") OR ("ID" = 'HY' AND "OBJECT" =  'SIMGISPAM_BELEGARTEN' AND "LANGU" = 'D' A
    ND "TYP" = 'E' AND '0013' <  "DOKVERSION")) AND ("ID" < 'TX' OR ("ID" = 'TX' AND "OBJECT" <  'SMP2ALR0000134') OR ("ID" = 'TX' AND "OBJECT" = 'SMP2ALR0000134' AND  "LAN
    GU" < 'E') OR ("ID" = 'TX' AND "OBJECT" = 'SMP2ALR0000134' AND  "LANGU" = 'E' AND "TYP" < 'E') OR ("ID" = 'TX' AND "OBJECT" =  'SMP2ALR0000134' AND "LANGU" = 'E' AND "T
    YP" = 'E' AND "DOKVERSION"  <= '0001')))
    DbSlExecute: rc = 103
    Another import Job
    (RTF) ########## WARNING ###########
            Without ORDER BY PRIMARY KEY the exported data may be unusable for some databases
    (RDI) INFO: /usr/sap/ECS/SUM/abap/migrate_ut/MIGRATE_UT_00063_IMP.STR has format version 2
    (RDI) INFO: /usr/sap/ECS/SUM/abap/migrate_ut/SAPTERCL3.STR.logical has format version 2
    (DCL) INFO: found logical cluster description for TERCL3 in /usr/sap/ECS/SUM/abap/migrate_ut/SAPTERCL3.STR.logical
    (DDL) ERROR: no DDL for TERCL3
    (build_ddl_stmt).
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) INFO: TERCL3 merged #20140906205315
    (DDL) ERROR: no DDL for TERMC3
    (build_ddl_stmt).
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    DbSl Trace:   prepare() of C_0002, rc=1, rcSQL=259
    DbSl Trace: PREPARE C_0002 on connection 0, rc=259
    ERROR HDBexistsRow: Prepare/Read failed (dbrc=103).
      (SQL error 259)
      error message returned by DbSl:
    invalid table name:  Could not find table/view TERMC3 in schema SAPECS: line 1 col 58 (at pos 57)
    (RDI) INFO: /usr/sap/ECS/SUM/abap/migrate_ut/SAPTERCL3.STR.logical has format version 2
    (DCL) INFO: found logical cluster description for TERCL3 in /usr/sap/ECS/SUM/abap/migrate_ut/SAPTERCL3.STR.logical
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: found SQLFiles.LST
    (SQL) INFO: Trying to open SQLFiles.LST
    (SQL) INFO: SQLFiles.LST opened
    (SQL) INFO: Searching for SQL file SSEXC.SQL
    (SQL) INFO: SSEXC.SQL not found
    (DB) INFO: TERCL3^0 dropped
    (DB) INFO: TERCL3^0 created #20140906205315
    (SQL) INFO: Searching for SQL file SDOCU.SQL
    (SQL) INFO: SDOCU.SQL not found
    ERROR exec_ddl_stmt: (DB) ERROR: DDL statement failed
    (ALTER TABLE "TERMC3" DROP CONSTRAINT "TERMC3^0")
    DbSlExecute: rc = 103
      (SQL error 259)
      error message returned by DbSl:
    invalid table name: TERMC3: line 1 col 13 (at pos 12)
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    ERROR exec_ddl_stmt: (DB) ERROR: DDL statement failed
    (ALTER TABLE "TERMC3" ADD CONSTRAINT "TERMC3^0" PRIMARY KEY ( "SPRAS", "TERM", "LINENUMBER" ) )
    DbSlExecute: rc = 103
      (SQL error 259)
      error message returned by DbSl:
    invalid table name: TERMC3: line 1 col 13 (at pos 12)
    (RDI) INFO: /usr/sap/ECS/SUM/abap/migrate_ut/SAPTERCL3.STR.logical has format version 2
    (DCL) INFO: found logical cluster description for TERCL3 in /usr/sap/ECS/SUM/abap/migrate_ut/SAPTERCL3.STR.logical
    (DDL) ERROR: no DDL for TERCL3
    (build_ddl_stmt).
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) INFO: TERCL3 unloaded #20140906205315
    (DDL) ERROR: no DDL for TERMC3
    (build_ddl_stmt).
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    ERROR exec_ddl_stmt: (DB) ERROR: DDL statement failed
    (                                           ALTER TABLE "TERMC3" enable persistent merge )
    DbSlExecute: rc = 103
      (SQL error 259)
      error message returned by DbSl:
    invalid table name: TERMC3: line 1 col 56 (at pos 55)
    (DB) INFO: disconnected from DB

    Result of that table issue fix is that migration went ahead, finished both uptime and downtime run. Now i am trying to login to SAP and system is unable to log me in as DOKTL doesnt exist at all
    But i see another table called DTELDOKTL in HANA, which same as DOKTL but no entries in it.
    I have created a message to SAP , But what should i be doing now ?
    Can i create this table in HANA ?
    Can i do export/import of table ? Table structure should be there in system already for this option i guess.
    Would i be able to replicate this table if i setup SLT ?
    Please advise
    C Mon Sep  8 11:02:30 2014
    C  *** ERROR =>   prepare() of C_0341, rc=1, rcSQL=259
    [dbsdbsql.cpp 1397]
    C  {root-id=00505680721D1EE48DE09241702FF193}_{conn-id=00000000000000000000000000000000}_0
    C  *** ERROR => PREPARE C_0341 on connection 0, rc=259
    [dbslsdb.cpp  9138]
    C  SQLCODE    : 259
    C  SQLERRTEXT : invalid table name:  Could not find table/view DOKTL in schema SAPECS: line 1 col 97 (at pos 96)
    C  sc_p=7f28f48cfac8,no=341,idc_p=7f28f3f87388,con=0,act=0,slen=254,smax=256,#vars=5,stmt=7a45980,table=DOKTL
    C  stmtid = <0/SAPMSYST                                /50334994/20140907170329>
    C  SELECT "ID" , "OBJECT" , "LANGU" , "TYP" , "DOKVERSION" , "LINE" , "DOKFORMAT" , "DOKTEXT" FROM "DOK\
    C  TL" WHERE "LANGU" = ? AND "ID" = ? AND "OBJECT" = ? AND "TYP" = ? AND "DOKVERSION" = ? ORDER BY "ID"\
    C   , "OBJECT" , "LANGU" , "TYP" , "DOKVERSION" , "LINE" ;
    B  ***LOG BZA=> table DOKTL does not exist on database R/3 [dbdbslst     3580]
    M  ThPerformDeleteThisSession: switch of statistics
    D  GuiStatus clear generate inline ts >20140908030105,195<
    M  ***LOG R47=> ThResFreeSession, delete () [thxxmode.c   1078]
    M  *** WARNING => ThrtGuiDeleteScreen: rscpGetUserLoginLang failed (128), use system language [thrtGuiHandl 469]
    Thanks,
    GR

Maybe you are looking for

  • Function call in CMOD

    Dear All, I am using Resrticted Key figure (RKF) in report which is having one customer exit variable on date field/infoobject. Now there is a need to use two function module for this customer exit. Scenario:- Depending upon the input value given for

  • Dropdown list in offline Adobe forms based on Particular plant number

    Hi All, Actually I am working on the offline adobe forms. In one of my requirement User will enter the Plant number after that user click on Submit button then the data in Function/Area and Equipment fields will come in a drop down list based on the

  • Recursive stored procedure

    Hi, I have a table with the following fields: material component a material contents one or more components and it could happen that a material could content itself in whatever level. For example: material component     material  component    materia

  • NI VISA Runtime engine

    When "Building" a LabVIEW program containing NI-VISA sub VI's (e.g. to communicate with USB), I have had problems getting the "Built code" to find my NI VISA devices, even though the NI VISA USB  Drivers are correctly installed on the "target machine

  • [svn] 3233: Fix for bug related to see tag, [Exclude] metadata, and extra lines in mxml examples block.

    Revision: 3233 Author: [email protected] Date: 2008-09-16 12:57:29 -0700 (Tue, 16 Sep 2008) Log Message: Fix for bug related to see tag, [Exclude] metadata, and extra lines in mxml examples block. Bugs: SDK-16886 QA: Yes Doc: Reviewed By: Pete F Test