Missing Responsibilites after Upgrade to R1213

From: How To Run The Workflow Directory Services Concurrent Program From The SQLplus Prompt [ID 1213304.1]

1. Sync responsibility role data into the Workflow table:

begin
fnd_user_resp_groups_api.sync_roles_all_resp_secgrps(TRUE);
end;

2. Synchronize WF LOCAL tables:

exec WF_LOCAL_SYNCH.BulkSynchronization(‘ALL’)

The Synchoronize WF LOCAL table step above give the following error:

ERROR at line 1:

ORA-12801: error signaled in parallel query server P000

ORA-01452: cannot CREATE UNIQUE INDEX; duplicate keys found

ORA-06512: at “APPS.WF_LOCAL_SYNCH”, line 2726

ORA-06512: at line 1

sqlplus apps/apps $FND_TOP/patch/115/sql/affurgol.sql

The run step three from MOS Note [1213304.1]

3. Workflow Directory Services User/Role Validation:

exec wf_maintenance.ValidateUserRoles(p_BatchSize => null, p_check_dangling => TRUE, p_check_missing_ura => TRUE, p_UpdateWho => FALSE);

 Run adstpall.sh to stop the apps tier and adstrtal.sh to start the apps tier.

 

Recent Issues with the R1213 Upgrade

Issues with the R1211 Upgrade

After applying the latest R12.1.1 preinstall=y patches, I found these new issues:

To fix the GMIG3MIB.sql issue:

Run sqlplus apps/apps  …/apps/apps_st/appl/gmi/12.0.0/patch/115/sql/GMIG3MIB.sql

Enter value for 2: GMI

Enter value for 1: 1000

Enter value for 3: 1

Enter value for 4: 1

GMIG3MIB.sql

I skipped the okemd2fx.sql, with option 8, and skipped the wmsrules.sql

Download the EBS Software for R12.1.1 Install for Rapidwiz

First, go to edelivery.oracle.com and select the E-Business Suite and Linux, Solaris or whatever the appropriate OS is. Then, select the set of disks to install; For instance, I’ve selected Oracle Solaris 64-bit. You also have the choice of whether you want the NLS packs for additional languages:

EBS download 1

 

 

Notice the next figure shows the first line is the Rapid Install RDBMS Disk2. This is the last disk of the ORACLE_HOME software disks. You will need to download this and rapidwiz will ask for these disks, even though you have selected the rapidwiz option to “Upgrade Oracle Applications”. In my case, I already have a 11.2.0.3 ORACLE_HOME, so I don’t need the 11.1.0.7 ORACLE_HOME that gets installed with these disks. However, there is no option other than install all the software. If you remove this ORACLE_HOME before rapidwiz finishes it’s post install checks, the install will fail and the oraInventory will not be updated. Therefore. wait for rapidwiz to completely finish and then delete the 11.1.0.7 ORACLE_HOME.

In the figure below. you don’t need to download the Rapid Install Databases disks. These are used if you want install the VISION database with data pre-populated.

EBS download 3

 

 

 

 

 

You will need the Tools disks, the APPL_TOP disks and the startCD disks:

EBS download 4

 

 

 

 

After you unzip these zip files,  you should have the following directories:

oraApps

oraAS

oraDB

startCD

If you want to download the software for Linux, notice the part numbers are different in the figure below:

EBS download 5

 

 

 

If you are using Linux, there are different disks to install for Linux:

EBS download 6

Performance tuning the R12.1.3 Upgrade

Question from EBS DBA:

We are up to our sixth pass and are on our seventh and perhaps last one. The past two times have taken longer than the previous ones (I’m talking like 8-12 hours per on the 12.1 and 12.1.3 patches). Doesn’t seem like a lot but when you only have 72 hours it’s a lot!

I think I may know why but wanted to run it by you. We avoided running the statistics steps in order to save some time up front. Thinking about it now, could this end up adding hours to the two main patches?

