noetixannotations.blogspot.com
Noetix Annotations: Troublshooting The ORA-04021 Error in a Development Environment
https://noetixannotations.blogspot.com/2014/08/troublshooting-ora-04021-error-in.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Monday, August 18, 2014. Troublshooting The ORA-04021 Error in a Development Environment. I notice that my regeneration was stalling through the install4.sql script in a development environment. Finally, the regeneration timed out. Next, I check for the last spool file and it is the file, ycrenvph.lst. This script creates the header for the package, noetix env pkg. Next, I find this session's detail:. Lessons Le...
noetixannotations.blogspot.com
Noetix Annotations: Concurrent Program Query to View Scheduled and Pending Noetix Concurrent Programs
https://noetixannotations.blogspot.com/2014/10/concurrent-program-query-to-view.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Thursday, October 9, 2014. Concurrent Program Query to View Scheduled and Pending Noetix Concurrent Programs. Simple concurrent program query to view scheduled and pending Noetix concurrent programs:. FROM applsys.fnd concurrent requests fcr,. Applsys.fnd application fa. AND fcr.program application id = fa.application id. AND fa.application short name = 'XXNAO'. AND fcr.phase code = 'P'.
noetixannotations.blogspot.com
Noetix Annotations: October 2013
https://noetixannotations.blogspot.com/2013_10_01_archive.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Friday, October 18, 2013. Improving the Noetix Views by Logging Tickets. Sometimes I get really busy and I have no time to submit issues to Noetix regarding issues I have identified with one of their views. Lately, I have been taking the time to submit tickets. All of us whom use Noetix Views will be better off if we submit tickets and the views improve to address identified issues. Index name column name. This ...
noetixannotations.blogspot.com
Noetix Annotations: July 2013
https://noetixannotations.blogspot.com/2013_07_01_archive.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Wednesday, July 10, 2013. Regeneration of Noetix Views Using SQL*Plus Via Windows Command Line. Some time ago, I always used the Noetix View Administrator to perform all of my regenerations. In the last year or so, I started running my regenerations using SQL. In Microsoft command line. Is there anything to gain from this? Not really that I can tell. The NVA is just a. In command mode is perhaps like the differe...
noetixannotations.blogspot.com
Noetix Annotations: August 2014
https://noetixannotations.blogspot.com/2014_08_01_archive.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Tuesday, August 26, 2014. Digression: Querying for Organizations, Operating Units, Legal Entities and Ledgers in an R12 Environment. Invariably in an Oracle Applications environment, one needs to be aware of and know the relationship between organizations, operating units, legal entities and ledgers. Houorganization id organization id,. Mporganization code organization code,. Hrhr organization information hoi1,.
noetixannotations.blogspot.com
Noetix Annotations: Expedient XU2/XU5 Script Development
https://noetixannotations.blogspot.com/2011/03/expedient-xu2xu5-script-development.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Tuesday, March 22, 2011. Expedient XU2/XU5 Script Development. Well, you have taken the Noetix Certification Course. You want to develop xu2/xu5 scripts, but the method to uncover syntactical/table constraint generated errors is very inefficient. How can I speed-up checking for syntactical/table constraint generated errors (not logical errors)? Here are three methods I have used to help me uncover errors quickly.
noetixannotations.blogspot.com
Noetix Annotations: Capturing Errors in XU2 Scripts Early in Stage 4 of a View Regeneration Using MS PowerShell
https://noetixannotations.blogspot.com/2015/01/capturing-errors-in-xu2-scripts-early.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Friday, January 23, 2015. Capturing Errors in XU2 Scripts Early in Stage 4 of a View Regeneration Using MS PowerShell. This is a re-post. I posted on this previously and documented a MS DOS command to find errors in my XU2 scripts ( here. One can typically examine the root cause of these errors if one looks at this query:. FROM DBA CONS COLUMNS. WHERE 1 = 1. AND OWNER = 'NOETIX SYS'. Get-Alias MS DOS Command.
noetixannotations.blogspot.com
Noetix Annotations: January 2015
https://noetixannotations.blogspot.com/2015_01_01_archive.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Friday, January 23, 2015. Capturing Errors in XU2 Scripts Early in Stage 4 of a View Regeneration Using MS PowerShell. This is a re-post. I posted on this previously and documented a MS DOS command to find errors in my XU2 scripts ( here. One can typically examine the root cause of these errors if one looks at this query:. FROM DBA CONS COLUMNS. WHERE 1 = 1. AND OWNER = 'NOETIX SYS'. Get-Alias MS DOS Command.
noetixannotations.blogspot.com
Noetix Annotations: Administration Digression: My Favorite Kind of New Oracle Function, LISTAGG
https://noetixannotations.blogspot.com/2014/11/administration-digression-my-favorite.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Thursday, November 13, 2014. Administration Digression: My Favorite Kind of New Oracle Function, LISTAGG. With the administration of my Discoverer / Noetix environment, I find that sometimes I need to compose comma separated concatenated list of some text column (e.g. for the purpose of creating documentation). LISTAGG ( expression, [delimeter] ) WITHIN GROUP (ORDER BY order by expression list ). 4 WHERE 1 =1.
noetixannotations.blogspot.com
Noetix Annotations: September 2013
https://noetixannotations.blogspot.com/2013_09_01_archive.html
Notes regarding supporting and developing Noetix Views in an Oracle Applications environment. Tuesday, September 17, 2013. Oracle 11g Database and Capturing Error Logging During a Noetix Regeneration. Noetix's approach to finding these errors is to invoke during the regeneration process the fnderr.* scripts (the exact script called is dependent on the operating system being used on the server which has the Noetix Administrator installed). This is an effective approach. There would be great value in submi...