<?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>glufke.net &#187; ERP</title>
	<atom:link href="http://glufke.net/category/erp/feed/" rel="self" type="application/rss+xml" />
	<link>http://glufke.net</link>
	<description></description>
	<lastBuildDate>Mon, 16 Apr 2012 19:33:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Concorrentes no Oracle EBS com saída em Excel</title>
		<link>http://glufke.net/2010/04/15/concorrentes-no-oracle-ebs-com-saida-em-excel/</link>
		<comments>http://glufke.net/2010/04/15/concorrentes-no-oracle-ebs-com-saida-em-excel/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 03:39:49 +0000</pubDate>
		<dc:creator>ricardo_rauber</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Concurrent]]></category>
		<category><![CDATA[EBS]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[R11]]></category>
		<category><![CDATA[R12]]></category>

		<guid isPermaLink="false">http://glufke.net/?p=328</guid>
		<description><![CDATA[
			
			
			
			
			
			
			
						
			Este artigo demonstra como criar Concurrents no Oracle EBS com saída para Microsoft Excel. Aí vai um passo a passo:
1 – Adicionar o tipo de saída Microsoft Excel
Na responsabilidade Administrador de Sistema você deve acessar o caminho abaixo:
Instalar -&#62; Idiomas
Insira um registro com estes valores:
Formato do Arquivo = Text
Tipo de Mime = application/vnd.ms-excel
Descrição = Microsoft [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="">
			<div style="float:left; width:50px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fglufke.net%2F2010%2F04%2F15%2Fconcorrentes-no-oracle-ebs-com-saida-em-excel%2F&amp;layout=button_count&amp;show_faces=false&amp;width=50&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:50px; height:21px;"></iframe></div>
			<div style="float:left; width:60px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://glufke.net/2010/04/15/concorrentes-no-oracle-ebs-com-saida-em-excel/"></g:plusone>
			</div>
			<div style="float:left; width:70px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://glufke.net/2010/04/15/concorrentes-no-oracle-ebs-com-saida-em-excel/"  data-text="Concorrentes no Oracle EBS com saída em Excel" data-count="horizontal" data-via="glufke"></a>
			</div><div style="float:left; width:110px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://glufke.net/2010/04/15/concorrentes-no-oracle-ebs-com-saida-em-excel/" data-counter="right"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Este artigo demonstra como criar Concurrents no Oracle EBS com saída para Microsoft Excel. Aí vai um passo a passo:</p>
<h3>1 – Adicionar o tipo de saída Microsoft Excel</h3>
<p>Na responsabilidade Administrador de Sistema você deve acessar o caminho abaixo:<br />
Instalar -&gt; Idiomas<br />
Insira um registro com estes valores:<br />
Formato do Arquivo = Text<br />
Tipo de Mime = application/vnd.ms-excel<br />
Descrição = Microsoft Excel<br />
<a href="http://glufke.net/wp-content/uploads/2010/04/ebsexcell11.png"><img class="alignnone size-full wp-image-331" title="Figura1" src="http://glufke.net/wp-content/uploads/2010/04/ebsexcell11.png" alt="" width="540" height="241" /></a><span id="more-328"></span>
<div id="ads_336x280"><script type="text/javascript">// <![CDATA[
 google_ad_client = "pub-8964513116661040"; google_alternate_color = "ffffFF"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text_image"; //2007-09-07: wp_quadrado_gra google_ad_channel = "0247072216"; google_color_border = "FFFFFF"; google_color_bg = "FFFFff"; google_color_link = "4F82CB"; google_color_text = "000000"; google_color_url = "4F82CB";
// ]]&gt;</script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></div>
<h3>2 – Criar um procedimento PL/SQL</h3>
<p>A saída deve ter os campos separados pelo caractere TAB.</p>
<pre class="brush: sql;">
CREATE OR REPLACE PACKAGE PKG_REP_EXCEL IS

  PROCEDURE BUILD (ERRBUF OUT VARCHAR2,
                   RETCODE OUT NUMBER);
END PKG_REP_EXCEL;
/

CREATE OR REPLACE PACKAGE BODY PKG_REP_EXCEL IS
  PROCEDURE BUILD (ERRBUF OUT VARCHAR2,
                   RETCODE OUT NUMBER) IS
    CURSOR CUR IS
      SELECT '1' A, '2' B, '3' C FROM DUAL
      UNION
      SELECT '4' A, '5' B, '6' C FROM DUAL
      UNION SELECT '7' A, '8' B, '9' C FROM DUAL;

    REG CUR%ROWTYPE;

    V_DIV VARCHAR2(1) := CHR(9); -- TAB
    V_OUT VARCHAR2(4000);

  BEGIN

    -- HEADER
    V_OUT := 'A' || V_DIV || 'B' || V_DIV || 'C';
    FND_FILE.PUT_LINE(FND_FILE.OUTPUT, V_OUT);

    -- LINES
    FOR REG IN CUR LOOP
      V_OUT := REG.A || V_DIV || REG.B ||   V_DIV || REG.C;
      FND_FILE.PUT_LINE(FND_FILE.OUTPUT, V_OUT);
    END LOOP;

  END BUILD;

END PKG_REP_EXCEL;
/</pre>
<h3>3 – Criar o Concorrente</h3>
<p>O executável é criado normalmente como Procedimento Armazenado do PL/SQL e o programa com formato de saída Texto.<br />
<a href="http://glufke.net/wp-content/uploads/2010/04/ebsexcell2.png"><img src="http://glufke.net/wp-content/uploads/2010/04/ebsexcell2.png" alt="" title="Figura2" width="540" height="255" class="alignnone size-full wp-image-332" /></a></p>
<p><a href="http://glufke.net/wp-content/uploads/2010/04/ebsexcell3.png"><img src="http://glufke.net/wp-content/uploads/2010/04/ebsexcell3.png" alt="" title="Figura3" width="540" height="360" class="alignnone size-full wp-image-333" /></a></p>
<h3>4 – Execução</h3>
<p>Após a visualização da saída, utilize o menu <strong>Ferramentas</strong> e a opção <strong>Copiar Arquivo</strong>. Nesse momento aparecerá uma LOV para você escolher o tipo de saída.<br />
<a href="http://glufke.net/wp-content/uploads/2010/04/ebsexcell4.png"><img src="http://glufke.net/wp-content/uploads/2010/04/ebsexcell4.png" alt="" title="Figura4" width="540" height="300" class="alignnone size-full wp-image-334" /></a></p>
<p><a href="http://glufke.net/wp-content/uploads/2010/04/ebsexcell5.png"><img src="http://glufke.net/wp-content/uploads/2010/04/ebsexcell5.png" alt="" title="Figura5" width="540" height="300" class="alignnone size-full wp-image-335" /></a></p>
<h3>5 – Arquivo Microsoft Excel</h3>
<p>Selecionado o tipo de arquivo <strong>Microsoft Excel</strong>, basta salvar ou abrir e temos o nosso relatório.<br />
<strong>Observação:</strong> Tome cuidado ao salvar o arquivo para não deixar a extensão <strong>TXT</strong>. Caso o arquivo seja gravado com essa extensão, altere para <strong>XLS</strong>.<br />
<a href="http://glufke.net/wp-content/uploads/2010/04/ebsexcell6.png"><img src="http://glufke.net/wp-content/uploads/2010/04/ebsexcell6.png" alt="" title="Figura6" width="540" height="387" class="alignnone size-full wp-image-330" /></a></p>
<p><em>Texto criado por Ricardo Rauber &#8211; Tutorial disponível para download <a href="http://glufke.net/oracle/download/oracle_ebs_concorrentes_em_excel.pdf">AQUI</a><br />
Comentários <a href="http://glufke.net/oracle/viewtopic.php?t=6095">aqui</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://glufke.net/2010/04/15/concorrentes-no-oracle-ebs-com-saida-em-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aplicativos Oracle para iPhone</title>
		<link>http://glufke.net/2009/11/18/aplicativos-oracle-para-iphone/</link>
		<comments>http://glufke.net/2009/11/18/aplicativos-oracle-para-iphone/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:57:07 +0000</pubDate>
		<dc:creator>glufke</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[EBS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Oracle R12]]></category>

		<guid isPermaLink="false">http://glufke.net/?p=162</guid>
		<description><![CDATA[
			
			
			
			
			
			
			
						
			
Oracle Business Indicators é um aplicativo de B.I. que provê informações em tempo real, com acesso seguro sobre performance no iPhone.
 Oracle Business Approvals for Managers permite que gerentes e executivos revisem tarefas chaves, acessem relatórios de B.I., tomem decisões e levem imediatamente as ações ao ambiente em modo seguro.
Oracle iReceipts é uma aplicação que [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="">
			<div style="float:left; width:50px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fglufke.net%2F2009%2F11%2F18%2Faplicativos-oracle-para-iphone%2F&amp;layout=button_count&amp;show_faces=false&amp;width=50&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:50px; height:21px;"></iframe></div>
			<div style="float:left; width:60px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://glufke.net/2009/11/18/aplicativos-oracle-para-iphone/"></g:plusone>
			</div>
			<div style="float:left; width:70px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://glufke.net/2009/11/18/aplicativos-oracle-para-iphone/"  data-text="Aplicativos Oracle para iPhone" data-count="horizontal" data-via="glufke"></a>
			</div><div style="float:left; width:110px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://glufke.net/2009/11/18/aplicativos-oracle-para-iphone/" data-counter="right"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><img src="http://glufke.net/oracle/uploads/oracle_iphone.PNG" alt="Oracle iPhone Apps" /></p>
<p><a href="http://itunes.apple.com/us/app/oracle-business-indicators/id284793704?mt=8"><strong>Oracle Business Indicators</strong></a> é um aplicativo de B.I. que provê informações em tempo real, com acesso seguro sobre performance no iPhone.</p>
<p><strong><a href="http://itunes.apple.com/us/app/oracle-business-approvals-for/id294535403?mt=8"> Oracle Business Approvals for Managers</a></strong> permite que gerentes e executivos revisem tarefas chaves, acessem relatórios de B.I., tomem decisões e levem imediatamente as ações ao ambiente em modo seguro.</p>
<p><strong><a href="http://itunes.apple.com/us/app/oracle-ireceipts/id333581170?mt=8">Oracle iReceipts</a> </strong>é uma aplicação que é parte do Oracle PeopleSoft Expenses, que permite aos usuários criar e submeter despesas para transações de caixa em tempo real..</p>
<p><strong><a href="http://itunes.apple.com/us/app/oracle-mobile-sales-assistant/id296929975?mt=8">Oracle Mobile Sales Assistant</a></strong> é uma aplicação CRM que trás informação em tempo real segura que sua emprea precisa no aparelho móvel. Tarefas frequentes, colaboração com colegas e compradores, fechar negócios na estrada.</p>
<p><strong><a href="http://itunes.apple.com/us/app/oracle-mobile-sales-forecast/id295991142?mt=8">Oracle Mobile Sales Forecast</a></strong> é um aplicativo fácil de usar que mostra em tempo real uma visibilidade de oportunidade para organização.</p>
<p><strong><a href="http://itunes.apple.com/us/app/oracle-enterprise-asset-management/id310120136?mt=8">Oracle Enterprise Asset Maintenance Workbench</a></strong> é um aplicativo que ajuda o departamento de manutenção a aumentar sua produtividade. A aplicação ajudará os engenheiros de campo e trabalhadores a tirar vantagem do GPS que o iPhone possui.<span id="more-162"></span></p>
<div id="ads_336x280"><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-8964513116661040";
google_alternate_color = "ffffFF";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_type = "text_image";
//2007-09-07: wp_quadrado_gra
google_ad_channel = "0247072216";
google_color_border = "FFFFFF";
google_color_bg = "FFFFff";
google_color_link = "4F82CB";
google_color_text = "000000";
google_color_url = "4F82CB";
// ]]&gt;</script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></div>
<p><a href="http://itunes.apple.com/us/app/oracle-business-approvals-for/id295494515?mt=8"><strong>Oracle Business Approvals for Sales Managers</strong></a> permite que executivos na área de vendas realizem tarefas chave, acessem informações relevantes ao negócio e visualizem relatório afim de tomar decisões em minutos onde estiver.</p>
<p><img class="aligncenter" title="iPhone x Oracle" src="http://glufke.net/oracle/images/oracle_apple.jpg" alt="" width="360" height="240" /></p>
<p>Se você está interessado em desenvolver aplicativos para o iPhone usando Oracle jDeveloper, veja <a title="jDeveloper and iPhone" href="http://www.oracle.com/technology/pub/articles/huang-iphone.html" target="_blank">esse artigo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://glufke.net/2009/11/18/aplicativos-oracle-para-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

