<?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>IT Answers &#187; Reporting</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/business-intelligence/reporting/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Thu, 20 Jun 2013 11:05:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Writing a &#8220;If&#8221; &amp; &#8220;Then&#8221; Statement in Crystal Reports 9</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/writing-a-if-then-statement-in-crystal-reports-9/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/writing-a-if-then-statement-in-crystal-reports-9/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 19:52:19 +0000</pubDate>
		<dc:creator>DJandLO</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports 9]]></category>
		<category><![CDATA[iMIS]]></category>
		<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, I&#8217;m new to the site and reletively new to writing code so, please bare with me.  I&#8217;m trying to pull duplicate records from a field that has multiple member types {Member_Types.MEMBER_TYPE}. What I want to do is pull only the duplicate records that contain a valid member type. For example 2 records meet my [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,<br/><br/> I&#8217;m new to the site and reletively new to writing code so, please bare with me.  I&#8217;m trying to pull duplicate records from a field that has multiple member types {Member_Types.MEMBER_TYPE}. What I want to do is pull only the duplicate records that contain a valid member type.<br/><br/>
<ol>
<li>For example 2 records meet my duplicate criteria &#038; have a member type of GEN &#038; NM - I want to show on the report.</li>
<li>But if 2 records meet my duplicate criteria &#038; have a member type of NM &#038; 01 - I don&#8217;t want it to show on the report.  </li>
</ol>
<p>  I hope I was able to explain that correctly?  Any help would be appreciated.<br/><br/> DJandLO<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/writing-a-if-then-statement-in-crystal-reports-9/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SQL Report Help</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-report-help/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sql-report-help/#comments</comments>
		<pubDate>Tue, 31 May 2011 23:35:55 +0000</pubDate>
		<dc:creator>Blowinup</dc:creator>
				<category><![CDATA[Reporting]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Reports]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[SQL Server Reports]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi I&#8217;m dave and I&#8217;m new to the forum, SQL and SSRS. Thanks in advance for your assistance and patience. I have a recall report that produces letters for every patient who needs to return to the office on a certain date based on their recall plan (a plan that determines when they should return [...]]]></description>
				<content:encoded><![CDATA[<p>Hi I&#8217;m dave and I&#8217;m new to the forum, SQL and SSRS. Thanks in advance for your assistance and patience. <br/><br/> I have a recall report that produces letters for every patient who needs to return to the office on a certain date based on their recall plan (a plan that determines when they should return based on their condition).<br/><br/>  I have another table that stores all appointments for each patients (past and present). Appointments in the recall_plans table are auto-generated whereas appointments in the appointments table where created manually. The recall plan report is not checked if a person calls in to make an appointment so often the same appointment is represented in both tables resulting in duplicate reminder letters being sent out. <br/><br/> I need to do two things: (I know my approach is not necessarily resolving the business problem but this is what I am tasked with) <br/><br/>
<ol>
<li>I need to produce a list showing the next appointment for each patient but only if it is in the future. </li>
<li>I need to add a column to the first report showing each patient’s next appointment so someone can manually identify that duplicate letters would go out for specific patients and intervene accordingly. </li>
</ol>
<p> Recall Report Query: <br/><br/> SELECT description as [Plan Name], per.first_name + &#8216; &#8216; + per.last_name as [Patient], substring (plan_start_date, 5,2) + &#8216;-&#8217; + substring (plan_start_date, 7,2) + &#8216;-&#8217; + substring (plan_start_date, 1,4) as [Plan Start Date], substring (nr.expected_return_date, 5,2) + &#8216;-&#8217; + substring (nr.expected_return_date, 7,2) + &#8216;-&#8217; + substring (nr.expected_return_date, 1,4) as [Expected Return Date] FROM recall_plan_mstr rp, patient_recall_plans nr, patient pt, person per WHERE rp.practice_id = nr.practice_id and rp.recall_plan_id = nr.recall_plan_id and nr.practice_id = pt.practice_id and nr.person_id = pt.person_id and per.person_id = pt.person_id and (active_plan_ind = &#8216;Y&#8217;) and rp.practice_id = &#8217;0025&#8242; <br/><br/> Recall Report Results: <br/><br/> PLAN NAME PATIENT START RETURN <br/><br/> OFFICE VISIT W/ DR Charles Span 04-18-2011 12-15-2011<br/><br/>  <br/><br/> Appointments Query: <br/><br/> select person_id, appt_date from appointments where person_id is not null group by person_id, appt_date order by person_id, appt_date desc <br/><br/> Appointments Results: <br/><br/> 073C8F83-CE15-4192-8E12-00006CB5A433 20091228 073C8F83-CE15-4192-8E12-00006CB5A433 20090510 073C8F83-CE15-4192-8E12-00006CB5A433 20090301 073C8F83-CE15-4192-8E12-00006CB5A433 20081006 378A281C-FAE7-43DF-BC03-00006E386680 20110509 378A281C-FAE7-43DF-BC03-00006E386680 20110217 378A281C-FAE7-43DF-BC03-00006E386680 20110124 378A281C-FAE7-43DF-BC03-00006E386680 20110111 378A281C-FAE7-43DF-BC03-00006E386680 20101207 816D4D31-3C99-4762-878D-000097883B73 20110316 816D4D31-3C99-4762-878D-000097883B73 20101216 <br/><br/> Questions: <br/><br/>
<ol>
<li>How can I produce a list from the appointments table that results with one patient per row with only the latest appointment that is in the future? Do I need to write a cursor for that? </li>
<li>How can I comingle this list into my recall report so it has a column to the right of return column that displays the patient’s next appointment date (future only)? </li>
</ol>
<p> Both tables have a person number GUID. <br/><br/> I hope i have adequately explained and provided enough information. If any additional information is needed please don’t hesitate to ask. <br/><br/> Thanks, dave<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sql-report-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who is possibly logging in to domain Admin and from where?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/who-is-possibly-logging-in-to-domain-admin-and-from-where/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/who-is-possibly-logging-in-to-domain-admin-and-from-where/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 12:14:44 +0000</pubDate>
		<dc:creator>Sethmorris</dc:creator>
				<category><![CDATA[Administrator]]></category>
		<category><![CDATA[Administrator password]]></category>
		<category><![CDATA[Domain Administration]]></category>
		<category><![CDATA[Eventlogs]]></category>
		<category><![CDATA[Reporting]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Unfortunately, I think my domain admin passwork may have leaked to someone in the company. I know how to view the authentication records via event log, but am wondering how I can make it easier on myself to know if and when this is occuring. Is there an opensource app that can help? Or an [...]]]></description>
				<content:encoded><![CDATA[<p>Unfortunately, I think my domain admin passwork may have leaked to someone in the company. I know how to view the authentication records via event log, but am wondering how I can make it easier on myself to know if and when this is occuring. Is there an opensource app that can help? Or an easy way to generate automatic reports as a trigger when Admin account is used? Expert advice appreciated thank you</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/who-is-possibly-logging-in-to-domain-admin-and-from-where/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting Services 2005</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/reporting-services-2005/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/reporting-services-2005/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 16:23:39 +0000</pubDate>
		<dc:creator>Rick Martinez</dc:creator>
				<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[Reporting Services 2005]]></category>
		<category><![CDATA[SSRS]]></category>
		<category><![CDATA[SSRS 2005]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, I am running reporting services 2005. I created a subscrition for a report named &#8220;paid_claims&#8221; that will auto generate an excel file into a shared folder on the network. The &#8220;paid_claims&#8221; report has a link to another report named &#8220;sub_paid_claims&#8221; in the same folder. We recently renamed our server from MEDI01a to MEDI01, when [...]]]></description>
				<content:encoded><![CDATA[<p>Hello, I am running reporting services 2005. I created a subscrition for a report named &#8220;paid_claims&#8221; that will auto generate an excel file into a shared folder on the network. The &#8220;paid_claims&#8221; report has a link to another report named &#8220;sub_paid_claims&#8221; in the same folder. We recently renamed our server from MEDI01a to MEDI01, when the subscription generates the report it generates the link with the old server name when I manually generate the report myself without using the subscription the link generates fine. I cannot seem to find a fix for this. Thank you for your help.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/reporting-services-2005/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New to AS400 administration and need some help.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/new-to-as400-administration-and-need-some-help/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/new-to-as400-administration-and-need-some-help/#comments</comments>
		<pubDate>Tue, 17 May 2005 12:04:41 +0000</pubDate>
		<dc:creator>Bkr0963c</dc:creator>
				<category><![CDATA[Auditing]]></category>
		<category><![CDATA[Availability]]></category>
		<category><![CDATA[Backup & recovery]]></category>
		<category><![CDATA[Capacity planning]]></category>
		<category><![CDATA[DataCenter]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Help Desk]]></category>
		<category><![CDATA[i5]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Integration with other platforms]]></category>
		<category><![CDATA[Integration/Connectivity]]></category>
		<category><![CDATA[iSeries]]></category>
		<category><![CDATA[Logical partitions]]></category>
		<category><![CDATA[Mainframe]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[OS/400]]></category>
		<category><![CDATA[PC/Windows Connectivity]]></category>
		<category><![CDATA[Performance/Tuning]]></category>
		<category><![CDATA[Printing]]></category>
		<category><![CDATA[PTFs]]></category>
		<category><![CDATA[Remote access]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Security management]]></category>
		<category><![CDATA[Server consolidation]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[System monitoring]]></category>
		<category><![CDATA[Tech support]]></category>
		<category><![CDATA[Technical support]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have two questions here if someone can help. I will appreciate anything you can give. First, I am trying to configure a network printer on the AS400. I did wrkcfgsts, work with description, and copied the printer devices description and modified the printer device with the new info. All I changed was the IP [...]]]></description>
				<content:encoded><![CDATA[<p>I have two questions here if someone can help. I will appreciate anything you can give.</p>
<p>First, I am trying to configure a network printer on the AS400. I did wrkcfgsts, work with description, and copied the printer devices description and modified the printer device with the new info. All I changed was the IP address, the name, and the user-defined object parameters. When I clicked enter, it could not find the user-defined object. However, it still created the device. I varied the device on, and then tried to start the writer, however, the printer keeps going to a status of end. Any suggestions on how I can get this printer device started and printing.</p>
<p>Second question,</p>
<p>I have a user that is unable to update the backup schedule. They run Go Backup, enter option 10-Set up a backup, and then enter option 20-Change backup schedule, however, the are unable to update the backup schedule. Any help that any of you can supply will be greatly appreciated.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/new-to-as400-administration-and-need-some-help/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Monitor Internet Bandwidth</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/monitor-internet-bandwidth/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/monitor-internet-bandwidth/#comments</comments>
		<pubDate>Mon, 29 Nov 2004 01:55:20 +0000</pubDate>
		<dc:creator>GiriPrasad</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Application management]]></category>
		<category><![CDATA[Auditing]]></category>
		<category><![CDATA[Availability]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Backup & recovery]]></category>
		<category><![CDATA[Bandwidth]]></category>
		<category><![CDATA[Benchmarking]]></category>
		<category><![CDATA[Bind]]></category>
		<category><![CDATA[BroadVision]]></category>
		<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Call Centers]]></category>
		<category><![CDATA[Clarify Inc.]]></category>
		<category><![CDATA[CLB]]></category>
		<category><![CDATA[Client management]]></category>
		<category><![CDATA[Clustering/High availability]]></category>
		<category><![CDATA[Component Load Balancing]]></category>
		<category><![CDATA[Content filtering]]></category>
		<category><![CDATA[Corporate portal applications]]></category>
		<category><![CDATA[Customer relationship management applications]]></category>
		<category><![CDATA[Data analysis]]></category>
		<category><![CDATA[Data center operations]]></category>
		<category><![CDATA[Data mining/analysis]]></category>
		<category><![CDATA[Data warehousing/Business intelligence]]></category>
		<category><![CDATA[Database Management Systems]]></category>
		<category><![CDATA[DataCenter]]></category>
		<category><![CDATA[Datacenter Server]]></category>
		<category><![CDATA[DB2 administration]]></category>
		<category><![CDATA[Desktop security]]></category>
		<category><![CDATA[Desktops]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[Distributed File System]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[E-business]]></category>
		<category><![CDATA[E-mail applications]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2000]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 5.5]]></category>
		<category><![CDATA[Exchange Server ActiveSync]]></category>
		<category><![CDATA[FAT and NTFS]]></category>
		<category><![CDATA[Fault isolation]]></category>
		<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[General Directories]]></category>
		<category><![CDATA[Graphical User Interfaces]]></category>
		<category><![CDATA[Handheld]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Help Desk]]></category>
		<category><![CDATA[Information risk management]]></category>
		<category><![CDATA[Integration/Connectivity]]></category>
		<category><![CDATA[Intel servers]]></category>
		<category><![CDATA[IT architecture]]></category>
		<category><![CDATA[Knowledge management applications]]></category>
		<category><![CDATA[Licensing]]></category>
		<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Mail protocols]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Major Vendors]]></category>
		<category><![CDATA[Microsoft Internet Information Server]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Netscape Mail]]></category>
		<category><![CDATA[Network applications management]]></category>
		<category><![CDATA[Network management software]]></category>
		<category><![CDATA[Network monitoring]]></category>
		<category><![CDATA[Network requirements]]></category>
		<category><![CDATA[Network testing]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Networking Equipment]]></category>
		<category><![CDATA[Networking services]]></category>
		<category><![CDATA[Office Applications]]></category>
		<category><![CDATA[Operating system platforms]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[PC/Windows Connectivity]]></category>
		<category><![CDATA[Performance management]]></category>
		<category><![CDATA[Performance/Tuning]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[Policies]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[Protocol analysis]]></category>
		<category><![CDATA[Remote management]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[ROI & cost justification]]></category>
		<category><![CDATA[Routers]]></category>
		<category><![CDATA[S/MIME]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Security management]]></category>
		<category><![CDATA[Security products]]></category>
		<category><![CDATA[Sendmail]]></category>
		<category><![CDATA[Server consolidation]]></category>
		<category><![CDATA[Server management]]></category>
		<category><![CDATA[Server-based/Thin-client computing]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software distribution]]></category>
		<category><![CDATA[Software Quality Assurance]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[System monitoring]]></category>
		<category><![CDATA[System utilities]]></category>
		<category><![CDATA[Tech support]]></category>
		<category><![CDATA[Technical support]]></category>
		<category><![CDATA[Third-party services]]></category>
		<category><![CDATA[Vendor support]]></category>
		<category><![CDATA[Virus protection]]></category>
		<category><![CDATA[Web services]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000 desktop]]></category>
		<category><![CDATA[Windows 2000 Server]]></category>
		<category><![CDATA[Windows client administration and maintenance]]></category>
		<category><![CDATA[Windows on Intel]]></category>
		<category><![CDATA[Windows Server 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Good day, we are using windows2000 smallbusiness server in our organisation with Exchange,Dns and Isa server configured. 1. I want to monitor the internet usage by the users. 2. I want to take a report on monthly or daily basis how much mb/gb utilised By Each User. Thanks for u&#8217;r reply in advance.]]></description>
				<content:encoded><![CDATA[<p>Good day,<br />
 we are using windows2000 smallbusiness server in our organisation with Exchange,Dns and Isa server configured.<br />
1. I want to monitor the internet usage by the users.<br />
2. I want to take a report on monthly or daily basis how much mb/gb utilised By Each User.<br />
Thanks for u&#8217;r reply in advance.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/monitor-internet-bandwidth/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 4/25 queries in 0.022 seconds using memcached
Object Caching 1048/1197 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-20 11:05:56 -->