SRKIM: R12: Payables  Accounting Data 를 R12 로 upgrade 할때 사용 되는 Scripts

PURPOSE
R11i 의 Payables Accounting 정보를 R12 로 upgrade 시 사용되는 scripts 에 대해 알아보도록 한다.
EXPLANATION
R12 의 AP Accounting 정보를 담는 new tables 은 아래와 같다.
New Tables:
XLA_EVENTS
XLA_AE_HEADERS
XLA_AE_LINES
XLA_TRANSACTION_ENTITIES_UPG
XLA_DISTRIBUTION_LINKS
R12 에서 더 이상 사용하지 않는 tables 목록은 아래와 같다.
Obsolete tables:
AP_ACCOUNTING_EVENTS_ALL
AP_AE_HEADERS_ALL
AP_AE_LINES_ALL
Upgarde Scripts
1) apxlaupg.sql - Transaction entities, events, headers 와 lines 정보를 XLA tables 로 upgrade 하는 script 이다.
a ) XLA_TRANSACTION_ENTITIES_UPG 로 다음 정보를 insert 한다.
ENTITY_CODE = 'AP_INVOICES' OR 'AP_PAYMENTS'
- For AP_INVOICES , data from AP_INVOICES_ALL is used if distributions with accounting_event_id exists
- For AP_PAYMENTS, data from AP_CHECKS_ALL is used
b) XLA EVENTS 에 insert 한다.
b.1: Invoice Related Events:
Invoice 관련 events 는 AP_ACCOUNTING_EVENTS_ALL 와 AP_INVOICES_ALL 를 참조 하여 만들어 진다.
XLA_EVENTS.ENTITY_CODE = 'AP_INVOICES'
XLA_EVENTS.EVENT_TYPE_CODE 은 AP_ACCOUNTING_EVENTS_ALL.event_type_code 에서 참조 하여 만들어 진다.
INVOICE event 는 다음 중 하나로 생성된다:
INVOICE VALIDATED,
CREDIT MEMO VALIDATED,
DEBIT MEMO VALIDATED ,
PREPAYMENT VALIDATED
INVOICE ADJUSTMENT event 는 다음 중 하나로 생성된다:
INVOICE ADJUSTED,
CREDIT MEMO ADJUSTED,
DEBIT MEMO ADJUSTED,
PREPAYMENT ADJUSTED
INVOICE CANCELLATION event 는 다음 중 하나로 생성된다:
INVOICE CANCELLED,
CREDIT MEMO CANCELLED,
DEBIT MEMO CANCELLED,
PREPAYMENT CANCELLED
PREPAYMENT APPLICATION -> PREPAYMENT APPLIED
PREPAYMENT UNAPPLICATION -> PREPAYMENT UNAPPLIED
b.2 :Payment Related Events:
Payment related events 는 AP_ACCOUNTING_EVENTS_ALL 와 AP_CHECKS_ALL XLA_EVENTS.ENTITY_CODE = 'AP_PAYMENTS' 를 베이스로 만들어 진다.
XLA_EVENTS.EVENT_TYPE_CODE 는 AP_ACCOUNTING_EVENTS_ALL.event_type_code 를 근거로 아래와 같이 생성된다.
PAYMENT -> PAYMENT RECORDED or REFUND_RECORDED
PAYMENT ADJUSTMENT -> MANUAL PAYMENT ADJUSTED
PAYMENT CANCELLATION -> PAYMENT CANCELLED or REFUND CANCELLED
PAYMENT CLEARING -> PAYMENT CLEARED
PAYMENT UNCLEARING -> PAYMENT UNCLEARED
PAYMENT MATURITY -> PAYMENT MATURED
b.3 : XLA_EVENTS.EVENT_STATUS_CODE 는 varchar2(1) column 이고
Value 는 AP_ACCOUNTING_EVENTS_ALL.event_status_code 의 값을 참조 하여 만들어 진다.
CREATED -> N
INCOMPLETE -> I
Any other value -> P
b.4 : XLA_EVENTS.PROCESS_STATUS_CODE 는 varchar2(1) column 이고 Value 는 AP_ACCOUNTING_EVENTS_ALL.event_status_code 의 값을 참조 하여 만들어진다.
ACCOUNTED -> P
ACCOUNTED WITH ERROR -> E
Any other value -> U
c) Insert into XLA_AE_HEADERS -> Using rows in AP_AE_HEADERS_ALL
d) Insert into XLA_AE_LINES -> Using rows in AP_AE_LINES_ALL
d.1 : XLA_AE_LINES.ACCOUNTING_CLASS_CODE 는 AP_AE_LINES_ALL.AE_LINE_TYPE_CODE 값을 참조 하여 만들어진다.
AP ACCRUAL -> ACCRUAL
CHARGE -> ITEM EXPENSE
PREPAY -> PREPAID_EXPENSE
RECOVERABLE TAX -> RTAX
NONRECOVERABLE TAX -> NRTAX
AV -> AMT_VARIANCE
ERV -> EXCHANGE_RATE_VARIANCE CASH CLEARING -> CASH_CLEARING
FUTURE PAYMENT -> FUTURE_DATED_PMT
WRITEOFF -> WRITE_OFF
BANK CHARGE -> BANK_CHG
BANK ERROR -> BANK_ERROR
Any other value -> AE_Line_Type_Code
d.2: XLA_AE_LINES.BUSINESS_CLASS_CODE 는 AP_AE_LINES_ALL.AE_LINE_TYPE_CODE 의 값을 참조 하여 만들어 진다.
PREPAY -> AP_PREPAY
LIABILITY -> AP_LIAB
CASH CLEARING -> AP_CASH_CLEARING
FUTURE PAYMENT -> AP_FUTURE_DTD_PMT
Any other value -> NULL
e) Insert into AP_PAYMENT_HISTORY_ALL
TRANSACTION_TYPE 은 AP_ACCOUNTING_EVENTS_ALL.event_type_code 의 값을 참조 하여 만들어진다.
PAYMENT CANCELLATION -> PAYMENT CANCELLED
PAYMENT ADJUSTMENT -> MANUAL PAYMENT ADJUSTED
Any other value -> PAYMENT CREATED
2) apaphuhf.sql
해당 script 은 all Payment History rows 의 historical_flag 를 update 한다.
3) apaxevnt.sql
AX_EVENTS 에 해당 하는 rows 가 있거나 ‘11.5 Upgrade’ 란 description 으로 생성된 record 가 AE HEADER record 에 있으면 AP_ACCOUNTING_EVENTS_ALL의 AX_ACCOUNTED_FLAG을 UPDATE 한다.
4) apgpsupd.sql
application_id = 200 (Payables) and migration_status_code equals ‘P’ 를 가진 gl_period_statuses 의 migration_status_code 를 ‘U’ UPDATE 하는 XLA package (xlaugupg.pkb) 를 호출 한다.
5) apidstln.sql
Invoice distribution links, prepay header, prepay app distributions 와 prepay distribution links 를 UPGRADE 한다.
a) Insert into XLA_DISTRIBUTION_LINKS using AP_INVOICES_ALL, AP_ACCOUNTING_EVENTS_ALL, XLA_AE_HEADERS, XLA_AE_LINES and AP_INVOICE_DISTRIUTIONS_ALL
b) Insert into AP_PREPAY_HISTORY_ALL using AP_INVOICES_ALL, AP_INVOICE_LINES_ALL and AP_INVOICE_DISTRIBUTIONS_ALL
c) Insert into AP_PREPAY_APP_DISTS using AP_INVOICES_ALL, AP_INVOICE_DISTRIBUTIONS_ALL, AP_ACCOUNTING_EVENTS_ALL, AP_PREPAY_HISTORY_ALL, XLA_AE_HEADERS and XLA_AE_LINES
d) Insert into XLA_DISTRIBUTION_LINKS for the prepay distributions.
6) appdstln.sql
Payment distributions 와 payment distribution links 를 UPGRADE 한다.
Insert into AP_PAYMENT_HIST_DISTS and XLA_DISTRIBUTION_LINKS for the payment history distributions
7) apsobtrb.sql
Trial balance upgrade -> Inserts data into AP_TB_BALANCES_TMP which is then used to create initial balances.
8) apintbal.sql
Trial balance upgrade-> Creates initial balances for trial balance
9)apxlainv.sql
Creates Invoice distribution links post upgrade
10) apxlapay.sql
Creates Payment distribution links post upgrade
REFERENCE
NOTE. 443495.1 - What are the upgrade scripts used in Payables Accounting Upgrade to R12

