Often times, WebADI can be very confusing to work with. There are just too many issues if it is not properly set up. Sometimes you may encounter VBProject Runtime Error when trying to open Web-ADI template file, or sometimes the Excel spreadsheet just hangs up, or can’t be opened.
There are few steps you will have to take before WebADI can be properly used:
- Microsoft Office Version
- Microsoft Excel Settings
- Internet Explorer Settings
Follow the steps below given in the screenshots and apply the settings exactly as they are depicted. The screenshots are from Excel 2010, however the settings should also work for 2000, 2003, 2007 versions.
A) Check the Microsoft Office Version
Make sure you are using 32-bit version of Microsoft Office. Click on Excel –> File –> Help. If you are running 64-bit version, you may want to uninstall 64-bit and re-install the 32-bit version of Microsoft Office.
B) Open Microsoft Excel –> File –> Options –> Trust Center –> Trust Center Settings
B-1) Trusted Documents:
Make sure to check “Allow documents on a network to be trusted“.
B-2) Add-Ins:
Make sure to uncheck all the options.
B-3) ActiveX Settings:
Check only “Enable all controls without restrictions and without prompting“. All other options should be unchecked.
B-4) Macro Settings:
Check “Enable all macros” and “Trust access to the VBA project object model” options.
B-5) Protected View:
Check only “Enable Protected View for Outlook attachments” and “Enable Data Execution Prevention mode” options. All other options should be unchecked.
In case the WebADI still does not work, then keep all the options unchecked, and retry.
B-6) Message Bar:
Check “Show the Message Bar in all applications when achieve content, such as ActiveX controls and macros, has been blocked“.
B-7) External Content:
Check the “Enable all Data Connections” and “Enable automatic update for all Workbook Links” options only.
C) Internet Explorer Settings:
Open Internet Explorer –> Tools –> Internet Options –> Security Tab –> Custom Level.
C-1) Downloads
Scroll down to Downloads section, and make sure File Download is Enabled.
C-2) Miscellaneous:
Scroll down to Miscellaneous section, and make sure to match the following setting.
C-3) Scripting:
Scroll down to Scripting section, and make sure to match the following setting. Then press OK.
Now log out from your Oracle Applications and re-log back in. Retry the Web-ADI upload.
R12 – How to Create a Bank and Branches in Oracle Apps
Share this:
R12 – Step by Step – Retainage in Payables(AP)
Responsibility: Purchasing
Navigation: Setup – Purchasing – Document Styles – Create
Navigation: Setup – Options – Financials Options
Enter the retainage account to use during accounting.
Responsibility: Purchasing
Navigation: / Buyer Work Center / Orders
Select the complex PO document style in the Create drop down box or select ‘More’ to find the complex PO document style if it is not listed in the LOV.
Share this:
R12 – Difference between Draft, Final, etc in Create Accounting
DRAFT will create Journal Entries, which are NOT final, which means they are NOT ready to be transferred to GL.
XLA_AE_HEADERS.accounting_entry_status_code is ‘D’
XLA_EVENTS.process_status_code is ‘D’
XLA_EVENTS.event_status_code is ‘U’
XLA_AE_HEADERS.accounting_entry_status_code is ‘F’
XLA_EVENTS.process_status_code is ‘P’
XLA_EVENTS.event_status_code is ‘P’
XLA_AE_HEADERS.accounting_entry_status_code is ‘F’
XLA_EVENTS.process_status_code is ‘P’
XLA_EVENTS.event_status_code is ‘P’
XLA_AE_HEADERS.transfer_status_code is Y.
It will post to gl_balances also (GL_JE_HEADERS.status is ‘P’).
Part -II: Create Accounting (Concurrent Program): (For more entities)
It is same as Draft online accounting.
2. Accounting Mode: Final, Transfer to GL: No
It is same as Final online accounting.
3. Accounting Mode: Final, Transfer to GL: Yes, Post to GL: No
XLA_AE_HEADERS.accounting_entry_status_code is ‘F’
XLA_EVENTS.process_status_code is ‘P’
XLA_EVENTS.event_status_code is ‘P’
XLA_AE_HEADERS.transfer_status_code is ‘Y’
GL_JE_HEADERS.status is ‘U’.
4. Accounting Mode: Final, Transfer to GL: Yes, Post to GL: Yes
It is same as Final Post online accounting.
Share this:
R12 – Web-ADI Template Settings for Microsoft Excel 2010
There are few steps you will have to take before WebADI can be properly used:
Follow the steps below given in the screenshots and apply the settings exactly as they are depicted. The screenshots are from Excel 2010, however the settings should also work for 2000, 2003, 2007 versions.
B) Open Microsoft Excel –> File –> Options –> Trust Center –> Trust Center Settings
Now log out from your Oracle Applications and re-log back in. Retry the Web-ADI upload.
Share this:
Setting Org Context in Oracle Apps 11i and R12
In 11i we had views on these tables. It requires setting context in order to fetch data from these views. This is for security concerns as these objects holds transaction details.
The SQL command to set the ORG_ID prior to running a script is:
SQL> EXECUTE DBMS_APPLICATION_INFO.SET_CLIENT_INFO(&ORG_ID);
Enter the org_id when prompted.
If using Toad:
In R12 oracle uses VPD (Virtual Private Database) to secure these transactional data .This is one of major difference in application architecture between 11i and R12.
In order to retrieve data from transactional objects, set policy context first ( as below ) –
MODE – This is either “S” – For Single Operating Unit OR “M” – For Multiple Operating Unit
Org_ID – Operating unit (Value from column ORG_ID in all transactional objects)
This is mandatory for “S” mode.
Example :-
Share this: