Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dldev
  • Content: Threads
  • Order by date
  1. dldev

    Date Formatting for OWC/Pivot Table RowAxis field

    Hello, I am currently returning the date from an Cube Dimension into an OWC Pivot Table as such: 2008-01-30 00:00:00 I have been researching how to apply a short date format (mm/dd/yyyy) on the web page as such: RowAxis.InsertFieldSet(FieldSets("Request Open Date")).NumberFormat = "Short...
  2. dldev

    Date Format for OWC/Pivot Table

    Hello, I am currently returning the date from an Cube Dimension into an OWC Pivot Table as such: 2008-01-30 00:00:00 I have been researching how to apply a short date format (mm/dd/yyyy) on the web page as such: RowAxis.InsertFieldSet(FieldSets("Request Open Date")).NumberFormat = "Short...
  3. dldev

    Outlook 2003: Send E-Mail Notification If Scheduled E-Mail Is Late

    Hello, I've looked in Outlook at the rules and for other ways to do this, so I was hoping someone here might be able to help. Is there a way I can send an e-mail notification is an hourly e-mail is late or doesn't arrive as expected? For instance, if the email from a certain sender is over 60...
  4. dldev

    Dependent Drop-Down lists in Word 2003

    Hello, I've been looking at different approaches for creating a dependent drop-down list (or text box), but have been unable to come up with a solution that works. In some cases there will be only one value for a value chosen in a drop-down, in other cases there may be more than one. In the...
  5. dldev

    Automate Fill and ASP Form Submit for Testing

    Hello, I have been looking for an application that would enable me to set-up an hourly job to run. This job would populate and submit (or submit a pre-populated form) that would run (submit) once an hour. The client is worried the form might not be running so they want some kind of confirmation...
  6. dldev

    Update Two Tables based on join

    Hello, I have this query which is pulling from a production table: select o.OrderNumber as [Order Number], o.CustomerID as [Customer ID], o.LastName + ' ' + o.FirstName as [Customer Name], c.Email, c.AdditionalEmail as [Additional Email], c.Phone, o.ShippingCity as [Shipping...
  7. dldev

    ASP 2.0, first chance exception, Failure sending mail

    Hello, When trying to send mail through my application I am getting this error: A first chance exception of type 'System.Net.Mail.SmtpException' occurred in System.dll System.Net.Mail.SmtpException: Failure sending mail. I am using ASP.NET 2.0 and the project is in Visual Studio 2005...
  8. dldev

    Conditional Jump to Report in SRS 2000 possible?

    Hello, I've been researching this for some time. Does anyone know if you can conditionally jump to a report? Something like this: =iif(Fields!TEST.Value = "?????" And Fields!TEST2.Value > 0, TestDetailReport, "") I've tried this based on the text color also but keep getting errors like this...
  9. dldev

    Conditional Jump to Report in SRS 2000

    Hello, I've been researching this for some time. Does anyone know if you can conditionally jump to a report? Something like this: =iif(Fields!TEST.Value = "?????" And Fields!TEST2.Value > 0, TestDetailReport, "") I've tried this based on the text color also but keep getting errors like this...
  10. dldev

    Rename backup files in SQL Server 2005 subplan

    Hello, is there a way to rename .bak files from the default naming that happens in an automated SQL backup job? I've been lookging through the maintenance plan and subplans, help files, online and it doesn't look like there's a way to do it in the management console. I wanted to avoid having...
  11. dldev

    System.InvalidOperationException in SRS 2000

    Hello, I have a financial report which takes quite a while to run, approximately 30 minutes. It is a data intensive report pulling in many years worth of data which I have converted from an RPT to RDL. The RPT takes a long time as well but eventually renders the report and has been in...
  12. dldev

    Trapping Errors When Running DTS Package from VS.NET 2003

    Hello, here is my code which works to run a DTS package from my VB.NET app: Public Sub ExecutePackage(ByVal sServer As String, ByVal sPackageName As String, ByVal sPackageGuid As String) Dim opak As New Package2Class opak.LoadFromSQLServer(sServer, "test", "access", , ...
  13. dldev

    Stored Proc with Multiple Selects and SRS 2005 Report

    Hello, I have a stored proc which uses several select statements for multiple resultsets, but I've come up against a brick wall because it seems that SQL Server Reporting Services 2005 doesn't support multiple select statements and will only return results from the first select statement. If...
  14. dldev

    Checking period/posting settings across companies

    Hello experts, Is it possible to run a query to pull the fiscal period and posting settings across multiple companies (databases)? If so, could someone please show me an example of how I would query this? I wasn't sure if there is a system table in the Dynamics db I could query or if I had to...
  15. dldev

    Date Results Broken Out by Month

    Sorry, I forgot to put the subject on this. Hello experts, I have this stored proc which returns sales for a given beginning and ending date range. The challenge I face is breaking out the results so the results are displayed by month as follows: Sales By Customer...
  16. dldev

    Hello experts, I have this stor

    Hello experts, I have this stored proc which returns sales for a given beginning and ending date range. The challenge I face is breaking out the results so the results are displayed by month as follows: Sales By Customer: Qty $ Qty $...
  17. dldev

    Month Crosstab for SRS2000 Report

    Hello, I am trying to create a report that breaks out the results in a crosstab by the month part of dates like 2/2/2007. I've been researching this but have yet to come up with a definite strategy to handle this in SRS. Could someone please show me how, I would really appreciate it. Thanks...
  18. dldev

    Backup Script with Verify Database

    Hello, I have the following script which performs a nightly differential backup... DECLARE @name VARCHAR(50) DECLARE @path VARCHAR(256) DECLARE @fileName VARCHAR(256) DECLARE @fileDate VARCHAR(20) SET @path = '\\test\SQLBACKUPS\' SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112)...
  19. dldev

    Posting/Fiscal Period Setup Information

    Hello, Please excuse my newbie question. Could someone please tell me what tables would be involved with creating a report for posting and fiscal period setup that would display open-close period info? I'm assuming from what Ive learned so far it would involve using the GL tables, but I've...

Part and Inventory Search

Back
Top