<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-37123892</id><updated>2011-11-19T10:29:31.080-08:00</updated><title type='text'>Technology at its Best</title><subtitle type='html'>Oracle Applications R11i related information</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-37123892.post-6031067333963268999</id><published>2007-02-03T21:02:00.000-08:00</published><updated>2007-02-03T21:04:52.451-08:00</updated><title type='text'>Implementing Zoom</title><summary type='text'>In the custom.pll, modify the below given function and procedure:function zoom_available return boolean is     form_name  varchar2(30) := name_in('system.current_form');     block_name varchar2(30) := name_in('system.cursor_block');begin     if (form_name = 'POXPOEPO' and block_name = 'PO_LINES')       return TRUE;     else       return FALSE;    end if;end zoom_available;procedure event(</summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/6031067333963268999/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=6031067333963268999' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/6031067333963268999'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/6031067333963268999'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2007/02/implementing-zoom.html' title='Implementing Zoom'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-14387233684163350</id><published>2007-01-25T00:01:00.000-08:00</published><updated>2007-02-03T21:13:24.930-08:00</updated><title type='text'>Hierarchical Query Example</title><summary type='text'>Hierarchical query:This query lists the employee_details with their manager in hierarchical manner from employees table.SELECT  a.employee_id, a.first_name, a.last_name, a.manager_id,                b.first_name mgr_first_name, b.last_name mgr_last_nameFROM                (                   select employee_id, first_name, last_name, manager_id                   from employees                   </summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/14387233684163350/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=14387233684163350' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/14387233684163350'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/14387233684163350'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2007/01/hierarchial-query-example.html' title='Hierarchical Query Example'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-906298950045286253</id><published>2007-01-18T00:20:00.000-08:00</published><updated>2007-01-18T00:27:26.469-08:00</updated><title type='text'>Top-n and nth Least query</title><summary type='text'>Top-n query: Query to find the nth highest salary and theassociated employees from employees tableselect a.last_name,a.salaryfrom employees awhere n = (select count(distinct(b.salary))           from employees b           where a.salary &lt;= b.salary)          nth least query: Query to find the nth least or say 2nd least salary andthe associated employees from employees tableselect a.last_name,</summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/906298950045286253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=906298950045286253' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/906298950045286253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/906298950045286253'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2007/01/top-n-and-nth-least-query.html' title='Top-n and nth Least query'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-116463293799265559</id><published>2006-11-27T05:06:00.000-08:00</published><updated>2006-11-27T05:08:58.010-08:00</updated><title type='text'>Reports Using XML Publisher</title><summary type='text'>      XML Publisher Concurrent Program - XMLP                                                                           Written by Anil Passi            -- One of the Author I like. He writes very well.                            Friday, 24 November 2006                       In this article I have listed a step by step demo of XML Publisher as a Concurrent Program in Oracle Apps.  I think it is </summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/116463293799265559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=116463293799265559' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116463293799265559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116463293799265559'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2006/11/reports-using-xml-publisher.html' title='Reports Using XML Publisher'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-116350449162003364</id><published>2006-11-14T03:34:00.000-08:00</published><updated>2007-02-19T22:20:20.309-08:00</updated><title type='text'>Image File Attachment in Oracle 11i.</title><summary type='text'>Technical Details of Image File Attachment in Oracle Applications 11i.Attaching an image file in Oracle Apps say, you attach an image of an Item.For this you will click on the attachments icon(Paperclip Icon) of the toolbar in Apps Window and this will take you to Attachment Window.Here You can specify Category, Description,Datatype.If you select "File" as datatype, you will be taken to a webpage</summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/116350449162003364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=116350449162003364' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116350449162003364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116350449162003364'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2006/11/image-file-attachment-in-oracle-11i.html' title='Image File Attachment in Oracle 11i.'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-116293009366153836</id><published>2006-11-07T12:07:00.000-08:00</published><updated>2006-11-07T12:08:13.663-08:00</updated><title type='text'>Returning a Table from a PL/SQL function</title><summary type='text'>1. Create an object type for the recordcreate or replace type emp_rec_t as object( employee_id number, first_name varchar2(25), salary number, manager_id number, department_id number);2. create a SQL table type objectcreate or replace type emp_tab as table of emp_rec_t;3. Define a function in the following way.create or replacefunction demo_proc( p_start_row in number,                    </summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/116293009366153836/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=116293009366153836' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116293009366153836'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116293009366153836'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2006/11/returning-table-from-plsql-function.html' title='Returning a Table from a PL/SQL function'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-116267436953209301</id><published>2006-11-04T13:05:00.000-08:00</published><updated>2006-11-04T13:06:09.540-08:00</updated><title type='text'>Lock a folder without any software</title><summary type='text'>Hey Buddies..Here is a trick to lock the folders without using any software:  • Lock a folder without any software  Suppose you want to lock the folder games in d: which has the path D:\Games.Follow the below steps:  1. In the same drive create a text file and type    ren games games.{21EC2020-3AEA-1069-A2DD-08002B30309D}    Now save this text file as loc.bat  2. create another text file and type</summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/116267436953209301/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=116267436953209301' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116267436953209301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116267436953209301'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2006/11/lock-folder-without-any-software.html' title='Lock a folder without any software'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37123892.post-116264759270814616</id><published>2006-11-04T05:35:00.000-08:00</published><updated>2006-11-04T05:39:52.716-08:00</updated><title type='text'>External Table feature of Oracle 10g on Windows</title><summary type='text'>Using External Table feature of Oracle 10g on Windows:  External Tables are used for dataloading to oracle 10g Database.  1. Create a Directory C:\wkdir  2. connect to sqlplus as system or sysdba  3. Execute the below statement   create or replace directory ext_tab_dir as 'c:\wkdir';   grant read,write on directory ext_tab_dir to scott;     Here scott is the schema from where you will be creating</summary><link rel='replies' type='application/atom+xml' href='http://oraapps11i.blogspot.com/feeds/116264759270814616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37123892&amp;postID=116264759270814616' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116264759270814616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37123892/posts/default/116264759270814616'/><link rel='alternate' type='text/html' href='http://oraapps11i.blogspot.com/2006/11/external-table-feature-of-oracle-10g.html' title='External Table feature of Oracle 10g on Windows'/><author><name>Khwaja Hassan</name><uri>http://www.blogger.com/profile/06127261278670050393</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='24' src='http://img246.imageshack.us/img246/9172/khwaja10aj9.jpg'/></author><thr:total>0</thr:total></entry></feed>
