<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Oracle Applications</title>
	<atom:link href="http://oracledocs.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://oracledocs.wordpress.com</link>
	<description>Oracle for Beginners</description>
	<lastBuildDate>Mon, 19 Oct 2009 12:38:05 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='oracledocs.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ea28ed5cbfc082abef60b7a171cba274?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Oracle Applications</title>
		<link>http://oracledocs.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://oracledocs.wordpress.com/osd.xml" title="Oracle Applications" />
		<item>
		<title>Function to return COA Account Combination.</title>
		<link>http://oracledocs.wordpress.com/2009/10/19/function-to-return-coa-account-combination/</link>
		<comments>http://oracledocs.wordpress.com/2009/10/19/function-to-return-coa-account-combination/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 12:36:58 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[Finance]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Account Combination]]></category>
		<category><![CDATA[Chart of Accounts]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[General Ledger]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=294</guid>
		<description><![CDATA[Function to return concatenated account from id.
&#60;/pre&#62;
CREATE OR REPLACE FUNCTION APPS.GET_CONCAT_ACC (ACC_ID VARCHAR2)
RETURN VARCHAR2 IS
&#60;p style=&#34;padding-left:30px;&#34;&#62;AC VARCHAR2(100);&#60;/p&#62;
BEGIN
/*** Returns Concatenated Accounts ***/

&#60;p style=&#34;padding-left:30px;&#34;&#62;SELECT ACCOUNT_COMB
INTO AC
FROM ABH_GL_ACC_CONCAT_SEGMENTS
WHERE CODE_COMBINATION_ID = ACC_ID;
RETURN NVL(AC, 'ERROR');&#60;/p&#62;
END;
/
&#60;pre&#62;
This function is based on the View for Chart of Accounts KFF.
Shameem Bauccha 
19 October 2009
Posted in Finance, Financials, Oracle Apps, Scripts, Technical Tagged: Account Combination, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=294&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/10/19/function-to-return-coa-account-combination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>
	</item>
		<item>
		<title>View for Chart of Accounts KFF</title>
		<link>http://oracledocs.wordpress.com/2009/10/19/view-for-chart-of-accounts-kff/</link>
		<comments>http://oracledocs.wordpress.com/2009/10/19/view-for-chart-of-accounts-kff/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 10:13:49 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[System Administrator]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Chart of Accounts]]></category>
		<category><![CDATA[KFF]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=292</guid>
		<description><![CDATA[The script below allows you creates a view for your chart of accounts.
Modify to suit your requirements. Note that the value set name of each segment is passed as parameter.


CREATE OR REPLACE VIEW ABH_GL_ACC_CONCAT_SEGMENTS
AS
SELECT cc.code_combination_id,
 cc.chart_of_accounts_id,
 cc.detail_posting_allowed_flag post,
 cc.detail_budgeting_allowed_flag budget,
 cc.account_type,
 cc.show_account_type,
 cc.enabled_flag,
 cc.summary_flag,
 --segment: segments used in COA definition
 cc.segment1,
 cc.segment2,
 cc.segment3,
 cc.segment4,
 cc.segment5,
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=292&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/10/19/view-for-chart-of-accounts-kff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>
	</item>
		<item>
		<title>Fetching Flexfield Description</title>
		<link>http://oracledocs.wordpress.com/2009/10/19/fetching-flexfield-description/</link>
		<comments>http://oracledocs.wordpress.com/2009/10/19/fetching-flexfield-description/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 06:20:40 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[System Administrator]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[11.5]]></category>
		<category><![CDATA[Key Flexfield Value Set]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=287</guid>
		<description><![CDATA[
CREATE OR REPLACE FUNCTION APPS.GET_FLEX_VS_DESC (P_VALUE_SET_NAME VARCHAR2, P_FLEX_VALUE VARCHAR2, P_PARENT_FLEX_VALUE VARCHAR2)
RETURN VARCHAR2 IS
DESCRIP VARCHAR2(50);
BEGIN
IF P_PARENT_FLEX_VALUE IS NULL
THEN
/*** In case the value set is independent ***/
SELECT DISTINCT DESCRIPTION
INTO DESCRIP
FROM FND_FLEX_VALUES_VL
WHERE FLEX_VALUE_SET_ID =
(
SELECT FLEX_VALUE_SET_ID
FROM FND_FLEX_VALUE_SETS
WHERE FLEX_VALUE_SET_NAME = P_VALUE_SET_NAME
AND FLEX_VALUE = P_FLEX_VALUE
--AND PARENT_FLEX_VALUE_LOW = P_PARENT_FLEX_VALUE
);
ELSE
/*** If the value set is dependent on another value set ***/
SELECT DISTINCT DESCRIPTION
INTO [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=287&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/10/19/fetching-flexfield-description/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>
	</item>
		<item>
		<title>Tax Configuration: Create Tax</title>
		<link>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-create-tax/</link>
		<comments>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-create-tax/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 19:25:13 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[E-Business Tax]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Create Tax]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[setup E-Business Tax]]></category>
		<category><![CDATA[Tax Configuration]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=285</guid>
		<description><![CDATA[Platform: R12
Tax Manager &#8211;&#62; Tax Configuration &#8211;&#62; Taxes
A tax is defined under a tax regime. You need to define a tax regime before you define your tax.
Refer to document ‘Create Tax Regimes’.
Create Tax
 
 
Click on ‘Create’.
Main Information
Configure the Tax.
Select the previously defie tax regime code. For your tax to work, define it for party [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=285&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-create-tax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>
	</item>
		<item>
		<title>Tax Configuration: Complete First Party Legal Entity Party Tax Profile</title>
		<link>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-complete-first-party-legal-entity-party-tax-profile/</link>
		<comments>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-complete-first-party-legal-entity-party-tax-profile/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 09:13:33 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[E-Business Tax]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Complete First Party Legal Entity Party Tax Profile]]></category>
		<category><![CDATA[Configuration Options]]></category>
		<category><![CDATA[Party Tax Profile classifications]]></category>
		<category><![CDATA[Party Tax Profiles]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[setup EBusiness Tax]]></category>
		<category><![CDATA[Tax Configuration]]></category>
		<category><![CDATA[Tax Reporting Codes]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=277</guid>
		<description><![CDATA[Platform: R12
Tax Manager &#8211;&#62; Parties &#8211;&#62; Party Tax Profiles
On the Tax Manager Homepage, click on the ‘Go to Task’ icon.
Ensure Party Types is ‘First Party Legal Entity’. Type in the Party Name and click on ‘Go’.
Click on ‘Update Tax Profile’.
Configure the four sections as appropriate:
-          Main:
-          Classifications
-          Tax Reporting Codes
-          Configuration Options
You can see that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=277&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-complete-first-party-legal-entity-party-tax-profile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/SearchFirstPartyLegalEntityTaxProfi.jpg" medium="image">
			<media:title type="html">Search First Party Legal Entity - Tax Profile</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfiles.jpg" medium="image">
			<media:title type="html">Party Tax Profiles</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/UpdatePartyTaxProfile-Main.jpg" medium="image">
			<media:title type="html">Update Party Tax Profile</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfile-Main.jpg" medium="image">
			<media:title type="html">Party Tax Profile - Main</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfile-Classifications.jpg" medium="image">
			<media:title type="html">Party Tax Profile - Classifications</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfile-TaxReportingCodes.jpg" medium="image">
			<media:title type="html">Party Tax Profile - Tax Reporting Codes</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfile-ConfigurationOption.jpg" medium="image">
			<media:title type="html">Party Tax Profile - Configuration Option</media:title>
		</media:content>
	</item>
		<item>
		<title>Tax Configuration: Create Tax Regimes</title>
		<link>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-create-tax-regimes/</link>
		<comments>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-create-tax-regimes/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 07:03:25 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[E-Business Tax]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Cnfiguration for Taxes andRules]]></category>
		<category><![CDATA[eBTax]]></category>
		<category><![CDATA[Inclusive Tax Lines]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Service Subscriptions]]></category>
		<category><![CDATA[setup E-Business Tax]]></category>
		<category><![CDATA[Tax Configuration]]></category>
		<category><![CDATA[Tax Exceptions]]></category>
		<category><![CDATA[Tax Recovery]]></category>
		<category><![CDATA[Tax Regimes]]></category>
		<category><![CDATA[Teax Exemptions]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=273</guid>
		<description><![CDATA[Platform: R12
Create Tax Regimes
Tax Manager &#8211;&#62; Tax Configuration &#8211;&#62; Tax Regimes
Click on ‘Create’.
Expand the ‘Controls and Defaults’ Region and Configure.
Note that unless you have set the Legal Authority as Reporting Tax Authority or Collecting Tax Authority while creating the Party Tax Profile for the Legal Authority, the Legal Authority will not be available in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=273&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/10/03/tax-configuration-create-tax-regimes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/TaxRegimes.jpg" medium="image">
			<media:title type="html">Tax Regimes</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/CreateTaxRegime-MainDetails.jpg" medium="image">
			<media:title type="html">Tax Regime - Main Details</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/TaxRegimeControlsandDefaults.jpg" medium="image">
			<media:title type="html">Tax Regime Controls and Defaults</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/TaxRegimeCompoundingLevelControls.jpg" medium="image">
			<media:title type="html">Tax Regime Compounding Level Controls</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/CreateTaxRegime-ConfigurationOption.jpg" medium="image">
			<media:title type="html">Create Tax Regime - Configuration Option</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/ServiceSubscriptions.jpg" medium="image">
			<media:title type="html">Service Subscriptions</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/TaxRegimeConfirmation.jpg" medium="image">
			<media:title type="html">Tax Regime Creation Confirmation</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/SearchTaxRegime.jpg" medium="image">
			<media:title type="html">Search Tax Regime</media:title>
		</media:content>
	</item>
		<item>
		<title>Query to determine approval path for PO documents</title>
		<link>http://oracledocs.wordpress.com/2009/08/02/query-to-determine-approval-path-for-po-documents/</link>
		<comments>http://oracledocs.wordpress.com/2009/08/02/query-to-determine-approval-path-for-po-documents/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 17:45:05 +0000</pubDate>
		<dc:creator>Ajmal Budulla</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[approval]]></category>
		<category><![CDATA[approval path]]></category>
		<category><![CDATA[purchasing approval]]></category>
		<category><![CDATA[purchasing approval hierarchy]]></category>
		<category><![CDATA[query for approval path]]></category>
		<category><![CDATA[query requisition approval]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=236</guid>
		<description><![CDATA[Platform: Oracle R 11.5.10
This query can be used to determine which approval path a Requisition or a Purchase Order has taken:
&#8211; For Requisition
select pos.name
from po_requisition_headers_all rh, wf_item_attribute_values av, per_position_structures pos
where av.item_type = rh.wf_item_type
and av.item_key = rh.wf_item_key
and av.name = &#8216;APPROVAL_PATH_ID&#8217;
and to_number(av.NUMBER_VALUE) = pos.position_structure_id
and rh.segment1 = &#8216;&#38;1&#8242; ;
&#8211;and rh.org_id = 172;   &#8212; You can use your org_id [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=236&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/08/02/query-to-determine-approval-path-for-po-documents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3491b1fef162747b6dacb55825d6874a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajmalbudulla</media:title>
		</media:content>
	</item>
		<item>
		<title>Tax Configuration: Create Tax Authority Party Tax Profiles</title>
		<link>http://oracledocs.wordpress.com/2009/07/20/tax-configuration-create-tax-authority-party-tax-profiles/</link>
		<comments>http://oracledocs.wordpress.com/2009/07/20/tax-configuration-create-tax-authority-party-tax-profiles/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:31:10 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[E-Business Tax]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[Party Tax Profile]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[setup E-Business Tax]]></category>
		<category><![CDATA[Tax Authority]]></category>
		<category><![CDATA[Tax Configuration]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=232</guid>
		<description><![CDATA[ 
Platform: R12
Create Tax Authorities Party Tax Profile
Tax Manager &#8211;&#62; Tax Configuration &#8211;&#62; Tax Authorities Party Tax Profiles


 
 
Select the Party Type ‘Tax Authority’. Search for the Party Name (the Legal Authority you created). Click on ‘Go’.
Note that unless your attach the Legislative Category ‘Transaction Tax’ to the Legal Authority you will not get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=232&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/07/20/tax-configuration-create-tax-authority-party-tax-profiles/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfiles.jpg" medium="image">
			<media:title type="html">Party Tax Profiles</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/CreatePartyTaxProfile.jpg" medium="image">
			<media:title type="html">Create Party Tax Profile</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/CreatePartyTaxProfile-TaxReportingC.jpg" medium="image">
			<media:title type="html">Create  Party Tax Profile - Tax Reporting Codes</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/PartyTaxProfileConfirmation.jpg" medium="image">
			<media:title type="html">Party Tax Profile Confirmation</media:title>
		</media:content>
	</item>
		<item>
		<title>E-Business Tax Setup: Tax Configuration</title>
		<link>http://oracledocs.wordpress.com/2009/07/20/e-business-tax-setup-tax-configuration/</link>
		<comments>http://oracledocs.wordpress.com/2009/07/20/e-business-tax-setup-tax-configuration/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:04:17 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[E-Business Tax]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[setup E-Business Tax]]></category>
		<category><![CDATA[Tax checklist]]></category>
		<category><![CDATA[Tax Configuration]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=230</guid>
		<description><![CDATA[Platform: R12
Tax Configuration
 
 
 
Once you are done with the external dependencies, you can begin with Tax Configuration.
The checklist for tax configuration is as follows:

Create Tax Authorities      Party Tax Profiles
Create Tax Regimes
Create First Party Legal      Entity Party Tax Profile
Create Tax
Create Tax Reporting Codes
Create Tax [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=230&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/07/20/e-business-tax-setup-tax-configuration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>

		<media:content url="http://i583.photobucket.com/albums/ss271/shameemakhtar/E-Business%20Tax/E-BusinessTaxSetup-TaxConfiguration.jpg" medium="image">
			<media:title type="html">E-Business Tax Setup - Tax Configuration</media:title>
		</media:content>
	</item>
		<item>
		<title>E-Business Tax Lookup Codes</title>
		<link>http://oracledocs.wordpress.com/2009/07/02/e-business-tax-lookup-codes/</link>
		<comments>http://oracledocs.wordpress.com/2009/07/02/e-business-tax-lookup-codes/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 22:38:55 +0000</pubDate>
		<dc:creator>shameemakhtar</dc:creator>
				<category><![CDATA[E-Business Tax]]></category>
		<category><![CDATA[Financials]]></category>
		<category><![CDATA[Oracle Apps]]></category>
		<category><![CDATA[E-Business Tax Lookups]]></category>
		<category><![CDATA[External Dependencies]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[setup E-Business Tax]]></category>

		<guid isPermaLink="false">http://oracledocs.wordpress.com/?p=225</guid>
		<description><![CDATA[Platform: R12


 
 
ZX_INPUT_CLASSIFICATIONS                                     Used to create tax classification codes for use in tax determination. Release 11i tax codes and tax groups migrate to E-Business Tax as tax classification codes. Payables and Purchasing tax codes migrate as tax classification codes under ZX_INPUT_CLASSIFICATIONS.
ZX_OUTPUT_CLASSICATIONS                                    Release 11i Receivables and Projects tax codes migrate as tax classification codes under [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracledocs.wordpress.com&blog=8213252&post=225&subd=oracledocs&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://oracledocs.wordpress.com/2009/07/02/e-business-tax-lookup-codes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7528a937d507960fed5223e832b5715?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shameemakhtar</media:title>
		</media:content>
	</item>
	</channel>
</rss>