<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>erpSchools</title>
	<atom:link href="http://erpschools.com/feed" rel="self" type="application/rss+xml" />
	<link>http://erpschools.com</link>
	<description>Oracle Applications</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:59:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Dependent Parameters in Concurrent Program using Special Value Set</title>
		<link>http://erpschools.com/articles/dependent-parameters-in-concurrent-program-2?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dependent-parameters-in-concurrent-program-2</link>
		<comments>http://erpschools.com/articles/dependent-parameters-in-concurrent-program-2#comments</comments>
		<pubDate>Mon, 03 Oct 2011 13:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Sysadmin and AOL]]></category>

		<guid isPermaLink="false">http://erpschools.com/articles/dependent-parameters-in-concurrent-program-2</guid>
		<description><![CDATA[Dependent Parameters in Oracle Applications Requirement: Say there is a concurrent program that lets you retrieve employee details based on employee name or employee number. The concurrent program has 3 parameters: 1.Search Criteria is a value set containing &#8220;Employee Name&#8221; and &#8220;Employee Number&#8221; as values 2.Employee Name 3.Employee Number When the user wants to search <a href='http://erpschools.com/articles/dependent-parameters-in-concurrent-program-2'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/articles/dependent-parameters-in-concurrent-program-2/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Launch Workflow from PL/SQL</title>
		<link>http://erpschools.com/scripts/launch-workflow-from-plsql?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=launch-workflow-from-plsql</link>
		<comments>http://erpschools.com/scripts/launch-workflow-from-plsql#comments</comments>
		<pubDate>Mon, 03 Oct 2011 03:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://erpschools.com/?p=2518</guid>
		<description><![CDATA[The below script will lanch or kickoff the desired workflow from PL/SQL code: declare v_itemtype VARCHAR2&#40;50&#41;; v_itemkey VARCHAR2&#40;50&#41;; v_process VARCHAR2&#40;50&#41;; v_userkey VARCHAR2&#40;50&#41;; begin &#160; v_itemtype := 'DEMOIT'; v_itemkey := '1233'; v_userkey := '1233'; v_process := 'DEMOPROCESS'; WF_ENGINE.Threshold := -1; WF_ENGINE.CREATEPROCESS&#40;v_itemtype, v_itemkey, v_process&#41;; wf_engine.setitemuserkey&#40;v_itemtype, v_itemkey, v_userkey &#41;; wf_engine.setitemowner &#40;v_itemtype, v_itemkey,'SYSADMIN'&#41;; WF_ENGINE.STARTPROCESS&#40;v_itemtype, v_itemkey&#41;; commit; exception when others <a href='http://erpschools.com/scripts/launch-workflow-from-plsql'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/launch-workflow-from-plsql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OAF Personlization related Script</title>
		<link>http://erpschools.com/scripts/oaf-personlization-script?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=oaf-personlization-script</link>
		<comments>http://erpschools.com/scripts/oaf-personlization-script#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:49:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://erpschools.com/?p=2509</guid>
		<description><![CDATA[The below script will list all the OAF Personlizations in Oracle Applications: SELECT PATH.PATH_DOCID PERZ_DOC_ID, jdr_mds_internal.getdocumentname&#40;PATH.PATH_DOCID&#41; PERZ_DOC_PATH FROM JDR_PATHS PATH WHERE PATH.PATH_DOCID IN &#40;SELECT DISTINCT COMP_DOCID FROM JDR_COMPONENTS WHERE COMP_SEQ = 0 AND COMP_ELEMENT = 'customization' AND COMP_ID IS NULL&#41; ORDER BY PERZ_DOC_PATH;]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/oaf-personlization-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forms Personalization related Script</title>
		<link>http://erpschools.com/scripts/forms-personalization-script?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=forms-personalization-script</link>
		<comments>http://erpschools.com/scripts/forms-personalization-script#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:45:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://erpschools.com/?p=2501</guid>
		<description><![CDATA[The below script list all the forms in Oracle Applications that have been customized using Forms Personlization: select distinct a.form_name , a.enabled, c.USER_FORM_NAME, d.APPLICATION_NAME from FND_FORM_CUSTOM_RULES a, FND_FORM b, FND_FORM_TL c, fnd_application_tl d where enabled = 'Y' and a.form_name = b.form_name and b.form_id = c.form_id and b.application_id = d.application_id order by application_name]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/forms-personalization-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concurrent Requests and Programs Related Scripts</title>
		<link>http://erpschools.com/scripts/concurrent-requests-and-programs-related-scripts?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=concurrent-requests-and-programs-related-scripts</link>
		<comments>http://erpschools.com/scripts/concurrent-requests-and-programs-related-scripts#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:15:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1869</guid>
		<description><![CDATA[This page will include the scripts 1. Find the responsibility name from which a concurrent program can be run 2. Find the responsibility name from which user has ran the concurrent program Find the Responsibility name from which a concurrent program can be run select distinct &#160; a.application_id, &#160; a.concurrent_program_id, &#160; a.user_concurrent_program_name, &#160; a.description, &#160; <a href='http://erpschools.com/scripts/concurrent-requests-and-programs-related-scripts'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/concurrent-requests-and-programs-related-scripts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menu and Functions Related Scripts</title>
		<link>http://erpschools.com/scripts/menu-and-functions-related-scripts?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=menu-and-functions-related-scripts</link>
		<comments>http://erpschools.com/scripts/menu-and-functions-related-scripts#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:13:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1867</guid>
		<description><![CDATA[This script will accept the menu name as parameter and will list all functions that can be accessed under that menu. SELECT DISTINCT &#160; fmep.menu_id, &#160; DECODE&#40;fmep.function_id,NULL, DECODE&#40;fmec.function_id, NULL,DECODE&#40;fmec1.function_id,NULL, &#160; 'No Func',fmec1.function_id &#41;, &#160; fmec.function_id&#41;, &#160; fmep.function_id&#41; funcID, &#160; fff.user_function_name, &#160; fff.description &#160; FROM fnd_form_functions_tl fff, &#160; fnd_menu_entries fmec1, &#160; fnd_menu_entries fmec, &#160; fnd_menu_entries fmep <a href='http://erpschools.com/scripts/menu-and-functions-related-scripts'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/menu-and-functions-related-scripts/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Send e mail through PL SQL code</title>
		<link>http://erpschools.com/scripts/send-e-mail-through-pl-sql-code?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=send-e-mail-through-pl-sql-code</link>
		<comments>http://erpschools.com/scripts/send-e-mail-through-pl-sql-code#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:12:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1865</guid>
		<description><![CDATA[1. UTL_SMTP CREATE OR REPLACE PROCEDURE erpschools_send_email &#160; IS &#160; mailhost varchar2 &#40;30&#41; := 'smtp.erpschools.com'; &#160; crlf varchar2&#40;2&#41;Â := CHR &#40;13&#41; &#124;&#124; CHR &#40;10&#41;; &#160; v_email varchar2&#40;16000&#41;; &#160; message_1 LONG; &#160; mail_conn utl_smtp.connection; &#160; BEGIN &#160; mail_conn := utl_smtp.open_connection &#40;mailhost, 25&#41;; &#160; utl_smtp.helo &#40;mail_conn, mailhost&#41;; &#160; utl_smtp.mail &#40;mail_conn, 'sender@erpschools.com'&#41;; &#160; utl_smtp.rcpt &#40;mail_conn, 'receiver@erpschools.com'&#41;; &#160; message_1 <a href='http://erpschools.com/scripts/send-e-mail-through-pl-sql-code'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/send-e-mail-through-pl-sql-code/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UTL_FILE example</title>
		<link>http://erpschools.com/scripts/utl_file-example?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=utl_file-example</link>
		<comments>http://erpschools.com/scripts/utl_file-example#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1863</guid>
		<description><![CDATA[This script can be used to read data from a flat file and insert into a table. UTL_FILE Read CREATE OR REPLACE PROCEDURE load_data&#40;errbuff varchar2,errcode number&#41; &#160; AS &#160; v_line VARCHAR2&#40;2000&#41;; -- Data line read from input file &#160; v_file UTL_FILE.FILE_TYPE; -- Data file handle &#160; v_dir VARCHAR2&#40;250&#41;; -- Directory containing the data file &#160; <a href='http://erpschools.com/scripts/utl_file-example'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/utl_file-example/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Get On Hand Quantities through API</title>
		<link>http://erpschools.com/scripts/get-on-hand-quantities-through-api?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-on-hand-quantities-through-api</link>
		<comments>http://erpschools.com/scripts/get-on-hand-quantities-through-api#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:08:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1861</guid>
		<description><![CDATA[This script can be used to get the below quantities. 1. On-hand Quantity 2. Available to Reserve 3. Quantity Reserved 4. Quantity Suggested 5. Available to Transact 6. Available to Reserve You can also get the On-hand quantities from the table mtl_onhand_quantities GET ON-HAND QUANTITIES API DECLARE &#160; x_return_status VARCHAR2 &#40;50&#41;; &#160; x_msg_count VARCHAR2 &#40;50&#41;; <a href='http://erpschools.com/scripts/get-on-hand-quantities-through-api'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/get-on-hand-quantities-through-api/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ship Confirm through API</title>
		<link>http://erpschools.com/scripts/ship-confirm-through-api?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ship-confirm-through-api</link>
		<comments>http://erpschools.com/scripts/ship-confirm-through-api#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:06:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1859</guid>
		<description><![CDATA[Use this script to create a procedure in Database and call the procedure by passing the delivery number as a parameter to ship confirm it. You can set the options for 1. Backordering unspecified quantities 2. Closing the delivery automatically by submitting the Trip stop program after ship confirm is successfull SHIP CONFIRMATION THROUGH API <a href='http://erpschools.com/scripts/ship-confirm-through-api'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/ship-confirm-through-api/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concurrent Program Registration Scripts</title>
		<link>http://erpschools.com/scripts/concurrent-program-registration-scripts?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=concurrent-program-registration-scripts</link>
		<comments>http://erpschools.com/scripts/concurrent-program-registration-scripts#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:03:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1856</guid>
		<description><![CDATA[The scripts in this article can be used to: 1) Register the executable and Program 2) Attach Concurrent program to a Request Group 3) Submit Concurrent program 1) Registering the Executable from back end Usually we create executable in the front-end, but this can be done from the database tier i.e. back-end too. Below is <a href='http://erpschools.com/scripts/concurrent-program-registration-scripts'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/concurrent-program-registration-scripts/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Procure to Pay Cycle Query</title>
		<link>http://erpschools.com/scripts/procure-to-pay-cycle-query?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=procure-to-pay-cycle-query</link>
		<comments>http://erpschools.com/scripts/procure-to-pay-cycle-query#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:56:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1854</guid>
		<description><![CDATA[Includes two scripts to fetch all the transactions information related with in a procure to pay cycle. Two scripts are provided to use one with receipts and other when receipts are not created. Few important fields that were included in the script are Requisition Number, Purchase Order Number, Invoice Number, Customer Number, Invoice Amount, GL <a href='http://erpschools.com/scripts/procure-to-pay-cycle-query'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/procure-to-pay-cycle-query/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Workflow Tables and Queries</title>
		<link>http://erpschools.com/scripts/workflow-tables-and-queries?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=workflow-tables-and-queries</link>
		<comments>http://erpschools.com/scripts/workflow-tables-and-queries#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:53:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1850</guid>
		<description><![CDATA[This articles contains all the table information related to Oracle Workflows and queries joining these tables. WORKFLOW TABLES SELECT * FROM WF_USER_ROLE_ASSIGNMENTS SELECT * FROM WF_USER_ROLES SELECT * FROM WF_ROLES SELECT * FROM WF_ITEMS SELECT * FROM WF_ITEM_ATTRIBUTES SELECT * FROM WF_ITEM_ATTRIBUTE_VALUES SELECT * FROM WF_ITEM_ATTRIBUTES_TL SELECT * FROM WF_ACTIVITIES SELECT * FROM WF_ACTIVITIES_TL SELECT <a href='http://erpschools.com/scripts/workflow-tables-and-queries'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/workflow-tables-and-queries/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Revenue Adjustment Script</title>
		<link>http://erpschools.com/scripts/revenue-adjustment-script?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=revenue-adjustment-script</link>
		<comments>http://erpschools.com/scripts/revenue-adjustment-script#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:44:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1848</guid>
		<description><![CDATA[This script can be used to adjust the Revenue for a particular transaction. The amount can be adjusted from one transaction line to another line by specifying the actual amount to adjust or percentage. Run this procedure in loop to adjust many transactions. CREATE OR REPLACE PROCEDURE adjustment_api &#160; IS &#160; p_revenue_adj_rec ar_revenue_adjustment_pvt.rev_adj_rec_type; &#160; x_return_status <a href='http://erpschools.com/scripts/revenue-adjustment-script'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/revenue-adjustment-script/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Older revision numbers to an item</title>
		<link>http://erpschools.com/scripts/add-older-revision-numbers-to-an-item?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-older-revision-numbers-to-an-item</link>
		<comments>http://erpschools.com/scripts/add-older-revision-numbers-to-an-item#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:42:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1846</guid>
		<description><![CDATA[The below script can be used to add Older revision numbers to an item. Why we need to use this script: In Oracle standard functionality revisions need to be added in sequence like A, B, C….. It doesn’t allow us to add B after adding A and C. In that case this script can be <a href='http://erpschools.com/scripts/add-older-revision-numbers-to-an-item'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/add-older-revision-numbers-to-an-item/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Order Header Details Script</title>
		<link>http://erpschools.com/scripts/order-header-details-script?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=order-header-details-script</link>
		<comments>http://erpschools.com/scripts/order-header-details-script#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:41:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1844</guid>
		<description><![CDATA[This script can be used to extract order header details from backend. SELECT ra.customer_number, hl.address1, hl.address2, hl.city, hl.state, hl.postal_code, hl.country, hl.province, hl.county FROM oe_order_headers_all ooh, hz_cust_site_uses_all hcsu, hz_cust_acct_sites_all hcas, hz_party_sites hps, hz_locations hl, ra_customers ra WHERE 1 = 1 AND ooh.invoice_to_org_id = hcsu.site_use_id AND hcsu.cust_acct_site_id = hcas.cust_acct_site_id AND hcas.party_site_id = hps.party_site_id AND hps.location_id = hl.location_id <a href='http://erpschools.com/scripts/order-header-details-script'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/order-header-details-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripts to get the statistics based on order type</title>
		<link>http://erpschools.com/scripts/scripts-to-get-the-statistics-based-on-order-type?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=scripts-to-get-the-statistics-based-on-order-type</link>
		<comments>http://erpschools.com/scripts/scripts-to-get-the-statistics-based-on-order-type#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:40:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1841</guid>
		<description><![CDATA[Scripts to get the statistics based on order type: &#8211; Number of orders taken in each order type per month select b.name,b.description,to_char&#40;ordered_date,'Mon'&#41; Month, count&#40;0&#41; NoOfOrders from oe_order_headers_all a, oe_transaction_types_tl b where 1=1 and a.order_type_id = b.transaction_type_id and ordered_Date between '01-SEP-2009' and '01-OCT-2009' and org_id = 1 group by b.name, b.description,to_char&#40;ordered_date,'Mon'&#41; order by to_char&#40;ordered_date,'Mon'&#41; &#8211;Number of <a href='http://erpschools.com/scripts/scripts-to-get-the-statistics-based-on-order-type'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/scripts-to-get-the-statistics-based-on-order-type/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Script to get responsibilities for a user</title>
		<link>http://erpschools.com/scripts/script-to-get-responsibilities-for-a-user?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=script-to-get-responsibilities-for-a-user</link>
		<comments>http://erpschools.com/scripts/script-to-get-responsibilities-for-a-user#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:34:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1838</guid>
		<description><![CDATA[This script will display all the responsibilities for a given Username. SELECT fu.user_name, frt.responsibility_name, furgd.start_date, &#160; furgd.end_date &#160; FROM fnd_user fu, &#160; fnd_user_resp_groups_direct furgd, &#160; fnd_responsibility_tl frt &#160; WHERE fu.user_id = furgd.user_id &#160; AND furgd.responsibility_id = frt.responsibility_id &#160; AND UPPER &#40;fu.user_name&#41; = UPPER &#40;'ERPSCHOOLS'&#41;]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/script-to-get-responsibilities-for-a-user/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Approvers for a Purchase Order in Position Hierarchy</title>
		<link>http://erpschools.com/scripts/list-of-approvers-for-a-purchase-order-in-position-hierarchy?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=list-of-approvers-for-a-purchase-order-in-position-hierarchy</link>
		<comments>http://erpschools.com/scripts/list-of-approvers-for-a-purchase-order-in-position-hierarchy#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:31:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1832</guid>
		<description><![CDATA[This script gets all the approvers and their details like approver name, position, approval group, amount limit, approval hierarchy path for a given position hierarchy. Inputs for this script are:business_group_id for the desired POSITION HIERARCHY pos_structure_version_id for the desired POSITION HIERARCHY Top position in the desired POSITION HIERARCHY SCRIPT TO GET POSITION_STRUCTURE_ID AND BUSINESS_GROUP_ID FOR <a href='http://erpschools.com/scripts/list-of-approvers-for-a-purchase-order-in-position-hierarchy'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/list-of-approvers-for-a-purchase-order-in-position-hierarchy/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Script to End Date Responsibility for a User</title>
		<link>http://erpschools.com/scripts/script-to-end-date-responsibility-for-a-user?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=script-to-end-date-responsibility-for-a-user</link>
		<comments>http://erpschools.com/scripts/script-to-end-date-responsibility-for-a-user#comments</comments>
		<pubDate>Sun, 17 Apr 2011 14:18:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://sendyoursmiles.com/?p=1827</guid>
		<description><![CDATA[This script below will get the list of all inactive users and end date all the responsibilities assigned to them. Declare &#160; --cursor to get all inactive users &#160; CURSOR cur_inactive_user &#160; IS &#160; select &#160; fu.user_id, &#160; fd.responsibility_id, &#160; fd.responsibility_application_id, &#160; fd.security_group_id, &#160; fd.start_date, &#160; fd.end_date &#160; from &#160; fnd_user fu, &#160; fnd_user_resp_groups_direct fd <a href='http://erpschools.com/scripts/script-to-end-date-responsibility-for-a-user'>Read More..</a>]]></description>
		<wfw:commentRss>http://erpschools.com/scripts/script-to-end-date-responsibility-for-a-user/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