I think yes, it could be huge. We are also looking at the SAN as well but thought I would start here.

Answer from Mike:

Yes, statistics can be very helpful. You should run these upfront, adstats.

Second, take a look at V$SYSTEM_EVENT, it will tell you what your wait events are. This is cumulative, so stop your database before you start the upgrade and it will refresh the table.

Your SAN is probably the biggest problem. Get everyone out of the SAN during the upgrade; you are sharing bandwidth. Also, ask your SAs if they can increase the stripe size for the upgrade. If you can stripe across 8-12 disks during the upgrade and the reduce that after the upgrade. The reason is concurrency. When you run the upgrade with the stripe size going across 12 disks, you’ll light up the whole SAN with the upgrade. Also, spread your mount points across the SAN so that you are using more disks and aren’t using just one or two mount points with a very limited number of disks. If you can light up the whole SAN you’ll have better throughput. However, reduce this after he upgrade, because with multiple users, they will be waiting for each other; waiting for each other’s transactions to complete. Transactions will be very fast with lots of mount points with more disks, but everyone will be waiting. As long as it’s just the upgrade running more disks with more disks in each stripe will improve you IOPS.

Also, check your network. You may be waiting on your network. If you have multiple DNS servers, test how long it takes to return an address from all the DNS servers. If you have a bad DNS address, SQLNet will wait 1 minute before trying the next DNS address. For a 3 second SQL transaction, this can be devastating.

Use fewer workers if you have poor IO and more workers if you have fast IO. For example, with just a few disks, use the same number of workers (3-4) as you have disks. With a large number of disks use 16 workers. However, this depends on the number of CPUs you have. More workers will help the compile stage. So, use about the same number of workers as you have CPUs, if you have lots of disks. If you have only a few disks, more CPUs and more workers will make the problem worse.

Obsolete Columns after the R12.1.3 Upgrade – alter table … drop unused columns

Hi Mike,

When a column is marked unused, it is considered for all effective purposes as dropped —  (so much so , you could follow up that command with adding a new column to the table with the same column name) — as I mentioned, this action (of setting column unused, is irreversible– there is no command to mark it “used”)….the only action left to do, is a space management operation to reclaim the space …so from this perspective, knowing which columns existed before, and were marked unused is irrelevant …all one needs to know is that table x has some columns that were marked unused (essentially dropped – minus space reclaim) …and that these tables are the ones  for which space can be reclaimed via the alter table …drop unused columns  command.

If you need to see which columns where marked ununsed , you can try one of the following approaches …

1 — View the 12.1.3 data model comparison report from MOS Doc. 1290886.1

2 — Try something like this in a test env  which I found poking around in the web — which created a view on dictionary objects which supposedly does the column lookup even for unused cols — but I have not tried it :   http://stackoverflow.com/questions/2949226/how-can-you-tell-which-columns-are-unused-in-all-tab-cols

thanks,
-lester

Stopping and Starting adpatch Causes ‘Unable to find job when reading existing jobs’

I have comments turned off on this blog, but please email me at mike@trutek.com, if you have questions or comments.

Sometimes stopping and restarting a patch that seems to be hanging with adctrl will cause the patch to finish. However, twice now this process has scared the living bejebers out of me. In the example below, job GMIG3MIB.sql was running for a very long time, so I stopped the patch with adctrl and restarted the patch, using adpatch.

GMIG3MIB.sql

 

 

 

 

After restarting the patch, the patch always scares me, because the first thing it says is that it’s starting over, then after reading the completed jobs from the restart file, it determines the correct number of jobs remaining:patch issue 1

 

 

 

 

Then, I got this message that say’s, it’s “Unable to find job when reading existing jobs”, Actually the job GMIG3MIB.sql has already finished, so I tried setting the status with adctrl to quit and failed, and the option 8, skip and restart on the next job.

GMIG3MIB.sql1

 

 

 

 

 

 

