Expand and Collapse(+/-) option in a Matrix SQL Reporting Services 2008

Hello All,
I am having Expand and Collapse(+/-) option in a Matrix SQL Reporting Services 2008. It's not working when it is havnig a Row Group and Column Group.
Does reporting services has this flexibulity?? It's working fine if it's only have a Row Group an it's not working if it is having Row and a Column Group. Can any one suggest how to work aroung with this.
any help much appriciated.
Thanks & Regards,
Jeevan Dasari.
Dasari

Drill-down feature is a basic requirement, it is concluded in Reporting service from SSRS2000 to SSRS2008 R2, To
your scenario I think the root cause is relevant to your incorrect steps. Please follow the steps below and then give the feedback:
1.     Right-click the child groups in the
Row Groups panel which is at the left-bottom of the BIDS, and then select
Group Properties…
2.   
Switch to Visibility tab, and then select
Hide Radio-button, click the checkbox of Display can be toggled by this report item.
3.   
Then select the parent group datafield in the drop-down list.
4.   
Click OK.
Thanks,
Challen Fu
Challen Fu [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Similar Messages

  • SQL REPORTING SERVICES 2008 R2

    I HAVE THIS QUERY:
    SELECT     DIMENSIONS.DESCRIPTION, HOS_SALEHST.CUSTOMERCLASS, MONTH (HOS_SALEHST.INVOICEDATE) as MONTH,
    YEAR (HOS_SALEHST.INVOICEDATE) as YEAR, HOS_SALEHST.ITEMCLASS, SUM(HOS_SALEHST.QUANTITY) AS QUANTITY, SUM(HOS_SALEHST.NETSALESAMOUNT)
                          AS NETSALESAMOUNT
    FROM         HOS_SALEHST INNER JOIN
                          DIMENSIONS ON HOS_SALEHST.DATAAREAID = DIMENSIONS.DATAAREAID AND HOS_SALEHST.ITEMCLASS = DIMENSIONS.NUM
    WHERE     (HOS_SALEHST.INVOICEDATE >= '1/1/2013') AND (HOS_SALEHST.INVOICEDATE < '4/1/2014') AND (HOS_SALEHST.ITEMCLASS <= 1985) AND
                          (HOS_SALEHST.ITEMCLASS <> '') AND (DIMENSIONS.DIMENSIONCODE = 1) AND ((HOS_SALEHST.COMPANYNUM >= 02 AND
    HOS_SALEHST.COMPANYNUM <= 07 AND
    HOS_SALEHST.CUSTOMERCLASS = 'DS') OR
    (HOS_SALEHST.COMPANYNUM = 01 AND
    HOS_SALEHST.CUSTOMERCLASS <> 'DC'))
    GROUP BY HOS_SALEHST.CUSTOMERCLASS,HOS_SALEHST.ITEMCLASS, DIMENSIONS.DESCRIPTION, MONTH(HOS_SALEHST.INVOICEDATE), YEAR(HOS_SALEHST.INVOICEDATE)
    ORDER BY HOS_SALEHST.ITEMCLASS
    I want to have it where the SALEHST.CUSTOMERCLASS will pull in the lines t that are 'ES' or 'EC' as EXP but all others pull in as they are.
    I tried using the CASE ELSE below but can't get it to work.  Maybe it's not the right approach???
    SELECT     DIMENSIONS.DESCRIPTION, HOS_SALEHST.CUSTOMERCLASS, MONTH (HOS_SALEHST.INVOICEDATE) as MONTH,
    YEAR (HOS_SALEHST.INVOICEDATE) as YEAR, HOS_SALEHST.ITEMCLASS, SUM(HOS_SALEHST.QUANTITY) AS QUANTITY, SUM(HOS_SALEHST.NETSALESAMOUNT)
    AS NETSALESAMOUNT
    FROM         HOS_SALEHST INNER JOIN
    DIMENSIONS ON HOS_SALEHST.DATAAREAID = DIMENSIONS.DATAAREAID AND HOS_SALEHST.ITEMCLASS = DIMENSIONS.NUM
    WHERE     (HOS_SALEHST.INVOICEDATE >= '1/1/2013') AND (HOS_SALEHST.INVOICEDATE < '4/1/2014') AND (HOS_SALEHST.ITEMCLASS <= 1985) AND
    (HOS_SALEHST.ITEMCLASS <> '') AND (DIMENSIONS.DIMENSIONCODE = 1) AND ((HOS_SALEHST.COMPANYNUM >= 02 AND
    HOS_SALEHST.COMPANYNUM <= 07 AND
    HOS_SALEHST.CUSTOMERCLASS = 'DS') OR
    (HOS_SALEHST.COMPANYNUM = 01 AND
    HOS_SALEHST.CUSTOMERCLASS <> 'DC',
    CASE SALEHST.CUSTOMERCLASS
    WHEN 'EC' OR 'ES' THEN 'EXP'
    ELSE 'SALEHST.CUSTOMERCLASS'))
    GROUP BY HOS_SALEHST.CUSTOMERCLASS,HOS_SALEHST.ITEMCLASS, DIMENSIONS.DESCRIPTION, MONTH(HOS_SALEHST.INVOICEDATE), YEAR(HOS_SALEHST.INVOICEDATE)
    ORDER BY HOS_SALEHST.ITEMCLASS
    Really appreciate your help.

    Dominic,
    I really appreciate your help.  I think you understand what I need.  My customer class could be a possibility of six different outcomes but I want of the six outcomes
    for two of them to be joined into one  - the EXP.
    I am getting a syntax error: Incorrect syntax near the keyword 'OR', Incorrect syntax near the keyword 'ELSE', Incorrect syntax near the keyword 'AND', (Microsoft SQL Server,
    Error: 156)
    This is how I have the code now.  Do you see what I have wrong please?
    DECLARE @IsEXP BIT
    SET @IsExp =
            CASE SALEHST.CUSTOMERCLASS
            WHEN 'EC' OR 'ES' THEN 1 --Yes, 'EXP' should be used
            ELSE 0 --No, use the normal value
    IF (@IsExp = 0)
    BEGIN
    SELECT     DIMENSIONS.DESCRIPTION, HOS_SALEHST.CUSTOMERCLASS, MONTH (HOS_SALEHST.INVOICEDATE) as MONTH,
     YEAR (HOS_SALEHST.INVOICEDATE) as YEAR, HOS_SALEHST.ITEMCLASS, SUM(HOS_SALEHST.QUANTITY) AS QUANTITY, SUM(HOS_SALEHST.NETSALESAMOUNT)
                           AS NETSALESAMOUNT
    FROM         HOS_SALEHST INNER JOIN
                           DIMENSIONS ON HOS_SALEHST.DATAAREAID = DIMENSIONS.DATAAREAID
    AND HOS_SALEHST.ITEMCLASS = DIMENSIONS.NUM
    WHERE     (HOS_SALEHST.INVOICEDATE >= '1/1/2013') AND (HOS_SALEHST.INVOICEDATE < '4/1/2014') AND (HOS_SALEHST.ITEMCLASS <= 1985) AND
                           (HOS_SALEHST.ITEMCLASS <> '')
    AND (DIMENSIONS.DIMENSIONCODE = 1) AND ((HOS_SALEHST.COMPANYNUM >= 02 AND
     HOS_SALEHST.COMPANYNUM <= 07 AND
    HOS_SALEHST.CUSTOMERCLASS = 'DS') OR
    (HOS_SALEHST.COMPANYNUM = 01 AND
    HOS_SALEHST.CUSTOMERCLASS <> 'DC'))
    GROUP BY HOS_SALEHST.CUSTOMERCLASS,HOS_SALEHST.ITEMCLASS, DIMENSIONS.DESCRIPTION, MONTH(HOS_SALEHST.INVOICEDATE), YEAR(HOS_SALEHST.INVOICEDATE)
    ORDER BY HOS_SALEHST.ITEMCLASS
    ELSE IF (@IsExp = 1)
    SELECT     DIMENSIONS.DESCRIPTION, HOS_SALEHST.CUSTOMERCLASS, MONTH (HOS_SALEHST.INVOICEDATE) as MONTH,
     YEAR (HOS_SALEHST.INVOICEDATE) as YEAR, HOS_SALEHST.ITEMCLASS, SUM(HOS_SALEHST.QUANTITY) AS QUANTITY, SUM(HOS_SALEHST.NETSALESAMOUNT)
                           AS NETSALESAMOUNT
    FROM         HOS_SALEHST INNER JOIN
                           DIMENSIONS ON HOS_SALEHST.DATAAREAID = DIMENSIONS.DATAAREAID
    AND HOS_SALEHST.ITEMCLASS = DIMENSIONS.NUM
    WHERE     (HOS_SALEHST.INVOICEDATE >= '1/1/2013') AND (HOS_SALEHST.INVOICEDATE < '4/1/2014') AND (HOS_SALEHST.ITEMCLASS <= 1985) AND
                           (HOS_SALEHST.ITEMCLASS <> '')
    AND (DIMENSIONS.DIMENSIONCODE = 1) AND ((HOS_SALEHST.COMPANYNUM >= 02 AND
     HOS_SALEHST.COMPANYNUM <= 07 AND
    HOS_SALEHST.CUSTOMERCLASS = 'DS') OR
    (HOS_SALEHST.COMPANYNUM = 01 AND
    HOS_SALEHST.CUSTOMERCLASS <> 'DC'))
    GROUP BY HOS_SALEHST.CUSTOMERCLASS,HOS_SALEHST.ITEMCLASS, DIMENSIONS.DESCRIPTION, MONTH(HOS_SALEHST.INVOICEDATE), YEAR(HOS_SALEHST.INVOICEDATE)
    ORDER BY HOS_SALEHST.ITEMCLASS AND
                    HOS_SALESHST.CUSTOMERCLASS<>'EXP'
    END
    DECLARE @IsEXP BIT
    SET @IsExp =
            CASE SALEHST.CUSTOMERCLASS
            WHEN 'EC' OR 'ES' THEN 1 --Yes, 'EXP' should be used
            ELSE 0 --No, use the normal value
    IF (@IsExp = 0)
    BEGIN
    SELECT     DIMENSIONS.DESCRIPTION, HOS_SALEHST.CUSTOMERCLASS, MONTH (HOS_SALEHST.INVOICEDATE) as MONTH,
     YEAR (HOS_SALEHST.INVOICEDATE) as YEAR, HOS_SALEHST.ITEMCLASS, SUM(HOS_SALEHST.QUANTITY) AS QUANTITY, SUM(HOS_SALEHST.NETSALESAMOUNT)
                           AS NETSALESAMOUNT
    FROM         HOS_SALEHST INNER JOIN
                           DIMENSIONS ON HOS_SALEHST.DATAAREAID = DIMENSIONS.DATAAREAID
    AND HOS_SALEHST.ITEMCLASS = DIMENSIONS.NUM
    WHERE     (HOS_SALEHST.INVOICEDATE >= '1/1/2013') AND (HOS_SALEHST.INVOICEDATE < '4/1/2014') AND (HOS_SALEHST.ITEMCLASS <= 1985) AND
                           (HOS_SALEHST.ITEMCLASS <> '')
    AND (DIMENSIONS.DIMENSIONCODE = 1) AND ((HOS_SALEHST.COMPANYNUM >= 02 AND
     HOS_SALEHST.COMPANYNUM <= 07 AND
    HOS_SALEHST.CUSTOMERCLASS = 'DS') OR
    (HOS_SALEHST.COMPANYNUM = 01 AND
    HOS_SALEHST.CUSTOMERCLASS <> 'DC'))
    GROUP BY HOS_SALEHST.CUSTOMERCLASS,HOS_SALEHST.ITEMCLASS, DIMENSIONS.DESCRIPTION, MONTH(HOS_SALEHST.INVOICEDATE), YEAR(HOS_SALEHST.INVOICEDATE)
    ORDER BY HOS_SALEHST.ITEMCLASS
    ELSE IF (@IsExp = 1)
    SELECT     DIMENSIONS.DESCRIPTION, HOS_SALEHST.CUSTOMERCLASS, MONTH (HOS_SALEHST.INVOICEDATE) as MONTH,
     YEAR (HOS_SALEHST.INVOICEDATE) as YEAR, HOS_SALEHST.ITEMCLASS, SUM(HOS_SALEHST.QUANTITY) AS QUANTITY, SUM(HOS_SALEHST.NETSALESAMOUNT)
                           AS NETSALESAMOUNT
    FROM         HOS_SALEHST INNER JOIN
                           DIMENSIONS ON HOS_SALEHST.DATAAREAID = DIMENSIONS.DATAAREAID
    AND HOS_SALEHST.ITEMCLASS = DIMENSIONS.NUM
    WHERE     (HOS_SALEHST.INVOICEDATE >= '1/1/2013') AND (HOS_SALEHST.INVOICEDATE < '4/1/2014') AND (HOS_SALEHST.ITEMCLASS <= 1985) AND
                           (HOS_SALEHST.ITEMCLASS <> '')
    AND (DIMENSIONS.DIMENSIONCODE = 1) AND ((HOS_SALEHST.COMPANYNUM >= 02 AND
     HOS_SALEHST.COMPANYNUM <= 07 AND
    HOS_SALEHST.CUSTOMERCLASS = 'DS') OR
    (HOS_SALEHST.COMPANYNUM = 01 AND
    HOS_SALEHST.CUSTOMERCLASS <> 'DC'))
    GROUP BY HOS_SALEHST.CUSTOMERCLASS,HOS_SALEHST.ITEMCLASS, DIMENSIONS.DESCRIPTION, MONTH(HOS_SALEHST.INVOICEDATE), YEAR(HOS_SALEHST.INVOICEDATE)
    ORDER BY HOS_SALEHST.ITEMCLASS AND
                    HOS_SALESHST.CUSTOMERCLASS<>'EXP'
    END
    Thanks a ton!
    Tracy

  • SQL Reporting Services 2014, Enabling Kerberos causes report manager to be extremely slow

    We are migrating our environment from SQL Reporting Services 2008 to 2014 on a new server. We are currently using kerberos on the 2008 instance, but when I enable kerberos on the 2014 Reporting Services instance the Report Manager becomes extremely slow.
    Has anyone seen this before? Any ideas of what I can check to see what is causing this problem.

    Just to clarify it is not slow when I run a report, it is slow in general. From first load to accessing a folder, settings, etc. This is all before even executing a report. 
    The error I see while using Wireshark is KRB Error: KRB5KDC_ERR_BADOPTION NT Status: STATUS_NO_MATCH. When I drill down the into the
    error I can see the kerberos string is testprjmnmtreports14.company.com, which is the URL we are using to access the site. I made sure to add that name as an SPN for the service account that is running SQL Reporting Services, however I still receive the error.
    Then I tried configuring the site to run without a hostheader, so I accessed the site with the server name ECTSTSQLRS5 and the site works perfectly fine, no errors are reported either. So it seems I have isolated the issue down to Kerberos but I am not sure
    how to resolve it. Here is some more information about my environment:
    DNS/URL used: testprjmnmtreports14.company.com
    Server Name (FQDN): ECTSTSQLRS5.company.int
    AD Domain Name: company.int
    Server Version: Windows Server 2012 R2
    AD Functional Level: 2008 R2
    I also have the following SPNs set for my SQL service account:
    http/testprjmngmtreports14.company.com
    http/testprjmngmtreports14
    http/ECTSTSQLRS5.COMPANY.INT
    http/ECTSTSQLRS5
    As you can see I am trying to use a .com address but my AD domain is .int which I think is the issue, but I do not have the same problem on my other server that is running Windows Server 2008 R2. 

  • Adding a link to expand and collapse all DHTML drop downs

    Hi, can anyone help me adapt the "Skinny on Skins" example "Add a Toolbar button to expand and collapse all DHTML drop downs" so that it will work with just a simple HTML link in RH8, instead of being attached to a custom skin button?
    The example looks like this:
    Step 1. Open the Skins Editor for the skin where you want to add the button.
    Step 2. After the preview loads into the window, ensure that the Toolbar tab has focus, then click the plus symbol. The Custom Toolbar Item dialog should display.
    Step 3. Type the Item Name (This is simply an internal reference for the button).
    Step 4. Type the Text (This is the text that will be seen by the end user. The field must contain something. So if you don't want any verbiage to display for your toolbar item, simply type a space.)
    Step 5. Choose your Image Options, then click the Action tab.
    Step 6. Click the JavaScript option button.
    Step 7. Enter the following code in the OnClick field:
    javascript:toggle()
    Step 8. In the JavaScript area, ensure the Inline JavaScript option button is selected, then click the edit (Pencil) icon located to the right.
    Step 9. Enter the following code in the Inline JavaScript dialog
    var show = "false";
    function toggle() {
    parent.frames[1].bsscright.focus();
    var arrayofDivs = parent.frames[1].bsscright.document.all.tags('DIV');
    if (show == "false") {
    for (x=0;x<arrayofDivs.length;x++) { arrayofDivs[x].style.display = "block";}
    show = "true";}
    else {
    for (x=0;x<arrayofDivs.length;x++) { arrayofDivs[x].style.display = "none"; }
    show = "false"; }
    Step 10. Click the OK button to close the Inline JavaScript dialog.
    Step 11. Click the OK button to close the Custom Toolbar Item dialog.
    Step 12. Click the OK button to close the Skin Editor.
    Step 13. Generate WebHelp via File > Generate > WebHelp and ensure that you have the new button selected with a check mark. This will probably require stepping through some screens to see the place where you can select it.
    Many thanks
    Jonathan

    Hi again
    I want to use it in the header of one of my Master Pages, so it will only be created/maintained once. Not all my pages have drop downs in so rather than have a toolbar button available for every page, I was trying to be a bit cuter by having two Master Pages - one for normal pages and one for pages with drop downs in.
    I'm no javascript expert so I'll see if one of my developers can help.
    Thanks anyway
    Jonathan

  • How to perform expand and collapse operation on click of link or button

    Hi
    Is there anyway by which i can perform expand and collapse operation over a table on click of a command link or button without using show details component.
    Is there any other alternative to show detail.
    I do not want to use show detail because of the following reason.
    I have got a page where in i pass some parameters to the URL based on which details get displayed on the page.
    Now when i pass a parameter, change the parameter, once again send the previously used parameter(i,e the parameter that i passed initially), values in the table under show detail do not show any change in values.
    Once i pass values which i have already passed, values in the table under show detail component do not refreshed.
    If anyone has encountered with similar situation, then please post me reply's as to how you could over come the problem??

    Hi
    Perhaps you could use an on-demand application process instead - you can specify these in the URL.
    The URL syntax (for your link) would be like...
    f?p=application_id:page_id:session:APPLICATION_PROCESS=process_idIs this what you mean?
    Cheers
    Ben

  • Trying to override the default af:tree expanded and collapsed icons

    Hi,
    I initially hijacked a thread from 2010 that was vaguely similar to what I need to ask, but a kind forum moderator split my post out to stand on its own merits.
    I am trying to override the default af:tree expanded and collapsed icons I am using the following styles for my af:tree but they are not reflecting any thing on my tree with the styleclass orgType.
    af|tree.orgType::expanded-icon {
    content: url("../images/ac-expand.png");
    cursor: default;
    af|tree.orgType::collapsed-icon {
    content: url("../images/ac-collapsed.png");
    cursor: default;
    af|tree::expanded-icon {
    content: url("../images/folder_open.png");
    cursor: default;
    af|tree::collapsed-icon {
    content: url("../images/folder_close.png");
    cursor: default;
    After working for long hours I realized that there is some problem with af:tree and treeTable. They are not taking the styles where as for the other components, every thing works fine. Is there any way to achieve the task. Could you suggest any alternative way to do this. Thanks in advance. Your suggestions for this task can really help me and my team a lot.
    Regards,
    Krishna Sumanth.

    Hi,
    do the icons show without the style class reference used in the skin file? If so, then the style class for this component might be rendered differently for the tree, e.g.
    .orgType af|tree ...
    Frank

  • Can please tell me how to implement expand and collapse table row data?

    i am trying implement expand and collapse table row data but i do not get any ideas..can please any one help me its an urgent requirement

    Yes, we can.   
    I think the best place for you to start for this is the NI Developer Zone.  I recommend beginning with these tutorials I found by searching on "data log rio".  There were more than just these few that might be relevant to your project but I'll leave that for you to decide.
    NI Compact RIO Setup and Services ->  http://zone.ni.com/devzone/cda/tut/p/id/11394
    Getting Started with CompactRIO - Logging Data to Disk  ->  http://zone.ni.com/devzone/cda/tut/p/id/11198
    Getting Started with CompactRIO - Performing Basic Control ->  http://zone.ni.com/devzone/cda/tut/p/id/11197
    These will probably give you links to more topics/tutorials/examples that can help you design and implement your target system.
    Jason
    Wire Warrior
    Behold the power of LabVIEW as my army of Roomba minions streaks across the floor!

  • Expand and collapse button in maintenance view

    hi all,
               i want help for functionality of expand and collapse buttons present there in maintenance view. delimit button is also there what is the functionality for these buttons.
    u ppl can see these buttons while enetering values in standarad maintenance view V_T510
    my requirement is to create same buttons and their working in user defined maintenance view.

    Hi Chavi,
    check the PDF document
    Module Poolo tuorials
    regs,
    Hema sundar.

  • How to expand and collapse af:showDetailItem in keyboard Tab navigation

    i would like  to expand and collapse <af:showDetailItem/> by keyboard  tab navigation. is there any default functionality is available to achieve it.
    Thanks

    Hi,
    can you try with below config in your web.xml. It specifies where to store the view state of your application
    <context-param>
          <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
          <param-value>client</param-value>
       </context-param>regards,
    Rajan

  • Drill down expand and collapse feature not available  Crystal Reports Desig

    Hi,
    Am I right in my understanding that drill down feature opens in a new tab and it cannot be made expand and collapse even using JRC.
    Please advise & thank you
    Selvi

    Hi Slevi,
    You are right with the understanding of the Drill down function. To have a drill down function available the minimum requirement is have at least a single group in the report.
    When we have a group with some underlying data and then when we would like to see data for a particular group, we can see a u201Cmagnifying glassu201D symbol which indicates that there is data for this group and we can use the Drill down function.
    When you drill on a particular group, the data for that group is shown in a new tab.
    I hope this provides some information about the Drill down function used in Crystal Reports.
    Regards,
    Prashant Saduwale.

  • How to create labeled table of Content with expand and collapse

    Hi All,
    Can somebody help me how to create labeled table of Content with expand and collapse as example given below:
    User1
    Template1
    Template2
    User2
    +
    User3
    Template1
    Template2
    Like when we see expand (+) and collapse (-) button when we click on 'about this page' link.
    Thanks
    Bhupendra

    Hi,
    Tou can use Table inside table to show the details this way but I'm not sure about Expand/Collapse.
    Expand/Collapse are part of HGRID.
    I think we can develop this functionality with little manipulation.
    Regards,
    Reetesh Sharma
    Edited by: Reetesh Sharma on Jun 28, 2010 4:56 AM

  • Is it possible to make the TOC expand and collapse icons larger?

    OR to have the TOC expanding and collapsing by usage of a self made buttons?

    You can use graphics that are slightly taller, but not wider.
    If you go to this page and take a look at the example named Supply Chain Management, you will see that I have used a different TOC expand image that is slightly taller:
    http://www.infosemantics.com.au/portfolio
    I had originally tried to use a larger image but it appears that Captivate limits the width.
    You can use the On Success action of a button to assign the value of the cpCmndTOCVisible system variable to 1 or 0 to open or close the TOC.  You can create a toggle action using a Standard or Conditional action to make the same button alternately open or close the TOC each time it is clicked.

  • Expandable lists that expand and collapse with one click and edit in wysiwyg

    I have a lot of text based lists on one page, so I threw them into content editor web parts so i can expand / minimize the lists. However, two clicks (one on the arrow and then one on "restore") is becoming really tiresome. How can I make expandable
    lists that expand and collapse with one click? AND they are still editable from the wysiwyg browser editing tool?
    I have already tried using Jquery to create expandable content, but the problem here is that the content can't be edited in the wysiwyg browser based editor - the expand or collapse button doesn't "work" when you are in the edit mode, so you can never
    see the expandable content to edit. I can change the content in the code but it's no good if my non-coder co-workers can't also edit it.
    I am in 2010.

    I just found the answer myself here: blog (.) pathtosharepoint.com/2008/10/25/expandcollapse-buttons-for-your-web-parts/
    Worked perfectly. Allows open and close of CEWP with one click, and you can still edit their content in the wysiwyg editor.

  • SAP and SQL Reporting Services.

    Hi,
    I'm trying to implement a few reports using MS SQL Reporting Services.  I don't think that SAP (we are currently on 4.6C, and BW is not an option for now) has anything nearly as cool.  The problem is that SQL RS can only create queries against ODBC and OleDB providers.  One of the solutions would be to create a view in SAP DB and query against it, but the logic behind is just too complicated for a view that you can create in SAP.  Is there another way that I can interface SAP real time to SQL RS?  Anyone had experience with that, or is there a solution from SAP with similar capabilities?
    Thanks,
    Leon

    Hi Leon,
    maybe you can use the SAP.NET Connector and save the results in SQL-SERVER-Tables or use the OLEDB Provider for SAP from NSX software.
    Greetings,
    Andreas Rohr

  • Workflows 2013 and SQL Report Services: Configure on Independent Servers or Existing App Servers?

    Currently, my SharePoint 2013 Farm has Workflows 2013 and SQL Report Services installed on app servers, along with other applications. Workflows 2013 isn't working correctly (installed prior to my coming on board with the organization), I'm assuming it
    is a configuration issue, but rather than re-configure, I've read that is recommended to be a standalone server. It was also recommended by a MSFT rep that our report services have its own independent server. Currently, Report Services is also installed on
    an app server that runs other applications on the farm.
    Has anyone had any experience with installing Workflows 2013 and/or SQL Report Services on independent vs. existing application servers?
    Additionally, my existing application servers have 24 GB of RAM (I believe the recommendation for SharePoint production environments is 12 GB), should I plan for the potentially new servers (Workflows and Report Services) to also have 24 GB of RAM? Not really
    sure if it will be needed if they have dedicated tasks.
    Thanks for any input you can provide!

    It entirely depends on load. WFM will work just fine installed on servers in the SharePoint farm. SSRS preferably should go on the end-user facing servers for better performance.
    The questions you're asking are all "it depends" :)
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • PR, PO, GR for a consumable material without material master record

    Hi, I have created a complete cylcle till Invoice Verification for a material without a material master record. But i have one query i.e. in the cylce i created i had to create a GR before entering MIRO.  Is there any way by which i need not create a

  • Using my computer for an on-demand service

    Hello guys, how you doing tonight?  I got a couple questions if you dont' mind me asking. I've been thinking about using my computer basically as television for a movie on-demand service.  Currently my computer monitor is better that my tv for watchi

  • How to turn off SOA validation in JDev 11.1.1.5

    Right now whenever I open a composite.xml file for a SOA project in JDev, it takes a long time because it's validating to make sure the endpoints are valid. I know they are not valid because the endpoints are not running. I just want to see the sourc

  • Eclipse for  solaris 10

    hi guys i need to run eclipse on solaris 10 any help on step by step, i am new in solaris but i am a java programmer.

  • "Foreign" text in Safari after latest security update

    After reading several posts, I've tried all suggestions, but still get wierd-looking type (maybe Russian), which is also compressed and unlegible. I've tried: reloading Safari, throwing away Safari preference, removing Times Phonetic and Helvetica Fr