Similar Messages

  • SRKIM: R12: Accounts Payable Trial Balance issue troubleshoot

    Purpose
    R12 에서 AP Trial Balance Report 확인 시 데이터가 비정상적일 경우 check 해야 하는 내용에 대해 확인 해 보도록 한다.
    Question
    R12 에서 invoice 생성 후 gl 로 transfer 하였으나 ap trial balance report 의 데이터가 비정상적인 것으로 확인 된다.
    어떤 내용을 확인 해야 하는가.
    Answer
    1. APList Diagnostics Script 을 해당 invoice 에 대해 수행 하여 아래의 내용을 확인한다.
    - Accounting 이 생성되어 gl로 모두 transfer 되었는지 여부.
    - Accounting Date 가 Trial Balance Report 의 start date 와 as of date 안에 포함 되는지 여부
    2.위의 내용에 문제가 없다면 아래 sql 로 데이터를 확인 해 보도록 한다.
    select *
    from xla_trial_balances
    where source_entity_id in (
    select entity_id
    from xla.xla_transaction_entities xte
    where application_id = 200
    and (
    (entity_code = 'AP_INVOICES' and source_id_int_1 in (&invoice_id))
    OR
    applied_to_entity_id in (
    select entity_id
    from xla.xla_transaction_entities xte
    where application_id = 200
    and (
    (entity_code = 'AP_INVOICES' and source_id_int_1 in (&invoice_id))
    3.GL 에 실제 해당 데이터가 존재 하는지 아래 sql 로 확인 해 보도록 한다.
    SELECT distinct aeh.*
    FROM gl_je_lines gjl, GL_IMPORT_REFERENCES gir, gl_je_headers gjh, GL_JE_BATCHES gjb, XLA_AE_LINES
    ael,
    XLA_AE_HEADERS aeh, XLA_EVENTS aea, xla.xla_transaction_entities xte
    WHERE ael.gl_sl_link_id = gir.gl_sl_link_id
    and gjh.je_batch_id= gjb.je_batch_id
    and gjl.je_header_id = gjh.je_header_id
    and gjl.je_header_id = gir.je_header_id
    and gjl.je_line_num = gir.je_line_num
    AND gir.gl_sl_link_table in ('XLAJEL')
    and ael.gl_sl_link_table in ('XLAJEL')
    AND aea.application_id = 200
    AND aea.event_id = aeh.event_id
    AND aeh.ae_header_id = ael.ae_header_id
    AND gjb.je_batch_id = gir.je_batch_id
    and xte.application_id = 200
    and xte.entity_id = aea.entity_id
    and gjh.je_header_id = gir.je_header_id
    and gjh.je_source = 'Payables'
    and (
    (xte.entity_code = 'AP_PAYMENTS' and xte.source_id_int_1 = &check_id)
    OR
    (xte.entity_code = 'AP_INVOICES' and xte.source_id_int_1 = &invoice_id)
    SELECT distinct gjl.*
    FROM gl_je_lines gjl, GL_IMPORT_REFERENCES gir, gl_je_headers gjh, GL_JE_BATCHES gjb, XLA_AE_LINES
    ael,
    XLA_AE_HEADERS aeh, XLA_EVENTS aea, xla.xla_transaction_entities xte
    WHERE ael.gl_sl_link_id = gir.gl_sl_link_id
    and gjh.je_batch_id= gjb.je_batch_id
    and gjl.je_header_id = gjh.je_header_id
    and gjl.je_header_id = gir.je_header_id
    and gjl.je_line_num = gir.je_line_num
    AND gir.gl_sl_link_table in ('XLAJEL')
    and ael.gl_sl_link_table in ('XLAJEL')
    AND aea.application_id = 200
    AND aea.event_id = aeh.event_id
    AND aeh.ae_header_id = ael.ae_header_id
    AND gjb.je_batch_id = gir.je_batch_id
    and xte.application_id = 200
    and xte.entity_id = aea.entity_id
    and gjh.je_header_id = gir.je_header_id
    and gjh.je_source = 'Payables'
    and (
    (xte.entity_code = 'AP_PAYMENTS' and xte.source_id_int_1 = &check_id)
    OR
    (xte.entity_code = 'AP_INVOICES' and xte.source_id_int_1 = &invoice_id)
    4.위의 sql 을 통해 Trial Balance Table 의 데이타가 잘 못 생성 되었음이 확인 되면 해당 Trial balance table 의 데이타를 recreate 하는 작업을 수행 해야 한다.
    Reference
    Note. 553484.1 - THE R12 ACCOUNTS PAYABLE TRIAL BALANCE DATA IS
    INCORRECT/WRONG

    Follow the below steps and Run the Trial Blance and let me know if it helps.
    Thanks
    Girish
    How to Rebuild Trial Balance Data (repopulate XLA_TRIAL_BALANCES)
    1. Navigate: Payables Responsibility > Setup > Accounting Setups > Subledger Accounting Setups > Open Account Balances Listing Definitions
    2. Query up your Report Definition: select Defined By = Accounting Flexfield or Segment (whichever applies in your case), click “Go”
    3. Click on Update icon in the "Actions" column – the definition's update page opens.
    4. "Touch" the definition by simply clicking "Apply" button (without making any change).
    This should start the “Open Account Balances Data Manager” concurrent processes

  • Missing data in ap_check_stocks after R12 upgrade

    Hello,
    We are currently in version R12.1.2 and I have an existing query from R11 which gets data from ap_check_stocks table. I am however not able to find any data on ap_check_stocks after R12 upgrade. Has this table been discontinued? I do not find any link in metalink which says that as well...
    The join used in the query is between ap_check_stocks and ap_checks is ap_checks.check_stock_id = ap_check_stocks.check_stock_id... Has something changed in R12?
    Please help!
    Ramya

    You can find AP_CHECK_STOCKS synonym in R12 and the base object is AP.AP_CHECK_STOCKS_ALL table.
    Please refer to eTRM for details.
    SYNONYM: APPS.AP_CHECK_STOCKS
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=AP_CHECK_STOCKS&c_owner=APPS&c_type=SYNONYM
    TABLE: AP.AP_CHECK_STOCKS_ALL
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=AP_CHECK_STOCKS_ALL&c_owner=AP&c_type=TABLE
    Thanks,
    Hussein

  • After R12 Upgrade: No records in many of the tables.

    Hi all,
    After R12 upgrade, we found there are no records in many tables. For example AR_BATCHES_V.
    What could be the probable causes?
    Also, note that there are still some concurrent requests running.
    DQM Parallel Sync Index Child Program2 (DQM Parallel Sync Index Child Program)
    Synchronize Workflow LOCAL tables (Report Set)
    Process Benefits Data Conversion
    S. Sundar

    Hi,
    I'm a bit late to the party in this thread, but:
    Are most of the unpopulated tables related to Financials? With the introduction of E-Business Tax (ZX) and Sub-Ledger Accounting in R12, some data seems to have been moved to other tables and schemas. For example, we had some reports that needed to be rewritten for R12 because some Receivables tables and views were empty after the upgrade. I don't get into the functional side of things very often, so I don't know if AR is similarly affected.
    Sorry I don't have much detail to offer, but maybe this will give you a starting point for further research.
    Regards,
    John P.

  • R12 upgrade - why were RA views obsoleted?

    One observation is that 11i tables like PO_VENDORS and GL_SETS_OF_BOOKS have been made into views in R12. Even standard modules code in AP and AR use these views. So existing custom objects referencing them need not be changed, especially if they are just getting simple columns like VENDOR_NAME or SET_OF_BOOKS_ID.
    ** Please let me know if that is not correct **. Has Oracle provided any direction for these objects? Will they drop these, say, in R12.2?
    Of course, new customizations being written should use AP_SUPPLIERS and GL_LEDGERS.
    But RA objects like RA_CUSTOMERS, RA_ADDRESSES, RA_SITE_USES, etc. are not usable in R12 at all.
    Why did Oracle, in its infinite wisdom, not continue to have these as views (they were views in 11.5.10.2)? It causes so much work (painful, no value add) for companies to change all their custom objects to reference the new R12 HZ replacements. ** Does anyone know the reason? **

    Please see the following links/docs.
    What are the new tables in R12 for Payables and to what R12 objects are obsoleted 11i tables mapped [ID 1290116.1]
    R12 Upgrade: Changes to Expect in R12 as Against Release 11i [ID 1443965.1]
    Oracle E-Business Suite Release 12.1 Release Content Documents [ID 561580.1]
    Oracle E-Business Suite Releases 12.1 and 12.2 Release Content Documents [ID 1302189.1]
    Identifying Data Model Changes Between EBS 12.1.3 and Prior EBS Releases
    https://blogs.oracle.com/stevenChan/entry/ebs_data_model_1213
    EBS Seed Data Comparison Reports Now Available
    https://blogs.oracle.com/stevenChan/entry/ebs_seed_data_comparison_reports
    Thanks,
    Hussein

  • R12 Upgrade Report from 11i Getting Error

    Hi everyone,
    We are currently working an R12 upgrade project from 11.5.10 to 12.1.3. I am currently converting a report from 11i to R12 but it is erroring out when I run it in R12. Below is the log. Any help would be greatly appreciated. Thanks.
    Payables: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXHH_APXNACHA_CHASE module: XXHH: NACHA Payment Format Chase (HHG)
    Current system time is 06-DEC-2011 15:52:03
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_PAYMENT_BATCH='JRG120111b'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    Enter Password:
    MSG-00001: Org ID: 141
    MSG-00001: After SRWINIT
    MSG-00099: Inside Get_Company_Name
    MSG-00099: Payment Batch = JRG120111b
    MSG-00099: No reporting entity setup found.
    REP-1419: 'beforereport': PL/SQL program aborted.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1419: MSG-00001: Org ID: 141
    MSG-00001: After SRWINIT
    MSG-00099: Inside Get_Company_Name
    MSG-00099: Payment Batch = JRG120111b
    MSG-00099: No reporting entity setup found.
    REP-1419: 'beforereport': PL/SQL program aborted.
    Report Builder: Release 10.1.2.3.0 - Production on Tue Dec 6 15:52:04 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 3660174.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Output file size:
    0
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 06-DEC-2011 15:52:06
    ---------------------------------------------------------------------------

    It looks as though its failing in your beforereport trigger.
    MSG-00099: Inside Get_Company_Name
    MSG-00099: Payment Batch = JRG120111b
    MSG-00099: No reporting entity setup found.
    REP-1419: 'beforereport': PL/SQL program aborted.I dont believe payment batches are used anymore as they need to be done via Payment profiles and therefore you will need to use Payment Instruction ids instead. Also the setup at R12 is Mosaic
    try including this. as the first statement in the Beforereport trigger. All the banks tables payment tables has changed so unless you have changed these to you will need to adjust these correctly to the R12 tables.
    BEGIN
         MO_GLOBAL.INIT ('SQLAP');
    MO_GLOBAL.SET_POLICY_CONTEXT('S',FND_PROFILE.VALUE('ORG_ID'));
    END;

  • Discoverer Reports does not work in Multi-org Environment after R12 Upgrade

    Discoverer Reports does not work in Multi-org Environment after R12 Upgrade. Created a simple report using the below query:
    SELECT po_header_id, segment1, type_lookup_code
    FROM po_headers
    WHERE segment1 = '5000002'
    Query works perfectly fine; when i set the ORG_CONTEXT in the database using the command:
    EXEC mo_global.set_policy_context('S',129)
    But the report doesn't fetch any data when ran from an Org based responsibility. We've ensured that the MO: Operting Unit is set accurately and general Oracle reports (PLSQL Program OR XML Publisher) are working perfectly fine.
    ===========
    I followed the steps provided in Metalink Note: 732826.1 - It works for some responsibilities where the MO: Security Profile is not set; but fails for those responsibilities where the MO: Security Profile is set.
    I am looking for specific solution that works irrespective of either the MO: Operating Unit profile is set of not.
    Please suggest. Appreciate your response.
    Thanks,
    Kesava Chunduri

    Hi Hussein,
    Thanks for the quick response.
    Yes, I've gone thru both the notes specified below:
    Discoverer Workbooks Based On Organization Enabled Views Are Not Populated [ID 1293438.1]
    - Tried this option; but this option is messing up a couple of Oracle Standard Functionalities.
    - For ex: If i set this profile option; we are not able to create any receipts using Custom Responsibilities.
    I am able to create the receipt, when i remove this profile option.
    No Data Shows for Reports in Discoverer 10g with Applications Release 12 [ID 1054380.1]
    - I see that the products i am running these reports from AR/GL - already exists in these tables.
    Anything other options??
    Thanks,
    Kesava

  • SRKIM: R12: Technical Changes in Payments from 11i to R12

    PURPOSE
    R12 에서의 payment 관련 view 및 table의 변경된 내용에 대해 알아 보도록 한다.
    ANSWER
    1. R11i 에서 사용되던 AP_CHECK_STOCKS_ACTIVE_V
    해당 view 는 R11i 에서 development 가 coding 의 편의를 위해 추가 해 놓았던 view 로 AP_PAY_SINGLE_INVOICE_PKG package 에서만 참조 하도록 design 되어 있었다.
    active bank account/scheck stock combinations 에 대해 check 하기 위해 사용되던 이 view 는 R12 에서는 더 이상 존재 하지 않는다.
    해당 ivew 를 참조 하던 pckage 역시 logic 이 변경 되었고 CE_PAYMENT_DOCUMENTS 가 대신 제공 되고 있다. 그러나 CE_PAYMENT_DOCUMENTS 는 기존의 AP_CHECK_STOCKS_ACTIVE_V 와는 차이가 있고 제공 되는 데이타가 다르기 때문에 기존 VIEW 를 참조 하여 CUSTOM PROGRAM 을 개발 하였던 고객사에서는 PROGRAM 을 수정 하거나 CUSTOM VIEW 를 생성 해야 할 것 으로 보여진다.
    2. 11i 의 global accounting engine tables 이었던 XLA_AE_HEADERS 와 XLA_AE_LINES 는 어떻게 되고 payments accounting 정보는 어디에 저장 되는가.
    11i에서 ap accountings 정보는 invoice 건 payments 건 모두 AP_AE_HEADERS 와 AP_AE_LINES tables 에 저장 되고 Global Accounting engine (AX) 을 사용 할 경우만 accounting data 가 XLA_AE_HEADERS 와 XLA_AE_LINES 에 저장 되었으나 R12 에서는 Subledger Accounting 정보는 모두 XLA_AE_HEADERS 와 XLA_AE_LINES 에 저장 된다.
    AX 는 더이상 별개의 모듈로 존재 하지 않는다.
    REFERENCE
    NOTE. 786423.1 - Technical Changes in Payments from 11i to R12

    PURPOSE
    R12 에서의 payment 관련 view 및 table의 변경된 내용에 대해 알아 보도록 한다.
    ANSWER
    1. R11i 에서 사용되던 AP_CHECK_STOCKS_ACTIVE_V
    해당 view 는 R11i 에서 development 가 coding 의 편의를 위해 추가 해 놓았던 view 로 AP_PAY_SINGLE_INVOICE_PKG package 에서만 참조 하도록 design 되어 있었다.
    active bank account/scheck stock combinations 에 대해 check 하기 위해 사용되던 이 view 는 R12 에서는 더 이상 존재 하지 않는다.
    해당 ivew 를 참조 하던 pckage 역시 logic 이 변경 되었고 CE_PAYMENT_DOCUMENTS 가 대신 제공 되고 있다. 그러나 CE_PAYMENT_DOCUMENTS 는 기존의 AP_CHECK_STOCKS_ACTIVE_V 와는 차이가 있고 제공 되는 데이타가 다르기 때문에 기존 VIEW 를 참조 하여 CUSTOM PROGRAM 을 개발 하였던 고객사에서는 PROGRAM 을 수정 하거나 CUSTOM VIEW 를 생성 해야 할 것 으로 보여진다.
    2. 11i 의 global accounting engine tables 이었던 XLA_AE_HEADERS 와 XLA_AE_LINES 는 어떻게 되고 payments accounting 정보는 어디에 저장 되는가.
    11i에서 ap accountings 정보는 invoice 건 payments 건 모두 AP_AE_HEADERS 와 AP_AE_LINES tables 에 저장 되고 Global Accounting engine (AX) 을 사용 할 경우만 accounting data 가 XLA_AE_HEADERS 와 XLA_AE_LINES 에 저장 되었으나 R12 에서는 Subledger Accounting 정보는 모두 XLA_AE_HEADERS 와 XLA_AE_LINES 에 저장 된다.
    AX 는 더이상 별개의 모듈로 존재 하지 않는다.
    REFERENCE
    NOTE. 786423.1 - Technical Changes in Payments from 11i to R12

  • Not able to compile .pll or .fmb through installation file in R12 Upgrade.

    While compiling .pll or .fmb individually using this command
    1. frmcmp_batch module=$AU_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmb userid=apps/appla1na output_file=$XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx compile_all=special batch=yes
    OR
    2.frmcmp_batch module=XXIB_I10_EXT_SEARCH.fmb userid=apps/appla1na output_file=$XXIB_TOP/forms/US/XXIB_I10_EXT_SEARCH.fmx compile_all=special
    The file gets compiled and .plx & .fmx is generated.
    Same command in .install file doesnt get compiled. Sample given below
    # +======================================================================+
    # Generation of English Forms
    # +======================================================================+
    echo "------------------------------- " | tee -a $LOG_FILE
    echo "Generating Forms in English ... " | tee -a $LOG_FILE
    echo "------------------------------- \n" | tee -a $LOG_FILE
    export FORMS_PATH=$AU_TOP/resource:$AU_TOP/forms/US:$XXIB_TOP/forms/US:$FORMS_PATH
    #exportFORMS60_PATH=$XXIB_TOP/forms/US:$AU_TOP/resource:$XXIB_TOP/resource:$AU_TOP/forms/US:$FORMS60_PATH
    rmf $XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx
    #commented out for R12 Upgrade by KISHAN WIPRO
    #f60gen $XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmb $APPS_LOGIN_ID Compile_All=YES output_file=$XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx >> $LOG_FILE 2>> $LOG_FILE
    #command used to compile in R12
    frmcmp_batch module=$AU_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmb userid=$APPS_LOGIN_ID output_file=$XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx compile_all=special batch=yes
    if [ $? -eq 0 ];
    then
    echo "Billed Accounts Level Form Generation successful. " | tee -a $LOG_FILE
    else
    echo "Billed Accounts Level Form Generation failed. \n Please check the log file for error details and re-run." | tee -a $LOG_FILE
    exit 1
    fi
    Need some help urgent
    Contact me @ [email protected]
    Edited by: 862540 on Oct 2, 2011 11:23 PM

    Hi,
    I have tried it, by inserting it before the form compilation code the echo command works , but then while compilation it gives me an error as file not found . This file XXIB_I10_BA_BALEVEL.fmb is existing in the given path . Is it a problem with the userid being given so. As i am able to compile the file individually(During individual compilation i have hard coded the username and password), not through a installlation file . Have even checked the FORMS_PATH even thats right .
    Command used in installation file :
    # +======================================================================+
    echo "------------------------------- " | tee -a $LOG_FILE
    echo "Generating Forms in English ... " | tee -a $LOG_FILE
    echo "------------------------------- \n" | tee -a $LOG_FILE
    export FORMS_PATH=$AU_TOP/resource:$AU_TOP/forms/US:$XXIB_TOP/forms/US:$FORMS_PATH
    #export FORMS60_PATH=$XXIB_TOP/forms/US:$AU_TOP/resource:$XXIB_TOP/resource:$AU_TOP/forms/US:$FORMS60_PATH
    rmf $XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx
    #commented out for R12 Upgrade by KISHAN WIPRO
    #f60gen $XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmb $APPS_LOGIN_ID Compile_All=YES output_file=$XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx >> $LOG_FILE 2>> $LOG_FILE
    echo "Starting with compilation of English Form BA_BALEVEL"
    frmcmp_batch module=XXIB_I10_BA_BALEVEL.fmb userid=$APPS_LOGIN_ID output_file=$XXIB_TOP/forms/US/XXIB_I10_BA_BALEVEL.fmx compile_all=special
    if [ $? -eq 0 ];
    then
    echo "Billed Accounts Level Form Generation successful. " | tee -a $LOG_FILE
    else
    echo "Billed Accounts Level Form Generation failed. \n Please check the log file for error details and re-run." | tee -a $LOG_FILE
    exit 1
    fi
    Not able to diagonis the error .
    Regards
    KISHAN.M.G

  • 11i to R12 upgrade Doubts

    Hello,
    I am currently analyzing 11i(11.5.10.2) to R12(12.1.3) upgrade and need your expert adivce/suggestion on some of the doubts.
    Current EBS architecture:
    2 Node split architecture.
    Node1:- Web Tier
    Node2:- CP, Admin and Database Tier.
    OS:- Solaris 10 for both nodes.
    DB:- 10.2.0.3
    Although we are running only web tier on node 1 but complet application is installed and to maintain consitency we apply patches on both nodes. We want to keep same architecture going forward also.
    My doubts:-
    1) As per upgrade document we have to run ad preperation script after applying patch 7197849 and by default extent size is 128k(for db size upto 100Gb), as we are having db size of 360 GB ..how should we decide on correct extent size? Please pass metalink note id's if you are aware of.
    2)How much space is required for laying down R12 filesystem? I believe it should be same as for new installation. Also what will happen to 11i filesystems after upgrade i.e. ias and 8.0.6 oracle home?
    3)After upgrade will my user be able to check log and out of requests that ran on 11i prior to upgrade?
    4) Any idea on increase in demand CPU/memory/swap demand after moving to R12? we are upgrading like to like i.e. not adding any new functionality.
    5)How much space should be preallocated to various tablespaces prior to running upgrade, we are not having OATM and decided to move on to it after upgrade. If my database is of 350 GB then how much space should be allocated to filesystem prior to growth?
    6) We are having 11i split architecture where Node 1 is having Web tier and node 2 is having CP,admin and db tier. logically we should run rapid install steps along with all the patching on both nodes. Please correct me if i am wrong?
    7) At what point of time do i need to run patches in preinstall mode i.e before applying 7461070 or after it, i believe before. Also is MOS 1448102.1 correct note for deciding on patches to be run in preinstall mode? I believe these patches are not mandatory but recommendation from oracle to pre-captulate.
    8) After applying main upgrade driver patch i.e. 7461070 upgrade document says to 'Apply latest product patches', where can i get idea on patches to applied?
    Thanks,
    JD

    1) As per upgrade document we have to run ad preperation script after applying patch 7197849 and by default extent size is 128k(for db size upto 100Gb), as we are having db size of 360 GB ..how should we decide on correct extent size? Please pass metalink note id's if you are aware of.Use the default extent size.
    2)How much space is required for laying down R12 filesystem? I believe it should be same as for new installation. Also what will happen to 11i filesystems after upgrade i.e. ias and 8.0.6 oracle home?Disk Space Requirements
    http://docs.oracle.com/cd/E18727_01/doc.121/e12842/T422699i4773.htm#3708205
    8.0.6 and iAS ORACLE_HOMEs will be no longer used.
    3)After upgrade will my user be able to check log and out of requests that ran on 11i prior to upgrade?Yes.
    4) Any idea on increase in demand CPU/memory/swap demand after moving to R12? we are upgrading like to like i.e. not adding any new functionality.https://forums.oracle.com/forums/search.jspa?threadID=&q=Hardware+AND+Requirements+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    5)How much space should be preallocated to various tablespaces prior to running upgrade, we are not having OATM and decided to move on to it after upgrade. If my database is of 350 GB then how much space should be allocated to filesystem prior to growth?You need to migrate to OATM before R12 upgrade.
    FAQ - OATM - Oracle Applications Tablespace Migration [ID 418225.1] -- 5) Is OATM Mandatory for R12?
    6) We are having 11i split architecture where Node 1 is having Web tier and node 2 is having CP,admin and db tier. logically we should run rapid install steps along with all the patching on both nodes. Please correct me if i am wrong?Correct if you do not have shared application file syste,
    7) At what point of time do i need to run patches in preinstall mode i.e before applying 7461070 or after it, i believe before. Also is MOS 1448102.1 correct note for deciding on patches to be run in preinstall mode? I believe these patches are not mandatory but recommendation from oracle to pre-captulate.Yes. Please also see (R12.1: Oracle Financials Pre-Upgrade Patch - Supplemental List for EBS CUP [ID 1127593.1]).
    8) After applying main upgrade driver patch i.e. 7461070 upgrade document says to 'Apply latest product patches', where can i get idea on patches to applied?MOS > Patches & Updates > Latest R12 Pack & Recommended R12 Patches
    Identifying the Latest Family Packs for Oracle E-Business Suite
    https://blogs.oracle.com/stevenChan/entry/latest_available_packs_for_oracle
    Identifying Recommended Patches for E-Business Suite Environments
    https://blogs.oracle.com/stevenChan/entry/recommended_patches_for_oracle_e
    Thanks,
    Hussein

  • R12 Upgrade: ra_territories, ar_location_rates, ar_location_values table Absoluted and if yes then what are the replacement tables?

    Hi,
    We are in the R12 Upgrade process and having doubt in ra_territories, ar_location_rates, ar_location_values tables.
    Please clarify are they got absolutes or we have replacement tables for these?
    Regards,
    Uday

    Hi,
    I see you are confused between using ra_interface_lines_all and API. The AR Invoice can be created in two method.
    1. Using Autoinvoice interface a open interface program. For this you need to populate ra_interface_lines_all and ra_interface_distributions_all (if you are not using auto accounting) interface tables and then submit the Autoinvoice Master program, a interface program to load the AR invoices. Once the program completes, the errors will be stored in ra_interface_errors_all table.
    2. Second method is to use the API. If you are using API, no interface table will be used to and errors will not be stored in interface tables. You can use the following routine to get the errors.
    IF l_return_status != 'S' THEN
    dbms_output.put_line('unexpected errors found!');
    IF p_msg_count = 1 Then
    dbms_output.put_line('l_msg_data '||l_msg_data);
    ELSIF l_msg_count > 1 Then
    LOOP
    p_count := p_count+1;
    p_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
    IF p_msg_data is NULL Then
    EXIT;
    END IF;
    dbms_output.put_line('Message' || p_count ||'.'||l_msg_data);
    END LOOP;
    END IF;
    ELSE
    dbms_output.put_line(' Got Created Sucessfully : '||l_customer_trx_id);
    END IF;
    KG

  • MW R12 upgrade questions

    Hi Folks,
    Just installed MW 2.17 and would like to a upgrade our E-Business from 11.5.10.2 to 12.1.3. I prepared a project which uses the Upgrade Assistant R12. I believe it plans to upgrade our application from 11.5.10.2 to 12.1.1. If that's the case, how can I prepare MW to upgrade the R12 (12.1.1) application to 12.1.3. Should I use 'maintenance pack assistant R12' or 'release upgrade assistant R12' or should I customize the R12 upgrade project to upgrade the application to 12.1.3 after upgrading to 12.1.1.
    Besides, when I am in 'Define Nodes' page, I see column 'Main Upgrade from' is '11.5.10.2', 'Main upgade to' is '12', but nothing in columns 'Other Upgrade from' and 'Other Update to'. Could some one tell me what these two columns ('Other Upgrade from' and 'Other Update to') for.
    Thanks,
    Derek

    Derek,
    Version 2.17 of MW will take you from 11.5.10 to 12.1.1 using the Upgrade Assistant 12 product.
    We are in the process of updating the RUP12 product to then take you from 12.1.1 to 12.1.2. This, however, has not been released yet, and does not even have a tentative date, although I do feel it will be in calendar year 2010! 12.1.3 is on the horizon, but not currently being worked on yet, as it is so new.
    If 12.1.3 is your ultimate goal, I suggest you use the MW to upgrade to 12.1.1 and then manually apply the RUP to 12.1.3. (Alternatively, you could add the steps as custom into your MW project as you suggested, if you like.)
    Hope this helps,
    -Vikki

  • R12 Upgrade- lookup types?

    Hi gurus- I am in the middle of an R12 upgrade and doing mapping. I see references in custom code to the table FND_LOOKUP_TYPE_USAGES. This does not exist in R12. Where does this data map to now? Is there an equivalent quick code table?
    Thanks in advance.

    Hi,
    Check if these tables help.
    FND_LOOKUP_TYPES
    FND_LOOKUP_TYPES_TL
    FND_LOOKUP_VALUES
    eTRM
    http://etrm.oracle.com
    Thanks,
    Hussein

  • R12 Upgrade questions...

    Does it mandatory Mutli org enabled before upgrade R12
    upgrade patch failing with following error
    Do you want to run AutoPatch with these actions turned off [Yes] ? yes
    Completed: file QPXDUPLA.sql on worker 2 for product qp username QP.
    FAILED: file funmochk.sql on worker 6 for product fun username FUN.
    Deferred: file funmochk.sql on worker 6 for product fun username FUN. (Deferment number 2 for this job)
    There are now 107575 jobs remaining (current phase=A0):
    6 running, 0 ready to run and 107569 waiting.
    here are now 106722 jobs remaining (current phase=A4):
    0 running, 0 ready to run and 106722 waiting.
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file pechktsk.sql on worker 2.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    AutoPatch error:
    The following ORACLE error:
    for above issue , we need to apply patches(
    Does it mandatory move OATM before upgrade to R12( we are planing to upgrade OATM after R12 ugprade)

    [applmgr@unicos log]$ cat adwork001.log
    ************* Start of AD Worker session *************
    AD Worker version: 11.5.0
    AD Worker started at: Sun Apr 03 2011 10:16:12
    APPL_TOP is set to /data/oracle/apps/prodappl
    Worker id = 1
    Started by: adpatch
    NLS_LANG value from the environment is : AMERICAN_AMERICA.US7ASCII
    NLS_LANG value for this AD utility run is : AMERICAN_AMERICA.US7ASCII
    Connecting to SYSTEM......Connected successfully.
    Already asked for the ORACLE username and password
    of Application Object Library.
    (The given username/password was: APPLSYS/*****)
    Connecting to APPLSYS......Connected successfully.
    The status of various features in this run of AD Worker is:
    <-Feature version in->
    Feature Active? APPLTOP Data model Flags
    CHECKFILE Yes 1 1 Y N N Y N Y
    PREREQ Yes 6 6 Y N N Y N Y
    CONCURRENT_SESSIONS No 2 2 Y Y N Y Y N
    PATCH_TIMING Yes 2 2 Y N N Y N Y
    PATCH_HIST_IN_DB Yes 6 6 Y N N Y N Y
    SCHEMA_SWAP Yes 1 1 Y N N Y Y Y
    CODELEVEL No -1 1 N N N N Y Y
    JAVA_WORKER No -1 1 N N N N Y Y
    Reading product information from file...
    Reading language and territory information from file...
    Reading language information from applUS.txt ...
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/ipmprod.txt
    does not exist for product "ipm".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/izuprod.txt
    does not exist for product "izu".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/dnaprod.txt
    does not exist for product "dna".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/itaprod.txt
    does not exist for product "ita".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/pftprod.txt
    does not exist for product "pft".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/ftpprod.txt
    does not exist for product "ftp".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/gmoprod.txt
    does not exist for product "gmo".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/ibwprod.txt
    does not exist for product "ibw".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/qprprod.txt
    does not exist for product "qpr".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/rrsprod.txt
    does not exist for product "rrs".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/jmfprod.txt
    does not exist for product "jmf".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/ircprod.txt
    does not exist for product "irc".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/ameprod.txt
    does not exist for product "ame".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/dppprod.txt
    does not exist for product "dpp".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/mthprod.txt
    does not exist for product "mth".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/ddrprod.txt
    does not exist for product "ddr".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    AD Worker warning:
    Product Data File
    /data/oracle/apps/prodappl/admin/inlprod.txt
    does not exist for product "inl".
    This product is registered in the database but the
    above file does not exist in APPL_TOP. The product
    will be ignored without error.
    Currently, the following language is installed:
    Code Language Status
    US American English Base
    Your base language will be AMERICAN.
    Connecting to SYSTEM......Connected successfully.
    Connecting to APPLSYS......Connected successfully.
    Connecting to APPS......Connected successfully.
    Connecting to APPLSYS......Connected successfully.
    Connecting to APPS......Connected successfully.
    Reading jobs to run from restart file.
    Completed reading the to-do restart file. Ready to run jobs.
    Setting parallel context: PARALLEL AUTOPATCH AT R115
    Time when worker started job: Sun Apr 03 2011 10:16:31
    AD Worker error:
    Unable to find release information for product 'fnd' version 12.0.0
    Time when worker failed: Sun Apr 03 2011 10:16:31
    Time when worker started job: Sun Apr 03 2011 10:16:33
    AD Worker error:
    Unable to find release information for product 'fnd' version 12.0.0
    Time when worker failed: Sun Apr 03 2011 10:16:33
    Time when worker started job: Sun Apr 03 2011 10:16:33
    AD Worker error:
    Unable to find release information for product 'fnd' version 12.0.0
    Time when worker failed: Sun Apr 03 2011 10:16:33
    [applmgr@unicos log]$

  • R12 Upgrade issue

    Sawwan,
    I am doing R12 upgrade, as part of it, i have applied R12 AD patch, now when ever i am trying to appy English patch, i am getting below error, any ideas
    1)sourced R12 envronment.
    [applmgr@appl]$ . *.env*
    /data/oracle/R12/apps/apps_st/appl/au/12.0.0/patch/115/driver
    2)
    [applmgr@unicos driver]$ ls -ltr
    total 76840
    -rwxr-xr-x 1 applmgr dba 755 Jan 3 2007 ausstats.drvx
    -rwxr-xr-x 1 applmgr dba 233 Jan 3 2007 augenmsg.drvx
    -rw-r--r-- 1 applmgr dba 66588365 Jan 5 2007 u4440000.drv
    -rw-r--r-- 1 applmgr dba 11981777 Jan 5 2007 u5051400.drv
    [applmgr@unicos driver]$ adpatch options=nocopyportion,nogenerateportion
    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA
    Oracle Applications AutoPatch
    Version 12.0.0
    NOTE: You may not use this utility for custom development
    unless you have written permission from Oracle Corporation.
    Attention: AutoPatch no longer checks for unapplied pre-requisite patches.
    You must use OAM Patch Wizard for this feature. Alternatively, you can
    review the README for pre-requisite information.
    Your default directory is '/data/oracle/R12/apps/apps_st/appl'.
    Is this the correct APPL_TOP [Yes] ?
    AutoPatch records your AutoPatch session in a text file
    you specify. Enter your AutoPatch log file name or press [Return]
    to accept the default file name shown in brackets.
    Filename [adpatch.log] : u5051400.log
    Options = "nocopyportion,nogenerateportion".
    Currently, the following language is installed:
    Code Language Status
    US American English Base
    Your base language will be AMERICAN.
    Setting up module information.
    Reading database for information about the modules.
    Saving module information.
    AD code level : [B.1]
    Trying to obtain a lock...
    Attempting to instantiate the current-view snapshot...
    Was already instantiated. So no instantiation done this time.
    **************** S T A R T O F U P L O A D ****************
    Start date: Tue Mar 29 2011 23:48:54
    0 "left over" javaupdates.txt files uploaded to DB: Tue Mar 29 2011 23:48:54
    0 patches uploaded from the ADPSV format patch history files: Tue Mar 29 2011 23:48:54
    Uploading information about files copied during the previous runs ...
    0 "left over" filescopied_<session_id>.txt files uploaded to DB: Tue Mar 29 2011 23:48:54
    ****************** E N D O F U P L O A D ******************
    End date: Tue Mar 29 2011 23:48:54
    Already asked for the name of the patch directory.
    (The answer was: /data/oracle/R12/apps/apps_st/appl/au/12.0.0/patch/115/driver)
    Already asked for the name of the patch driver file.
    (The answer was: /data/oracle/R12/apps/apps_st/appl/au/12.0.0/patch/115/driver/u5051400.drv)
    Getting Oracle Applications Release...
    Current installed release is 11.5.10.2
    Reading patch driver file...
    Parsing and loading patch driver file...
    Processing line 10000.
    Processing line 20000.
    Processing line 30000.
    Processing line 40000.
    Processing line 50000.
    Processing line 60000.
    Processing line 70000.
    Processing line 80000.
    Processing line 90000.
    Processing line 100000.
    Processing line 110000.
    Processing line 120000.
    Processing line 130000.
    Processing line 140000.
    Processing line 150000.
    151980 lines processed.
    Not checking patch integrity as integrity checking flag is turned off.
    Successfully read patch driver file.
    AutoPatch error:
    adprdf(): At line 3 in file u5051400.drv:
    This patch cannot be applied to your current release.
    Patch's intended release is "12.0.0"
    Your   current   release is "11.5.10.2"
    You should check the file
    /data/oracle/R12/apps/apps_st/appl/admin/PROD/log/u5051400.log

    Please see these docs.
    Why Do Some Patches Error Reporting 11i Environment During R12 Upgrade? [ID 1276074.1]
    11i to R12 Upgrade, U7461070.DRV error: This Patch Is Not Compatible With Your On-Site Release [ID 1265496.1]
    Thanks,
    Hussein

Maybe you are looking for

  • How do i get rid of the last 39 cents on my gift card?

    Please help me , i don't know a good way to get rid of them

  • HTC Desire & BT homehub.

    just transferred from sky to bt and can no longer use wifi on my htc, the phone says i'm connected my hub network says i'm not.htc say its to do incompatibility with n routers. any ideas please,i'm not very tech.minded so its driving me mad!

  • Locking Table Size?

    Hi M.M Team, I noticed that my site can have uneven table cell sizes when viewed in different browsers. IE is good, but Firefox isn't. Is there a way to lock the table sizes please so that this doesn't happen? Thanks Ray

  • CS5 InDesign not working properly anymore

    I recently just finished a project in InDesign and the program worked completely fine. I turned on my computer to use the program and when it opens, it's nothing but a gray window. I'm unable to use any of the tools or do anything in the new document

  • How to make the plot area of a xy transparant?

    I want to use a image to use as background of a xy graph so I want to make the plot area transparant