So now, since the status was Skip & restart, I thought the jobs would be skipped, but I still kept getting the “Unable to find job when reading existing jobs” error from above.

GMIG3MIB.sql

 

 

 

 

 

Boy did I think I was in serious ____, but with a little research on MOS, I found: Inadvertently Closing a Session of Adpatch Causes ‘Unable to find job ‘ Error [ID 257505.1]

This MOS note says, to resolve this issue:

1. Determine the last job that was supposed to run. (zxexemptjur.sql)

2. Grep from all the adworker log files to confirm that the last job

has been completed successfully by one of the adworkers. (GMIG3MIB.sql)

3.  Update fnd_install_processes with control code and status both =

‘W’ for the worker that this driver is assigned.

4  Restart adpatch.

This worked and saved me from restoring the database files and restarting the 1211 MP, 6678700, with 125402 jobs and running the patch for another 16 hours. Whew.

update applsys.fnd_install_processes set status=’W’ where worker_id=1;

update applsys.fnd_install_processes set status=’W’ where worker_id=2;

update applsys.fnd_install_processes set control_code=’W’ where worker_id=1;

update applsys.fnd_install_processes set control_code=’W’ where worker_id=2;

To fix the GMIG3MIB.sql issue:

Run sqlplus apps/apps  …/apps/apps_st/appl/gmi/12.0.0/patch/115/sql/GMIG3MIB.sql

Enter value for 2: GMI

Enter value for 1: 1000

Enter value for 3: 1

Enter value for 4: 1

I skipped the okemd2fx.sql, with option 8, and skipped the wmsrules.sql.

Missing R12.1.1 preinstall patches after starting the R12.1.1 Upgrade

I started the most recent pass of the R12.1.1 upgrade and then realized I had forgotten some patches. Some of the patches had not been download from MOS, because I tried to download too many at a time. I think there is a limit of about 100 patches per download, but I don’t know the exact number. Therefore, I only downloaded about 100 of the 120 patches I intended to download.

I started the upgrade using the u6678700.drv, in $AU_TOP/patch/115/driver and then I double checked my patch directory. I was surprised and worried when I realized I did not have all the patches. I was missing some very important patches, included in an earlier post, and sumarized below, including the R12.1 CUP1, 7303029 and others.

The list from earlier for the R12.1 preinstall=y patches:

7303029, 7648869, 8230656, 8351855, 8429275, 8495719, 8509517, 8517880, 8615142, 8712047, 8731432, 8752951, 8764069, 8781600, 8850587, 8865466, 8871012, 8942413, 8967918, 9062910, 9082021, 9202645, 9257954, 9290222, 9491856, 9504903, 9560244, 9586498, 9726737, 9799876, 9868229, 9903933, 9918101, 9947835, 10011700, 10029457, 10041471, 10096115, 10096191, 10144929, 10163624, 10163753, 10170555, 10198811, 10221534, 10235226, 10275581, 10358280, 10359715, 10393730, 10420245, 11071399, 11653739, 11767692, 11847569, 11928146,, 12344218, 12347791, 12372035, 12382774, 12387835, 12422840, 12553436, 12578648, 12648752, 12651338, 12682665, 12877002, 12877611, 12912302, 12930626, 12944782, 12990345, 12992125, 13016846, 13019385, 13040251, 13243594, 13248921, 13335019, 13356426, 13390676, 13397299, 13403786,  13451293, 13509912, 13544907, 13545598, 13557244, 13577549, 13598940,  13684949, 13695167, 13774403, 13793279, 13799611,  13820304, 13833174, 13837821, 13856969, 13864126, 13872862, 13917170, 13931180, 13978746, 14026963

I got a little excited when I realized I had jeopardized all my earlier work, but not double checking that the patches had been accurately uploaded to the server. However, I know how to apply a patch in the middle of the maintenance pack, by making a copying of the $APPL_TOP/admin/SID/restart directory and a copy of the FND_INSTALL_PROCESSES table (create table applsys.fnd_install_processes_backup as select * from applsys.fnd_install_processes).

