How to Disable a SSRS report parameter control dynamically at runtime?

I am trying to disable parameter based on the other parameter selection.
Please help me on this

Can we achieve this purpose using aspx page or custom code ?
yes you can
You can create a custom aspx page and inside that render the report code (rdl) and apply necessary styling etc inside it
Please Mark This As Answer if it solved your issue
Please Vote This As Helpful if it helps to solve your issue
Visakh
My MSDN Page
My Personal Blog
My Facebook Page

Similar Messages

  • How to hide/view a SSRS report parameter control dynamically at runtime?

    Hi,
    I am using SSRS 2005. I want to enable/disable or hide/view parameters based on another parameter selection.
    Say Suppose I have 5 parameters. User selects first value in first parameter I should show only Second parameter and hide remaining 3 parameters (Parameter 3,Parameter 4 & Parameter 5).
    If user selects second value in first parameter I should show third parameter and hide remaining 3 parameters(Parameter 2,Parameter 4 & Parameter 5).
    Similarly If user selects third value in first parameter I should show fourth and fifth parameter and hide remaining 2 parameters(Parameter 2 & Parameter 3).
    There is no relationship between these parameters except user selection.
    I can not see any Visible property for report parameters.
    Any "builtin" support in SSRS for this scenario.
    Appreciate your help.
    Regards,
    Bala

    Thanks for the tips.
    RDL is deployed in Report sever and the Report is integrated with .net application. End user view the
    Reports from Application.
    Currently I show the parameters as you mentioned in point 2.
    Based on my understanding on Point 1,  I want to create an independent web page in .net that has
    the entire parameters section and then a submit button that calls the report with the selected parameters.
    From SSRS side, I want to hide the parameters statically and make default values as NULL.
    Can I achieve Show/Hide parameter functionality by this way?
    Regards,
    Bala

  • SSRS Report Viewer Control Parameter alignment

    I am having problem aligning parameters in ssrs report viewer control ,is there any way i can control the display of the parameters in left side alignment or right side alignment. please see the below pic for more details.
    I am using vs.net 2012 and sql server 2012 and calling this server report in a asp.net page using report viewer control and report viewer process mode is "Remote"
    http://social.msdn.microsoft.com/Forums/getfile/514664

    Hi siva9000,
    In Reporting Services, we cannot customize the parameter pane like the ways you have mentioned above. We can refer to the following link, vote it is as important and hope Microsoft improve this feature in the next service pack or product release. Allow
    SSRS Parameter Panel to be formatted:
    https://connect.microsoft.com/SQLServer/feedback/details/545893/allow-ssrs-parameter-panel-to-be-formatted
    In addition, as Olaf suggested, we can hide the parameter prompt area, then create a custom parameter prompt area in the web page to achieve the goal. Please refer to the following blog:
    http://www.mssqltips.com/sqlservertip/1751/custom-control-and-setup-of-ssrs-report-parameters-from-a-web-page/
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SSAS report action to pass multi-value list of dimention key values to a SSRS report parameter

    This was originally posted on StackOverflow and suggested I try here as well.
    I want to create a report action in an SSAS OLAP cube that generates a list of formatted values to pass into an SSRS report parameter that accepts a multi-valued parameter list.  This would be applied at the
    cell level in the SSAS action.  I have found a solution that gets me most of the way:
    How to Pass Multiple Values from an SSAS Report Drill Through Action to an SSRS Multi-Value Parameter, but not quite.  The action does appear in Excel and works
    if I run the action from a cell that is at or below the dimension attribute I am generating the list for, in this case,
    Account Key.
    Below is a link to a screen capture (unable to embed it due to lack of reputation) showing the action and dimension structure in Excel.  The action works as long as I run it at the
    Account Key level or below.  I want to be able to run it at higher levels, such as
    Account Major and still have it generate all then related Account Key values for the SSRS report parameter.  Running it at the higher
    Account Major level does not trigger the report to run.
    Excel Action Screen Shot:
    http://i.stack.imgur.com/QCGSp.png
    Below is the MDX I am using to generate the value for the report parameter:
    UrlEscapeFragment(
    GENERATE(
    DESCENDANTS(
    [Account].[Account Key].CurrentMember,
    [Account].[Account Key].[Account Key]
    [Account].[Account Key].CURRENTMEMBER.Name,
    "&rp:Account="
    I am hoping that I can somehow modify the MDX above to make it return all the
    Account Keys for any attribute of the Account dimension when ran from any measure cell, not just when ran at self and children of
    Account Key in the pivot table.
    Also, if it helps, I can execute the following MDX query on the cube and get the results I am looking for.
    WITH MEMBER [Measures].[Account Key List] as
    GENERATE(
    DESCENDANTS([Account].[Account].CurrentMember, [Account].[Account].[Account]),
    [Account].[Account].CURRENTMEMBER.NAME,
    "&rp:Account=")
    SELECT {[Measures].[Account Key List]} on 0,
    ([Account].[Account Company Number].[Account Company Number],[Account].[Account Major].[Account Major]
    ) on 1
    FROM [Company 10 Action Demo]
    Below are partial results:
    10.116&rp:Account=10.116.010
    10.117&rp:Account=10.117.010&rp:Account=10.117.020
    10.120&rp:Account=10.120.005&rp:Account=10.120.006&rp:Account=10.120.010&rp:Account=10.120.020&rp:Account=10.120.030&rp:Account=10.120.040&rp:Account=10.120.050&rp:Account=10.120.060&rp:Account=10.120.380&rp:Account=10.120.999
    10.123
    Questions
    Any ideas what I might need to do to get Account Key to be returned for any attribute of the
    Account dimension?
    Would I possibly have to alter my Account dimension in the cube to get this to work?
    Thanks in advance.
    Edit 1 - Adventure Works Cube Version
    I was unable to get the suggested answer with the "Exists" function to work.  To better demonstrate this issue, I have recreated it using the Adventure Works Cube.
    I will focus on the Customer dimension, specifically the Customer and
    Education attributes.  I created a report action called Test Report Action.  Below is the XML created for it in the cube.
    <Action xsi:type="ReportAction" dwd:design-time-name="f35ad5ee-5167-4fb8-a0e0-0a74cc6e81c6">
    <ID>Report Action 1</ID>
    <Name>Test Report Action</Name>
    <TargetType>Cells</TargetType>
    <Target></Target>
    <Type>Report</Type>
    <ReportServer>SQLSERVER</ReportServer>
    <Path>ReportServer?/Test Report</Path>
    <ReportParameters>
    <ReportParameter>
    <Name>Test Customer Existing</Name>
    <Value>UrlEscapeFragment(
    GENERATE(
    EXISTING DESCENDANTS(
    [Customer].[Customer].CurrentMember,
    [Customer].[Customer].[Customer]
    [Customer].[Customer].CURRENTMEMBER.Name,
    "&amp;rp:Customer="
    )</Value>
    </ReportParameter>
    </ReportParameters>
    <ReportFormatParameters>
    <ReportFormatParameter>
    <Name>rs:Command</Name>
    <Value>Render</Value>
    </ReportFormatParameter>
    <ReportFormatParameter>
    <Name>rs:Renderer</Name>
    <Value>HTML5</Value>
    </ReportFormatParameter>
    </ReportFormatParameters>
    </Action>
    Below are the steps to re-create the issue.
    Connect to the cube in Excel
    Add dimension Customer -> More Fields -> Customer
    Add measure Internet Sales -> Internet Sales Amount
    Right-click Internet Sales Amount cell, select "Additional Actions" -> "Test Report Action" and see customer values created for URL 
    When the action is ran at this point with Customer, I see the values created in the URL shown message box (since there is no SSRS report server at location specified).
    Now the part I'm unable to resolve
    Remove the Customer dimension and add Customer -> Demographic -> Education
    Right-click Internet Sales Amount cell, select "Additional Actions" -> "Test Report Action"
    Nothing happens. If I ran the action on the cell next to "Bachelors", I would want it to build up all the list of all the "Customers"  that make up the "Bachelors" in the
    Customer dimension as part of the report parameter.  If no attributes where used in the cube from the
    Customer dimension for that cell, then I would like it to return "All Customers", or something similar to show that all customers are included in the aggregations.
    I am not too MDX savvy, thus far.  I think I need to somehow join the
    Customers to Internet Sales Amount in the Generate function portion.  I have tried several different combinations of the
    Customer dimension and Internet Sales Amount, along with various functions to see if I could get this to work with no success.  I am hoping that someone more knowledgeable the me will have a solution.   If you need more details,
    please ask and I will provide them.

    Simon,
    Thanks for you help with this.  This morning I found a workaround.  Below describes what that is.
    What I ended up doing was getting a list of values from a degenerate dimension that I could use to pass to SSRS to get a list of transactions for a report.  Below is how I did this, in relation to the Adventure Works cube using the degenerate dimension
    Internet Order Details.
    WITH MEMBER [Measures].[Order Param List] AS
    GENERATE(
    EXISTS([Internet Sales Order Details].[Sales Order Number].[Sales Order Number].Members, ,
    "Internet Sales"),
    [Internet Sales Order Details].[Sales Order Number].CurrentMember.Name,
    "&rp:OrderNum=")
    SELECT {[Measures].[Order Param List], [Measures].[Internet Sales Amount]} ON 0
    ,([Date].[Calendar].[Date]) ON 1
    FROM [Adventure Works]
    This will get a list of Sales Order Number in a text string, separated by "&rp:OrderNum=" for each measure of
    Internet Sales. This would allow me to create an SSRS report to bring back detail information for each
    Sales Order Number. Below are some sample results.
    May 16, 2007 SO50493&rp:OrderNum=SO50494&rp:OrderNum=SO50495&rp:OrderNum=SO50496&rp:OrderNum=SO50497&rp:OrderNum=SO50498&rp:OrderNum=SO50499&rp:OrderNum=SO50500 $12,157.80
    May 17, 2007 SO50501&rp:OrderNum=SO50502&rp:OrderNum=SO50503&rp:OrderNum=SO50504&rp:OrderNum=SO50505&rp:OrderNum=SO50506&rp:OrderNum=SO50507&rp:OrderNum=SO50508 $13,231.62
    May 18, 2007 SO50509&rp:OrderNum=SO50510 $4,624.91
    With this, I can then create a Report Action in SSRS with a Parameter Value of
    UrlEscapeFragment(
    GENERATE(
    EXISTS([Internet Sales Order Details].[Sales Order Number].[Sales Order Number].Members, ,
    "Internet Sales"),
    [Internet Sales Order Details].[Sales Order Number].CurrentMember.Name,
    "&rp:OrderNum=")
    The way I was going about it before was flawed, as I was trying to get a list of the granular values from each dimension used to build the measure value and pass each one of those as separate parameters. I just needed to set something unique for each fact
    measure transaction that represents the value and uses that in a query parameter for the SSRS report.

  • How to get DIVISION wise report in Controlling?

    Hi,
    How to get DIVISION wise report in Controlling? I am not trying to get Division in COPA report but i am not able to see Division Characteristic in Operating concern Data structure.
    Kindly help me - where can i get good Controlling report with Division wise? why i am not able to see the Division characteristic in COPA report?
    Thanks
    Kishore

    HI,
    Check this:
    KEA0 ->Data stucture (Display) ->Extras(Menu) -> Display fixed fields. In this pop-up you will see 'Division' (SPART).
    If this field is defined as Segment level characteristic (KEQ3), then you can build reports on this characteristic using KE35.
    Hope this helps.

  • How to add series to Business Graphics control dynamically?

    Hi Experts,
    How to add series to Business Graphics control dynamically?
    I tried the method add_series( ) but could not use it properly.
    If you have any clues of using it, let me know.
    I need it urgently.
    Best Regards,
    Arti.

    I'm not sure what ADD_SERIES method you are refering to. The only programable API for the Business Graphics that I found was this one:
    http://help.sap.com/saphelp_nw70/helpdata/EN/42/e61cd068dc3ee4e10000000a1553f7/frameset.htm
    I've not ever tried it, but you not just add the series UI element like any other dynamic UI manipulation during the WDDOMODIFYVIEW?
    http://help.sap.com/saphelp_nw70/helpdata/EN/11/ba74412cba127de10000000a155106/frameset.htm

  • SSRS & Report Viewer control - Show the print button and fire print for multi page report in Mozilla & Chrome

    I have reports in SSRS. I am using remote reports. Reports have multiple pages.
    In IE, the print button displays, but in Firefox and Chrome, it does not display.
    Below links shows how to display the print button for mozilla and chrome. These solutions only fire the print for the
    current page in the report viewer-
    http://stackoverflow.com/questions/951009/sql-reporting-services-print-button-not-shown-in-mozilla
    http://stackoverflow.com/questions/4208457/ssrs-print-button-in-chrome-and-firefox
    I need to be able to issue a print command for all
    pages in one go from the reportviewer.

    Hello,
    The common workaround about print button on ReportViewer control for non-IE browsers is add ActiveX print control or create Print function. It has pros and cons.
    I am not good at programming. But you can try to disable page breaks by setting InteractiveHeight to 0 so that the report will rendering in single page with Report Viewer control.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • List of Month and Year in SSRS report parameter?

    Hi, I have two parameters in my SSRS Report i.e. Month and Year. I want to show the list of all Months in dropdown and years for a particular range say 1995-Current Year.
    Can any one suggest me the query for how to get it to work.Thanks!!
    MCP

    I am not sure I what you're business needs are for this report.  You stated that you need the month and year for parameters.  If this is the case then there has to be a date and time column in which you can query against to provide both the month(s) and year.  In order to accomplish this using t-sql without querying an existing column would require a loop or cursor based approach,which can negatively impact performance, or a union statement specifying a string literal and the effort to write either of these would exceed the effort required to statically assign the parameter values in reporting services.  The below query shows how to statically create a query for each month and its ordinal position in the year and the same could be done with the year(s) 1995-2009, but this process involves more resources than assigning the static values for the parameters
    SELECT DATENAME(MONTH, 1 ) AS MONTH,
    1
    UNION
    SELECT DATENAME(MONTH, 2 ) AS MONTH,
    2
    UNION
    SELECT DATENAME(MONTH, 3 ) AS MONTH,
    3
    UNION
    SELECT DATENAME(MONTH, 4 ) AS MONTH,
    4
    UNION
    SELECT DATENAME(MONTH, 5 ) AS MONTH,
    5
    UNION
    SELECT DATENAME(MONTH, 6 ) AS MONTH,
    6
    UNION
    SELECT DATENAME(MONTH, 7 ) AS MONTH,
    7
    UNION
    SELECT DATENAME(MONTH, 8 ) AS MONTH,
    8
    UNION
    SELECT DATENAME(MONTH, 9 ) AS MONTH,
    9
    UNION
    SELECT DATENAME(MONTH, 10) AS MONTH,
    10
    UNION
    SELECT DATENAME(MONTH, 11) AS MONTH,
    11
    UNION
    SELECT DATENAME(MONTH, 12) AS MONTH,
    12
    David Dye

  • Disabling and or hiding parameter controls depending on the value of a popup

    How should I go about doing this? I've set the flags for the popup param to PF_ParamFlag_SUPERVISE like so
    def.flags = PF_ParamFlag_SUPERVISE;
    PF_ADD_POPUP(
         "Mode",
       6,
       1,
         "Option 1|Option 2|...",
       POPUP_MODE_ID
    And I'm capturing the PF_Cmd_USER_CHANGED_PARAM command like so
    case PF_Cmd_USER_CHANGED_PARAM:
         ERR(UserChangedParam(in_data, out_data, params, output, reinterpret_cast<PF_UserChangedParamExtra *>(extra));
         break;
    static PF_Err UserChangedParam(
        PF_InData* in_data,
        PF_OutData* out_data,
        PF_ParamDef* params[],
        PF_LayerDef* outputP,
        PF_UserChangedParamExtra* extra)
        PF_Err err = PF_Err_NONE;
        if (extra->param_index == POPUP_MODE_ID)
            if (params[POPUP_MODE_ID]->u.cd.value == 2)
                 //Code to enable and show the controls
            else
                 //Cose to disable or hide the controls
        return err;
    Am I doing everything right so far? What code do I need to put in the "if (params[POPUP_MODE_ID]->u.cd.value == 2)" block to disable a parameter? How different would the code be to hide the parameter completely? Can I hid entire topics like I can hide parameters? I'd have a use for all three things, I just can't figure out how to do them.

    I took a look at the Supervisor sample project. I've managed to figure out how to disable controls, which I've done like so:
    AEGP_SuiteHandler suites(in_data->pica_basicP);
    params[CONTROL_ID]->ui_flags |= PF_PUI_DISABLED;
    params[CONTROL_ID]->flags |= PF_ParamFlag_COLLAPSE_TWIRLY;
    ERR(suites.ParamUtilsSuite3()->PF_UpdateParamUI(
        in_data->effect_ref,
        CONTROL_ID,
        params[CONTROL_ID]
    Enabling should be something this instead:
    params[CONTROL_ID]->ui_flags &= ~PF_PUI_DISABLED;
    What I can't figure out, still, is how to hide a control. I've tried to set the PF_PUI_INVISIBLE flag but that did not seem to change anything. It looks like the Supervisor plugin is setting the exact same flag to hide controls but it must have something else that I'm missing.

  • How to create a SSRS report with SharePoint 2013 team site's calendar?

    Hi I have sp13 and SQL Data Rool (that brings up VS Shell 2010).
    I need to build a report where the top part is to have a SP Team site's calendar for up coming week. The 2nd half would be a table with data from that same site.  This report would then need to be embedded in a email that automatically sent to several
    users  on weekly basis.
    I have the table data report created form the SP list.  How can I get the calendar(display as a calendar that I see in the team site) on to the top part of this report? 
    Thank you.

    Please follow this article to write SSRS reports with data source as SharePoint list/calendars etc. All document libraries, list and calendars are derived from base list class so you can use any of this type as a data source
    http://www.mssqltips.com/sqlservertip/2068/using-a-sharepoint-list-as-a-data-source-in-sql-server-reporting-services-2008-r2/
    Once your SSRS report is developed, you have multiple ways to show it in SharePoint
    - upload to SSRS server and show in sharepoint in a page viewer web part or simply open it as a link in new window
    - configure SharePoint environment with integration to SSRS and upload report to SharePoint library. Display report in a web part page using SSRS web part.
    Moonis Tahir MVP SharePoint,MCTS SharePoint 2010/2007, MCPD.net, MCSD.net, MCTS BizTalk 2006,SQL 2005

  • How to find an SSRS report subscription was executed 3 days back and sent an Email to the requested person or group?

    Hi All,
    I got complain that one of my reports which was subscribed from SSRS Report Manager could not delivered to targeted people 3 days back. 
    I want to to check that Email was sent or not So I wrote below query but I think table  will be over written on each execution of subscription and cannot see the history. I can see only the latest data.
    SELECT A.NAME,B.Description,B.LastStatus,B.LastRunTime 
    FROM [dbo].[Catalog] A
    INNER JOIN [dbo].[Subscriptions] B ON A.ItemID=B.Report_OID
    WHERE TYPE=2 
    AND NAME='REPORT_NAME'
    AND B.LastStatus LIKE '%EMAIL ID%'
    AND B.LastRunTime>Getdate()-1
    ORDER BY B.LastRunTime
    There is another query which says that report was rendered by SUBSCRIPTION and have no track that Email was sent or not.
    --Query to find out how a report was execute 
    SELECT * FROM EXECUTIONLOG3 
    WHERE REQUESTTYPE='SUBSCRIPTION'
    AND ITEMPATH LIKE '%REPORT NAME'
    ORDER BY TIMESTART DESC
    There is any way to track this?
    https://msdn.microsoft.com/en-us/library/ms159110.aspx
    http://blogs.msdn.com/b/deanka/archive/2009/01/13/diagnosing-and-troubleshooting-subscriptions.aspx
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi S Kumar Dubey,
    According to your description, you want to find the failed subscription report and resent the report to users again.
    In this scenario, you can run the query below to find the failed subscription.
    use ReportServer
    go
    SELECT C.Name, S.LastRunTime, S.LastStatus, S.Description
    FROM Subscriptions AS S
    LEFT OUTER JOIN [Catalog] AS C
    ON C.ItemID = S.Report_OID
    WHERE LEFT (S.LastStatus, 12) != 'Mail sent to'
    AND LEFT (S.LastStatus, 12) != 'New Subscrip'
    Then you can execute the code with jobstep command below to find the corresponding SQL Agent Jobs for failed subscription, then execute the job to send the email again.
    select 'exec sp_start_job @job_name = ''' + cast(j.name as varchar(40)) + ''''
    from msdb.dbo.sysjobs j
    join msdb.dbo.sysjobsteps js on js.job_id = j.job_id
    join [ReportServer].[dbo].[Subscriptions] s on js.command like '%' + cast(s.subscriptionid as varchar(40)) + '%'
    where s.LastStatus like 'Failure sending mail%';
    Reference:
    SSRS Failed Subscription Notifications
    Re-running SSRS subscription jobs that have failed
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to deploy/install SSRS report to server

    I have created a SSRS report which contains .rdl file.
    Now I have a requirement to deploy the report on server. Only I have the Report server URL, username and password.
    How can I deploy my report remotely to that server.
    Need Help.
    Thanks,
    Abhinav

    First
    set the deployment parameters and then right click on Project Solution and click Deploy.
    Below are detailed step by steps:
    http://www.codeproject.com/Articles/194097/SSRS-Series-Part-I-Various-ways-of-Report-creation
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • Report Painter:How to change an existing report parameter to a SELECT optio

    Hi ,
    We have an already existign report, taht exists only in QA, How could we chnage the report such that the existing paramenter period would show up as SELECT option instead of a parameter.
    I have no experience with report painter.
    Thanks,
    Vinotha M

    I do not have any idea about Report painter and So dont know how I could do this.
    Please help with this.
    Also this report now does not exist in the development server.

  • How to Disable Prompt for Command Parameter Vale

    I have a CR that uses an SQL Command for the report query. There is a parameter in the Command Where clause like the following:
    WHERE  type = '{?type}'
    The "type" parameter is also listed in the Command Parameter List. "Type" is also listed as a report parameter in the Field Explorer under Parameter Fields.
    I am sending the value of "type" to the report from an asp.net web form using the following C# in the code behind:
    string strType = "VENDOR";
    crystalReport.SetParameterValue("type", strType);
    My issue is when the report is run, it still prompts the user for type, even though I am sending a value for the type parameter to the report. Is there a way to disable the prompt for a Command Parameter value?
    I am using CR2011 and VS2010Pro.

    Hi,
    Check if you are refreshing the reportobject after setting the parameter values. if yes, comment it.
    Also create a sample applicationwith below code, drop a CR viewer on the design page and see if the issue can be reproduced.
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    using CrystalDecisions.Web;
    public partial class _Default : System.Web.UI.Page
        protected void Page_Load(object sender, EventArgs e)
            ReportDocument rd = new ReportDocument();
           rd.Load(Server.MapPath("Report1.rpt"));
          rd.SetParameterValue("Parameter Name", "value");
         CrystalReportViewer1.ReportSource = rd;
    - Bhushan

  • Allowing Default Values OR typed values in a SSRS Report Parameter

    Hello,
    I'm able to set a parameter while designing a SSRS report to use a list of values or I can chose to specify no values.  In the latter scenario when actually running the report the value can be typed instead of selected.
    What seems impossible is to allow (while running) the user to type a value but also having the option of using default values.   It seems if the options for default or available values are entered with information while designing the report, the ability
    to type values into the report while running it is taken away.

    Hi ebs_software,
    Per my understanding you want to know if there is any method to type the parameter values and also can select a value from the drop down list, right?
    Generally, by default, when you haven't specify the "Available values" you will able to type an value in the parameter input textbox, or you will not able to do this. For the field of "Date/Time" type when you haven't specify the "Available
    values", you can pick up the date from the calendar picker and also can type the value in the textbox.
    Thanks for your understanding!
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • Looking for a way to determine wich Network adapters are truly Wired ethernet.

    I'm Working on a little app that is going to validate that the machine is connected to a wired network before we allow it to start a re-installation of the operating system. Our wireless net works great for installed systems (they do have a machine c

  • Log.0000000001: log file open failed

    I have been seeing an error off and on recently where my app will go along just fine writing to dbxml - and then for no apparent reason, blow up with log.0000000001: log file open failed: No such file or directory PANIC: No such file or directory Whe

  • Reorder Albums in Web Gallery?

    Is there a way to reorder an ALBUM in Web Gallery? In iPhoto you can change how the ALBUMS are ordered/shown (which ones come first). I can't seem to get it to work in Aperture. Shouldn't Aperture get features before iPhoto? thx

  • Java Runtime Environment (JRE) version 1.6 is not supported by this driver"

    Goal: create new ODI install in testlab on single server Installer: ODI newbie Server Software Installed: all 32-bit Windows 2008 sql 2008 JDK 1.6_22 sqljdbc4.jar (downloaded from Microsoft's site) No weblogic server installed Issue: Using ODI Studio

  • Intrastat Declaration for Italy : 2010 Changes

    Hi Experts, I'm aware there are changes required for the Italy Intrastat Delaration report, based on information supplied in SAPnote 1390593. But can anyone point to where the Italian Tax authority actually states that these changes are required for