
prashanthapps.blogspot.com
oracle appsWednesday, 6 July 2011. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
http://prashanthapps.blogspot.com/
Wednesday, 6 July 2011. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
http://prashanthapps.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Sunday
LOAD TIME
1.4 seconds
16x16
32x32
64x64
128x128
PAGES IN
THIS WEBSITE
2
SSL
EXTERNAL LINKS
21
SITE IP
74.125.22.132
LOAD TIME
1.414 sec
SCORE
6.2
oracle apps | prashanthapps.blogspot.com Reviews
https://prashanthapps.blogspot.com
Wednesday, 6 July 2011. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
oracle apps: July 2011
http://www.prashanthapps.blogspot.com/2011_07_01_archive.html
Wednesday, 6 July 2011. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
oracle apps: oracle apps
http://www.prashanthapps.blogspot.com/2011/07/oracle-apps.html
Wednesday, 6 July 2011. Subscribe to: Post Comments (Atom). View my complete profile. Simple template. Powered by Blogger.
TOTAL PAGES IN THIS WEBSITE
2
Oracle Flashback Query: Recovering at the Row Level (Recover deleted rows) | Home
http://oracle-appss.blogspot.com/2011/09/oracle-flashback-query-recovering-at.html
Friday, September 16. Oracle Flashback Query: Recovering at the Row Level (Recover deleted rows). In a data recovery context, it is useful to be able to query the state of a table at a previous time. If, for instance, you discover that at 12:30 PM, an employee. Had been deleted from your. Querying the past state of the table is achieved using the. Statement. For example, the following query retrieves the state of the employee record for '. At 9:30AM, April 4, 2003:. SELECT * FROM EMPLOYEE AS OF TIMESTAMP.
Get all the views that refer a particular table : | Home
http://oracle-appss.blogspot.com/2011/09/get-all-views-that-refer-particular.html
Saturday, September 10. Get all the views that refer a particular table :. SELECT o.object name, o.status, o.last ddl time. FROM SYS.dba objects o. WHERE o.object type = 'VIEW'. FROM SYS.dba dependencies d. WHERE d.referenced type = 'TABLE'. AND dTYPE = 'VIEW'. AND downer = 'APPS'. AND dNAME = o.object name. AND dreferenced name LIKE ' TABLE NAME ');. Posted by Jithendra Kumar B. Subscribe to: Post Comments (Atom). Total no of Hits on my blog (As per date -Sep30 ). Usage of :$FLEX$ in oracle apps. Workin...
List of all active workflow users and their roles | Home
http://oracle-appss.blogspot.com/2011/09/list-of-all-active-workflow-users-and.html
Saturday, September 10. List of all active workflow users and their roles. Select wu.name user name,. From wf users wu,. Wf user roles wur,. Where wu.name = wur.user name. And wur.role name = wr.name. And wu.status = 'ACTIVE'. And wr.status = 'ACTIVE'. And wr.orig system = 'WF LOCAL ROLES'. Order by wu.name,. Posted by Jithendra Kumar B. Subscribe to: Post Comments (Atom). Total no of Hits on my blog (As per date -Sep30 ). Usage of :$FLEX$ in oracle apps. Oracle Apps Shortcut Keys. Working with Trace fil...
Query to find the user, responsibility and concurrent program details of submitted requests | Home
http://oracle-appss.blogspot.com/2011/08/query-to-find-user-responsibility-and.html
Friday, August 26. Query to find the user, responsibility and concurrent program details of submitted requests. Select B.user concurrent program name,C.user name,D.responsibility name, A.*. From apps.fnd concurrent requests A, apps.fnd concurrent programs tl B, Apps.fnd user C, apps.fnd responsibility tl D. And Buser concurrent program name like. Enter the concurrent program name '. And Bconcurrent program id=A.concurrent program id. And Arequested by=C.user id. Order by request date desc. Find Vacation ...
Check Current Applied Patch & Patch level status of all modules | Home
http://oracle-appss.blogspot.com/2011/09/check-current-applied-patch.html
Saturday, September 10. Check Current Applied Patch and Patch level status of all modules. Check Current Applied Patch. SELECT patch name, patch type,. Maint pack level,. FROM applsys.ad applied patches. ORDER BY creation date DESC. Query used to view the patch level status of all modules. SELECT a.application name,. DECODE (b.status, 'I', 'Installed', 'S', 'Shared', 'N/A') status,. FROM apps.fnd application vl a,. Appsfnd product installations b. WHERE a.application id = b.application id;. Script to dis...
XML Template code and template name | Home
http://oracle-appss.blogspot.com/2011/08/xdotemplates.html
Friday, August 26. XML Template code and template name. We can get Lob Code from this query to get the details of RTF files. Query with lob code in the application in case if we don't know the template name. Select * from XDO LOBS. Where file name like '%po terms%'. And XDO File type='RTF'. And trunc(last update date)=trunc(sysdate). Posted by Jithendra Kumar B. Subscribe to: Post Comments (Atom). Making field as mandatory using Forms Personalizat. How to get Login Passwords for application and Data .
sql / plsql | Home
http://oracle-appss.blogspot.com/p/sql-basic.html
This page covers on basic Sql and Plsql queries. Simple sub-queries and with Group functions. General Functions and Types. Conversion Functions in Oracle and Types. Number Functions in Oracle. Date Functions in Oracle. Arthemetic Functions In Oracle. Analytical functions, LISTAGG and XMLAGG. How to submit a concurrent program from pl sql. How to Register a Concurrent Program with a Responsibility. Script to asign Concurrent Program to a Request group. Script to set org context in Oracle apps R12 and 11i.
Get the complete history of concurrent program. | Home
http://oracle-appss.blogspot.com/2011/09/get-complete-history-of-concurrent.html
Saturday, September 10. Get the complete history of concurrent program. SELECT DISTINCT fcpt.user concurrent program name,. Frgrequest group name,. Fcpconcurrent program name,. Uncommment the above to get the list of responsibility's. FaAPPLICATION SHORT NAME,. FROM fnd request group units frgu,. Fnd concurrent programs fcp,. Fnd concurrent programs tl fcpt,. Fnd request groups frg,. Fnd executables fe,. Fnd responsibility fr,. Fnd responsibility tl frt,. Fnd application tl fat,. WHERE 1 = 1. How to Regi...
How to use regexp_substr | Home
http://oracle-appss.blogspot.com/2011/10/how-to-use-regexpsubstr.html
Friday, October 14. How to use regexp substr. Regexp substr cabe used to transpose the column values as rows. In the below example PRODUCT TAB is a table ename and product are columns. Product column has data like that only separated by commas. Output should be like this. If you want the above desired output please use the below solution. SELECT DISTINCT EMP,regexp substr (product, '[ ,] ', 1, level). CONNECT BY LEVEL = LENGTH (REGEXP REPLACE (product, '[ ,] ') 1. ORDER BY 1;. Posted by Jithendra Kumar B.
Script to display status of all the Concurrent Managers | Home
http://oracle-appss.blogspot.com/2011/09/script-to-display-status-of-all.html
Saturday, September 10. Script to display status of all the Concurrent Managers. Select distinct Concurrent Process Id CpId, PID Opid,. Os Process ID Osid,. QConcurrent Queue Name Manager,. Pprocess status code Status,. To Char(P.Process Start Date, 'MM-DD-YYYY HH:MI:SSAM') Started At. From Fnd Concurrent Processes P,. Fnd Concurrent Queues Q,. Where Q.Application Id = Queue Application ID. And QConcurrent Queue ID = P.Concurrent Queue ID. And Spid = Os Process ID. And Process Status Code not in ('K','S').
TOTAL LINKS TO THIS WEBSITE
21
Blog de Prashanth93 - Appu sтylє - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Appu sтylє. Appu sтylє. Mise à jour :. Abonne-toi à mon blog! Pяєsєnтııon. Pяєησм : pяαshαηтh. Suяησм : αppu , pяαsh. Dαтє dє ηαıssαηcє : 19/11/1992. 945;gє : 17 яєvєs. Sıgηє αsтяσłσgııє : scorpiion and liion (en srii). 963;яıgıηє : тαмıł 100% єт fıєяє dє ł'єтяє! Sıтuαтıση : cєlıв'. Vıłłє : dugny. 1084;sη : pяαshαηтh93@hoтмαıl.fr. Sєxє : мαsculıη. 1108;мpłσı : łycєєη. Ou poster avec :. Posté le mercredi 24 décembre 2008 10:04. 1084;on nєvєu. Ou poster avec :.
Prashant Hadkar Consulting
9 Vijay Niwas,. Dr Rath Marg,. Mr Prashant Subhash Hadkar. Prashant Hadkar Structural Consultancy. For more than 10 years, Prashant Hadkar Structural Consultancy has provided engineering services to homeowners, architects, builders, industries, farmer societies, large businesses, multinational companies, government agencies, foreign clients and so on. Our customers speak for our solutions. Most of our business is generated through repeat customers and references from our customers.
பூபாலபிள்ளை பிரசாந்தன்
ப ப லப ள ள ப ரச ந தன. க ழக க ம க ணத த ல இர ந த ஒர தம ழன ன ச ந தன கள. Skip to primary content. Skip to secondary content. ம வ ளங க த த ற க க ன ப த ய வக ப பற க கட டடம . ஆற றல ப ரவ ய ன ம லம 5ம தர ம ணவர கள க க ன ம ன ன ட ந ல யற ப பர ட ச. June 12, 2014. இந த சமயத த ன ம ல ங கச ச ய ய ந ம இந த க கள அம ப ப. October 4, 2013. மட டக களப ப ம வட டத த ல இந த சமயத த ன ம ல ங கச ச ய ய நடவட க க கள ம ற க ள ள ம ம கம க வ ச ட க ழ க கள அம க கப பட ட ள ளன. அறந ற வக ப ப க கள ந ற ப பட த த ம ஆல சன க க ட டம. September 30, 2013. தம ழ வ...
prashanthanphotos.blogspot.com
V.Prashanthan's Photo Blog
Only from my phone cameras. By my sonyericsson k800i. By my sonyericsson k800i. By my sonyericsson k800i. By my sonyericsson k800i. By my sonyericsson k800i. Posted by Vilvaraja Prashanthan. A Cup Of Life . By my sonyericsson k800i. Posted by Vilvaraja Prashanthan. By my sonyericsson k800i. Posted by Vilvaraja Prashanthan. By my sonyericsson k800i. Posted by Vilvaraja Prashanthan. By my sonyericsson k800i. Posted by Vilvaraja Prashanthan. By my sonyericsson k800i. Posted by Vilvaraja Prashanthan.
oracle apps
Wednesday, 6 July 2011. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.
Prashanth Ashok
Welcome to AP's (s)crap. Sunday, August 24, 2014. The CBC TABLOG 2 : One aspect of Chennai that I would like to change. This post has been published as a part of ‘The CBC Tablog – 2. Where a group of bloggers from CBC Chennai Bloggers Club) have come together to write on the topic – “One aspect of Chennai that I would like to change”. This post is doubly special to me because it has also formed as sort of a comeback to my blog which has been in hiatus for a while now. So, we basically have to come to the...
prashanth-bhogaraju
prashanthblogspot.wordpress.com
prashanthblogspot
July 6, 2015. This is your very first post. Click the Edit link to modify or delete it, or start a new post. If you like, use this post to tell readers why you started this blog and what you plan to do with it. Happy blogging! Create a free website or blog at WordPress.com.