After making a backup of the table and directory, I stopped the patch using adctrl and applied the missing R12.1.1 preinstall patches. After copying the restart directory and fnd_install_processes table from the backups, I restart the 6678700 R12.1.1 Maintenance Pack. To my surprise, it never asked me if I wanted to continue with the previous patch, and started the 6678700 driver from the beginning. I was mortified. I was sure the patch would fail, as this has happened to me before, with failure as the only option, and recovery of the database would be necessary.

However, to my surprise, the patch worked just fine. After further investigation, the patch had previously reached phase A25, when I stopped it to apply the missing patches. These phases contain only odf and xdf files. These object descriptor files and xml descriptor files prepare the instance and can be re-run. The odf and xdf files continue through phases A35. Therefore, any failures before the end of phase A35 can be restarted without using the copies of the restart directory and backup of the FND_INSTALLED_PROCESSES table.

Wrong ELF class: ELFCLASS64 after installing R1211 with rapidwiz

After installing R1211 with rapidwiz, I tried to run admrgpch to merge the R1211 preinstall=y patches listed in an earlier post. I received an error: admrgpch: fatal: libclntsh.so.10.1: wrong  ELF class: ELFCLASS64.  I found a related note on MOS, R12 – adcfgclone appsTier fails with error for ld.so.1 ‘wrong ELF class: ELFCLASS64’ [ID 1078123.1]. However, this did not fix the problem, but gave me a clue to what was wrong. It turns out the issue was the oraInventory for the Apps tier was not write-able by the applmgr user. I copied the old central oraInventory to oraInventoryback and then I made sure the oraInst.loc had the inst_group=dba. I changed the location of the oraInventory in all the Apps tier oraInst.loc locations to a write-able directory and reinstalled the Apps tier with rapidwiz. This solved the problem.

R12.1.1 preinstall=y Patches to Update the 1211 filesystem before the Upgrade

Apply only the patches for modules that are installed and in use. You may not need some of these patches.

