
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Generate Excel Report From PeopleSoft SQR	</title>
	<atom:link href="https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr/feed" rel="self" type="application/rss+xml" />
	<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr</link>
	<description>Tips for Those Who Want to Learn</description>
	<lastBuildDate>Mon, 23 Dec 2019 23:17:38 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
	<item>
		<title>
		By: tsds		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-600</link>

		<dc:creator><![CDATA[tsds]]></dc:creator>
		<pubDate>Mon, 23 Dec 2019 23:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-600</guid>

					<description><![CDATA[Thanks for sharing this article. Do you have an example where the excel output contain multiple tabs?

Thanks]]></description>
			<content:encoded><![CDATA[<p>Thanks for sharing this article. Do you have an example where the excel output contain multiple tabs?</p>
<p>Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Hussain		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-561</link>

		<dc:creator><![CDATA[Hussain]]></dc:creator>
		<pubDate>Sat, 12 Nov 2016 15:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-561</guid>

					<description><![CDATA[How can we pass parameters? e.g. From Peoplesoft HCM or FSCM Web UI, prompt the user for starting and ending employee id and pass it to this report.
Can you please do a tutorial where calling an SQR report is added to the Peoplesoft menu (along with the parameter selection) so we can see the steps involved?]]></description>
			<content:encoded><![CDATA[<p>How can we pass parameters? e.g. From Peoplesoft HCM or FSCM Web UI, prompt the user for starting and ending employee id and pass it to this report.<br />
Can you please do a tutorial where calling an SQR report is added to the Peoplesoft menu (along with the parameter selection) so we can see the steps involved?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: prasanna ambrose		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-544</link>

		<dc:creator><![CDATA[prasanna ambrose]]></dc:creator>
		<pubDate>Thu, 16 Jun 2016 03:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-544</guid>

					<description><![CDATA[Hello Nayan
Have you ever converted SQR Reports into BI Publisher Reports?

Is it hard? I have done BI Publisher not SQR Reports.

Wonder how hard this will be
please advise]]></description>
			<content:encoded><![CDATA[<p>Hello Nayan<br />
Have you ever converted SQR Reports into BI Publisher Reports?</p>
<p>Is it hard? I have done BI Publisher not SQR Reports.</p>
<p>Wonder how hard this will be<br />
please advise</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jayesh		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-520</link>

		<dc:creator><![CDATA[Jayesh]]></dc:creator>
		<pubDate>Fri, 18 Mar 2016 14:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-520</guid>

					<description><![CDATA[Hi Jayesh Here,
 Can u plz help me with concatenate and show command.

I will display the sqr i have return plz suggest me the change. in show and concatenate


!********************************
Begin-Procedure Fetch_HDR
!********************************
Begin-SELECT 
   
EMPLID &#038;EMPLID
BIRTHDATE &#038;BIRTHDATE
BIRTHPLACE &#038;BIRTHPLACE
BIRTHCOUNTRY &#038;BIRTHCOUNTRY
BIRTHSTATE &#038;BIRTHSTATE
DT_OF_DEATH &#038;DT_OF_DEATH
LAST_CHILD_UPDDTM &#038;LAST_CHILD_UPDDTM
	
    LET $EMPLID = &#038;EMPLID
    LET $BIRTHDATE = &#038;BIRTHDATE
    LET $BIRTHPLACE = &#038;BIRTHPLACE
    LET $BIRTHCOUNTRY = &#038;BIRTHCOUNTRY
    LET $BIRTHSTATE = &#038;BIRTHSTATE
    LET $DT_OF_DEATH= &#038;DT_OF_DEATH
    LET $LAST_CHILD_UPDDTM = &#038;LAST_CHILD_UPDDTM
	
	show &#038;EMPLID &#124;&#124;&#039;_&#039;&#124;&#124; &#038;BIRTHDATE &#124;&#124;&#039;_&#039;&#124;&#124; &#038;BIRTHPLACE
        
FROM   PS_Z_PERSON01

!DO Write_HDR     ! Calling another procedure to write details in excel file.
    
End-SELECT 
End-Procedure

!*****************************************************************************
!Procedure Name : Write-HDR
!*****************************************************************************  
BEGIN-PROCEDURE WRITE-HDR
 

let $string =  &#039;&#038;EMPLID&#039; &#124;&#124; {comma}  &#124;&#124; &#039;&#038;BIRTHDATE&#039; &#124;&#124; {comma} &#124;&#124;&#039;&#038;BIRTHPLACE&#039;              !&#124;  {Comma}  &#124;&#124; &#039;&#038;BIRTHCOUNTRY&#039; &#124;&#124; {Comma}  &#124;&#124; &#039;&#038;BIRTHSTATE&#039; &#124;&#124; {Comma}  &#124;&#124; &#039;&#038;DT_OF_DEATH&#039; &#124;&#124; {Comma}  &#124;&#124; &#039;&#038;LAST_CHILD_UPDDTM&#039;
  
WRITE {output_txt_file_number} FROM
                     $string                      

END-PROCEDURE

I am gettin the foll ERRoR
Error on line 101:
   (SQR 4305) Unknown option for SHOW.
 show &#038;EMPLID &#124;&#124;&#039;_&#039;&#124;&#124; &#038;BIRTHDATE &#124;&#124;&#039;_&#039;&#124;&#124; &#038;BIRTHPLACE

Errors were found in the program file.

SQR for PeopleSoft: Program Aborting.]]></description>
			<content:encoded><![CDATA[<p>Hi Jayesh Here,<br />
 Can u plz help me with concatenate and show command.</p>
<p>I will display the sqr i have return plz suggest me the change. in show and concatenate</p>
<p>!********************************<br />
Begin-Procedure Fetch_HDR<br />
!********************************<br />
Begin-SELECT </p>
<p>EMPLID &amp;EMPLID<br />
BIRTHDATE &amp;BIRTHDATE<br />
BIRTHPLACE &amp;BIRTHPLACE<br />
BIRTHCOUNTRY &amp;BIRTHCOUNTRY<br />
BIRTHSTATE &amp;BIRTHSTATE<br />
DT_OF_DEATH &amp;DT_OF_DEATH<br />
LAST_CHILD_UPDDTM &amp;LAST_CHILD_UPDDTM</p>
<p>    LET $EMPLID = &amp;EMPLID<br />
    LET $BIRTHDATE = &amp;BIRTHDATE<br />
    LET $BIRTHPLACE = &amp;BIRTHPLACE<br />
    LET $BIRTHCOUNTRY = &amp;BIRTHCOUNTRY<br />
    LET $BIRTHSTATE = &amp;BIRTHSTATE<br />
    LET $DT_OF_DEATH= &amp;DT_OF_DEATH<br />
    LET $LAST_CHILD_UPDDTM = &amp;LAST_CHILD_UPDDTM</p>
<p>	show &amp;EMPLID ||&#8217;_&#8217;|| &amp;BIRTHDATE ||&#8217;_&#8217;|| &amp;BIRTHPLACE</p>
<p>FROM   PS_Z_PERSON01</p>
<p>!DO Write_HDR     ! Calling another procedure to write details in excel file.</p>
<p>End-SELECT<br />
End-Procedure</p>
<p>!*****************************************************************************<br />
!Procedure Name : Write-HDR<br />
!*****************************************************************************<br />
BEGIN-PROCEDURE WRITE-HDR</p>
<p>let $string =  &#8216;&amp;EMPLID&#8217; || {comma}  || &#8216;&amp;BIRTHDATE&#8217; || {comma} ||&#8217;&amp;BIRTHPLACE&#8217;              !|  {Comma}  || &#8216;&amp;BIRTHCOUNTRY&#8217; || {Comma}  || &#8216;&amp;BIRTHSTATE&#8217; || {Comma}  || &#8216;&amp;DT_OF_DEATH&#8217; || {Comma}  || &#8216;&amp;LAST_CHILD_UPDDTM&#8217;</p>
<p>WRITE {output_txt_file_number} FROM<br />
                     $string                      </p>
<p>END-PROCEDURE</p>
<p>I am gettin the foll ERRoR<br />
Error on line 101:<br />
   (SQR 4305) Unknown option for SHOW.<br />
 show &amp;EMPLID ||&#8217;_&#8217;|| &amp;BIRTHDATE ||&#8217;_&#8217;|| &amp;BIRTHPLACE</p>
<p>Errors were found in the program file.</p>
<p>SQR for PeopleSoft: Program Aborting.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PeopleSoft and Microsoft Excel &#8211; drgaff		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-519</link>

		<dc:creator><![CDATA[PeopleSoft and Microsoft Excel &#8211; drgaff]]></dc:creator>
		<pubDate>Thu, 03 Mar 2016 12:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-519</guid>

					<description><![CDATA[[&#8230;] I&#8217;ve found this blog entry where someone has done the same style of thing in [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] I&#8217;ve found this blog entry where someone has done the same style of thing in [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mónica		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-507</link>

		<dc:creator><![CDATA[Mónica]]></dc:creator>
		<pubDate>Fri, 11 Dec 2015 15:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-507</guid>

					<description><![CDATA[Hi Nayan,
Thanks for posting that code, very Helpfull ...
Though I have a problem with a string field (inv_item_id) from inventory.  
If I have 1E0000108 as an input data, when I generate the excel file it convert it to 1E+108.
I already tried to use the style &lt;pre&gt; mso-number-format:&quot;\@&quot;;&lt;pre&gt;  in the style section of the procedure Write-XML_HTML_Code, but did not work. 
Please, Do you have any idea how to solve this?

Thanks,
Mónica.-]]></description>
			<content:encoded><![CDATA[<p>Hi Nayan,<br />
Thanks for posting that code, very Helpfull &#8230;<br />
Though I have a problem with a string field (inv_item_id) from inventory.<br />
If I have 1E0000108 as an input data, when I generate the excel file it convert it to 1E+108.<br />
I already tried to use the style </p>
<pre> mso-number-format:"\@";</pre>
<pre>  in the style section of the procedure Write-XML_HTML_Code, but did not work. 
Please, Do you have any idea how to solve this?

Thanks,
Mónica.-</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PPN		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-480</link>

		<dc:creator><![CDATA[PPN]]></dc:creator>
		<pubDate>Wed, 15 Apr 2015 14:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-480</guid>

					<description><![CDATA[Nice article.
Could you tell me, how to generate separate tabs in the above report? My requirement is to generate a cross tabular excel report of job data for a list of employees such that each employee data is on a separate tab. 
Till now, using your inputs above I am able to generate a report for a single employee.
Going by your example, suppose the Emplid, Name and Business Unit should be one tab and Dept, Jobcode and Location on another tab, how would this be done?

Thank you!]]></description>
			<content:encoded><![CDATA[<p>Nice article.<br />
Could you tell me, how to generate separate tabs in the above report? My requirement is to generate a cross tabular excel report of job data for a list of employees such that each employee data is on a separate tab.<br />
Till now, using your inputs above I am able to generate a report for a single employee.<br />
Going by your example, suppose the Emplid, Name and Business Unit should be one tab and Dept, Jobcode and Location on another tab, how would this be done?</p>
<p>Thank you!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nayan		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-477</link>

		<dc:creator><![CDATA[Nayan]]></dc:creator>
		<pubDate>Mon, 30 Mar 2015 12:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-477</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-476&quot;&gt;Xavier&lt;/a&gt;.

Hi Just comment out     Do Write_Excel_Data in this procedure 
&lt;pre&gt;
!*******************************
Begin-Procedure Generate_Excel
!************/******************
    Do Write_Excel_Header
    Do Fetch_Excel_Data
    Do Write_Excel_Data
End-Procedure
&lt;/pre&gt;

It should be

&lt;pre&gt;
!*******************************
Begin-Procedure Generate_Excel
!************/******************
    Do Write_Excel_Header
    Do Fetch_Excel_Data
    !Do Write_Excel_Data
End-Procedure
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-476">Xavier</a>.</p>
<p>Hi Just comment out     Do Write_Excel_Data in this procedure </p>
<pre>
!*******************************
Begin-Procedure Generate_Excel
!************/******************
    Do Write_Excel_Header
    Do Fetch_Excel_Data
    Do Write_Excel_Data
End-Procedure
</pre>
<p>It should be</p>
<pre>
!*******************************
Begin-Procedure Generate_Excel
!************/******************
    Do Write_Excel_Header
    Do Fetch_Excel_Data
    !Do Write_Excel_Data
End-Procedure
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Xavier		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-476</link>

		<dc:creator><![CDATA[Xavier]]></dc:creator>
		<pubDate>Mon, 30 Mar 2015 09:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-476</guid>

					<description><![CDATA[Hello Nayan, thanks, very usefull, but at the end of the excel file I have twice the same line.]]></description>
			<content:encoded><![CDATA[<p>Hello Nayan, thanks, very usefull, but at the end of the excel file I have twice the same line.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ranjini		</title>
		<link>https://www.dbtutor.com/2014/12/03/generate-excel-report-peoplesoft-sqr#comment-470</link>

		<dc:creator><![CDATA[ranjini]]></dc:creator>
		<pubDate>Fri, 16 Jan 2015 11:53:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbtutor.com/?p=1323#comment-470</guid>

					<description><![CDATA[its working now :) (y) 
thanks a lot Nayan :)]]></description>
			<content:encoded><![CDATA[<p>its working now 🙂 (y)<br />
thanks a lot Nayan 🙂</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