7303029 Oracle E-Business Suite Consolidated Upgrade Patch 1 (CUP1) for R12.1.1  
7648869 RCA: SUPPLIER CONTACT DETAILS MISSING SOME TITLE IN R12 FORM AFTER UPGRADE. Payables
8230656 RCA BUG FOR BUG 7705629 Payments
8495719 EVENT CLASS OPTIONS ARE NOT MIGRATED FOR PAYABLES E-Business Tax
8764069 POST USERMIGRATE TO HASH PASSWORDS, AFTER 12.1 UPG, FNDCPASS FAILS DECRYPT Application Object Library
8781600 CFIX : CHANGE TRANSACTION_DATE IN XLA_EVENTS DURING AX UPGRADE Subledger Accounting
8781600 CFIX : CHANGE TRANSACTION_DATE IN XLA_EVENTS DURING AX UPGRADE Subledger Accounting
8850587 R12 UPGRAGE DEFAULT_PAYMENT_METHOD_CODE SETS TO WRONG VALUE Payments
8850587 R12 UPGRAGE DEFAULT_PAYMENT_METHOD_CODE SETS TO WRONG VALUE Payments
9082021 WRONG TAX CALCULATION FOR MIGRATED COMPOUNDED TAXES-CANADA E-Business Tax
9202645 UPGRADE SCRIPT ZXEXEMPTMIG1.SQL LONG RUNNING E-Business Tax
9290222 Some rules created from tax group migration are incorrectly enabled E-Business Tax
9560244 DURING UPGRADE TO R12, SCRIPT 5408422.SQL IS TAKING 1,5 HOURS Item Master
9726737 RCA: REVERSED TIPV AND NREC AMOUNTS ARE GOING WRONG WHILE UPGRADING Payables
9903933 ZXGEOTORATESMIG8.SQL FAILS IN 12.1.1 UPGRADE E-Business Tax
9918101 RCA:RECURRING INV TEMPLATE UPGRADE FROM 11I DOESN’T UPDATE EXT_BANK_ACCOUNT Payables
10011700 RCA:NEGATIVE CCIDS FOR INTRACOMPANY RULES UPGRADE FROM 11I TO R12 Financials Common Modules
10029457 TAX CODES WHICH ARE USED IN TAX GROUPS UPGRADED FROM 11I TO R12 UNDER DIFFERENT REGIME E-Business Tax
10041471 SKIP R12 UPGRADE CASH ACCOUNTING METHOD MIGRATION SCRIPTS ON ACCRUAL Receivables
10041471 SKIP R12 UPGRADE CASH ACCOUNTING METHOD MIGRATION SCRIPTS ON ACCRUAL Receivables
10163624 EMEA VAT UPG: JGZZVATUPGTRXDET.SQL TOOK 8+ HRS (PRE INSTALL) Regional Localizations
10163753 APPSST11202: BIV_B_AGE_H_SUM_MV FAILS DURING INDEX CREATION Service Intelligence
10163753 APPSST11202: BIV_B_AGE_H_SUM_MV FAILS DURING INDEX CREATION Service Intelligence
10198811 R12 UPGRADE DRIVER FAILES WITH ORA-01400: CANNOT INSERT NULL INTO( Subledger Accounting
10275581 QRE :R12.1.1 UPGRADE DRIVER (U6678700.DRV) FAILING FOR CSLKU.ODF Service
10420245 Pre-Install: Upgrade script jaircvrtvdff.sql hangs during 12.1.1 upgrade Financials For India
11653739 RCA : RCA FOR DUPLICATE PARTY SITES AFTER UPGRADE Payables
11653739 RCA : RCA FOR DUPLICATE PARTY SITES AFTER UPGRADE Payables
11767692 BUG TO STUB OUT GMDQCMI2.SQL AND GMDQCMIJ.sql OPM Product Development
11847569 PRE INSTALL PATCH FOR 10077152, INDEXES ON AP_LIABILITY_BALANCE Payables
12332819 In Oracle Purchasing, User was not able to approve a Complex PO with Advance Shipment. Purchasing
12344218 Invoice lines upgrade (APLNUPGB.PLS) taking longer time to complete Payables
12360278 In Oracle Purchasing, After patch 9593873, Note entered in Response section of notification was not getting updated in action history when document was rejected. Purchasing
12372035 AP > ZXPOTRXMIGUPD.SQL FAILS WITH ERROR ORA-00001: UNIQUE CONSTRAINT VIOLATED E-Business Tax
12382774 TAX GROUPS NOT CORRECTLY MIGRATED FROM R11I TO R12 E-Business Tax
12387835 MASTER ITEM MIGRATION FROM R11.5.7 TO R12 – SHELF LIFE NOTE MIGRATED TO ALL ORGS Inventory Management
12422840 GMDMIG.SQL SHOULD NOT BE A PART OF 12.1 OPM Product Development
12553436 SLA HOT PATCH FAILS WITH ORA-00001 UNIQUE CONSTRAINT (PA.PA_PRIM_REP_LEGER_TMP_U Project Costing
12578648 UPGRADE:APXLAPAY.SQL:PERFORMANCE PROBLEM WAS NOT FIXED Payables
12648752 RCA : POPULATE CORRECT VALUE OF FRZ_FLG AND ASSOC_CHILD_FRZN_FLG DURING UPGRADE E-Business Tax
12682665 Migrated tax groups were not working properly incase the tax group length is more than 40 E-Business Tax
12837833 RECOVERY RATE RULES ARE NOT GETTING HONORED E-Business Tax
12837833 RECOVERY RATE RULES ARE NOT GETTING HONORED E-Business Tax
12877002 INCORRECT TAXABLE BASE AMOUNT ON TAX DISTRIBUTIONS Payables
12877002 INCORRECT TAXABLE BASE AMOUNT ON TAX DISTRIBUTIONS Payables
12877611 RCA – CONTACT POINTS INACTIVATED WHEN CONTACTS ARE ENDDATED DURING UPGRADE Payables
12912302 ECE PAYABLES VAT REGISTER DISPLAY NO DATA Regional Localizations
12930626 1OFF:7216659:12.1.3:PA/GMS: R12 SLA UPGRADE ISSUE IF ENHANCED PERIOD PROC Project Costing
12944782 COMPOUNDED TAX RATE IS NOT CALCULATED CORRECTLY IN R12 E-Business Tax
12944782 COMPOUNDED TAX RATE IS NOT CALCULATED CORRECTLY IN R12 E-Business Tax
12990345 GROUP BY ERROR HAPPENING IN APSTCA01.SQL Payables
12990345 GROUP BY ERROR HAPPENING IN APSTCA01.SQL Payables
12992125 RCA BUG: BANK ACCOUNT NAME IS APPENDED WITH OU NAME DURING UPGRADE. Payments
13016846 RCA Upgraded untranferred accounting headers have incorrect GL transfer flag Payables
13016846 RCA Upgraded untranferred accounting headers have incorrect GL transfer flag Payables
13019385 AFTER R12 UPGRADE USER CANNOT OVERRIDE THE CALCULATED TAX LINES E-Business Tax
13040251 Performance issue in upgrade accounting Payables
13040251 Performance issue in upgrade accounting Payables
13243594 AFTER MIGRATION ORDERS WITH STATUS OF RTW CANNOT BE TRANSACTED OPM Logistics
13248921 EMEA VAT UPG: JGZZVATUPGTRXDET.SQL FAILS DURING UPGRADE TO R12.1.1 (PRE INSTALL) Regional Localizations
13335019 UPGRADE: GMIG3MIB.SQL TAKING 8 HRS OPM Inventory
13356426 MODIFY AX UPGRADE SCRIPT XLAAXUAR.SQL TO MAP INTRA ACCOUNTING_CLASS_CODE Subledger Accounting
13356426 MODIFY AX UPGRADE SCRIPT XLAAXUAR.SQL TO MAP INTRA ACCOUNTING_CLASS_CODE Subledger Accounting
13390676 APINTBAL.SQL SCRIPT RUNS FOR MORE THAN 48 HOURS DURING TEST UPGRADE Subledger Accounting
13397299 UPGRADE: GMIG3MIB.SQL TAKING 8 HRS Inventory Management
13403786 R12.1.1 UPGRADE DRIVER U6678700.DRV HANGS AT OZFUPFUT.SQL SINCE MORE THAN 24 HRS Trade Management
13451293 RECOVERY RATE RULES ARE NOT GETTING HONORED E-Business Tax
13451293 RECOVERY RATE RULES ARE NOT GETTING HONORED E-Business Tax
13509912 CONSOLIDATED ROOT CAUSE CODEFIX: ACCOUNTING & UPGRADE RELATED ISSUES Project Costing
13509912 CONSOLIDATED ROOT CAUSE CODEFIX: ACCOUNTING & UPGRADE RELATED ISSUES Project Costing
13544907 RCA BUG:PAYEE UPG SCRIPT CREATES INACTIVE PAYEES FOR INACTIVE SUPPLIERS/SITES Payments
13545598 In Oracle Purchasing,approval screen shows up only with buttons with no text on them Purchasing
13557244 NEED TO UPGRADE ICMS,IPI DISTRIBUTIONS CREATED BY JL LOCALIZATION AS ITEM IN R12 Payables
13557244 NEED TO UPGRADE ICMS,IPI DISTRIBUTIONS CREATED BY JL LOCALIZATION AS ITEM IN R12 Payables
13577549 ATT MOBILITY UPGRADE: SCRIPT APSTCA01.SQL Payables
13577549 ATT MOBILITY UPGRADE: SCRIPT APSTCA01.SQL Payables
13598940 UPG:AR120CASHLNPU.SQL FAILED DURING ADPATCH ON XLA5584908.DRV Receivables
13598940 UPG:AR120CASHLNPU.SQL FAILED DURING ADPATCH ON XLA5584908.DRV Receivables
13684949 UNABLE TO SEE VOLUME TIERS AFTER 12.1 UPGRADE Trade Management
13695167 Consolidated pre-upgrade fixes Cash Management
13774403 RCA:INVOICE INCLUDES PREPAY FLAG IS NOT POPULATING FOR INV DISTS WHILE UPGRADE Payables
13774403 RCA:INVOICE INCLUDES PREPAY FLAG IS NOT POPULATING FOR INV DISTS WHILE UPGRADE Payables
13793279 Automatic Receipts gives ‘Instrument Assignment not Valid Payer’ Receivables
13793279 Automatic Receipts gives ‘Instrument Assignment not Valid Payer’ Receivables
13799611 In Oracle Purchasing, release form closed abruptly when distribution window was closed Purchasing
13820304 PERFORMANCE HIT DURING UPGRADE TO 12.1.1 IN ZXTAXDEFMIGB.PLS E-Business Tax
13833174 In Oracle Purchasing, BWC, Submission check fails for Complex Work Order with Fixed Price Services due to in consistant amount calculation at Line level and Distributions Purchasing
13837821 PERFORMANCE ISSUE WITH APILNUPG.SQL SCRIPT DURING R12.1.1 UPGRADE-PART-2 Payables
13837821 PERFORMANCE ISSUE WITH APILNUPG.SQL SCRIPT DURING R12.1.1 UPGRADE-PART-2 Payables
13856969 This is the pre-req patch (to be applied Before Inline Migration) for GMF customers upgrading to R12.1 OPM Financials
13864126 APINTBAL.SQL NOT RE-RUNNABLE AND FAILS WITH U1 ERROR Subledger Accounting
13917170 LOCATION Tax not migrated to R12 setup because of multiple Location Tax-Type Tax Codes in 11i setup E-Business Tax
13917170 LOCATION Tax not migrated to R12 setup because of multiple Location Tax-Type Tax Codes in 11i setup E-Business Tax
13931180 In Oracle Purchasing, get FRM-41056 error when enter item information on Quotations form Purchasing
13978746 ACCRUAL LINES MISSING IN XDL AFTER PATCH 13444893:R12.AP.B Payables
13978746 ACCRUAL LINES MISSING IN XDL AFTER PATCH 13444893:R12.AP.B Payables
14026963 COUNTERS MIGRATION FROM 1159 TO R12 – “CSI_MIGRATE_CS_COUNTERS”(CSIMCTRB) ERRORS Install Base

iProcurement Data Missing after Upgrade to Release 12.1.3

You either have not run the extractor or have lots of data exceptions that need to be fixed. This process should help.

1. Run the extractor to ensure that the iProcurement extracted catalog data is updated. See the MOS note below for instructions to run the extractor.

 2. Apply the pre-upgrade patch (4914492). It inserts a new entry in the eContent Manager menu called Release 12 Data Migration, which you can use to run the data exceptions report and/or the pre-upgrade.

 3. Run the exceptions report prior to the pre-upgrade. The report lists data that cannot be automatically upgraded and must be fixed before the upgrade. The pre-upgrade processes the catalog data to the new data model to reduce upgrade downtime. If there are still exceptions, it also updates the exceptions report. The exceptions report divides exceptions into two categories: those to be fixed using an XML file and reloaded into the catalog, and those to be fixed by correcting system default values.

iProcurement Setup & Usage: Internal Catalog Extract Process [ID 215530.1]