Create subscriptions for Powerview reports like SSRS reports in SharePoint 2010

Hi,
I have created the power view reports in SharePoint 2010 and now I want to create an email subscription for Powerview reports like SSRS reports in SharePoint 2010. Is it possible? If not, is there any workaround?
Thanks,
Suresh.

Hi Suresh: 
Unfortunately, you can't setup subscriptions in PowerView like you can on SSRS. I would suggest you to open up a connect item here and request for this feature - http://connect.microsoft.com/SQLServer
Hope this helps.
Faisal Muhammed My Blog

Similar Messages

  • Possibility to create subscription for IR Graph.

    Hi All,
    Subscription is a very nice feature that Apex came up with version 4.
    But what is missing is that we can only create subscription for IR Reports.
    Is there anyone knows a possibility to create a subscription for a IR graph?
    And also is there a possibility to create subscription that produces an HTML same as IR report layout? (Coloring, Grouping etc.)
    Thanks,
    Osman.

    Aline,
    One option is changing the properties of the key figure from 'Always Show' to "Hide can be Shown'. This will let the user select the required key figures to display after executing the report. In this case you can hide all the key figures and give the option of selecting the required keyfigures for display after executing the report.
    Second option is to use a text variable and derive a mechanism of displaying the key figures for what the user selects. This is a bit tedious process. I would recommend you to go for the above said option. and still if you want the other mechanism to work I will give it you, but need sometime to detail that.
    Hope this helps you.........

  • How to design Customized ALV report like normal report !

    Hello Friends,
                  I like to design a ALV report, with sub headers, sub totals, summary total and other summary details like percentage sale, which is not relavent to the fields displayed in the ALV.
    I know it is possible to get total of the displayed field, but is it possible to design flexible ALV report like normal report.
    Could U please provide example code, if available.
    Thank you,
    Senthil

    HI,
    Just check this example.
    REPORT  ZLAXMI_ALVEXER2  MESSAGE-ID ZZ                       .
    *& TABLES DECLARATION                                                  *
    TABLES: VBAK.
    *& TYPE POOLS DECLARATION                                              *
    TYPE-POOLS: SLIS.
    *& INTERNAL TABLE DECLARATION                                          *
    DATA: BEGIN OF ITAB OCCURS 0,
           ICON TYPE ICON-ID,
           VBELN LIKE VBAK-VBELN,
           AUDAT LIKE VBAK-AUDAT,
           VBTYP LIKE VBAK-VBTYP,
           AUART LIKE VBAK-AUART,
           AUGRU LIKE VBAK-AUGRU,
           NETWR LIKE VBAK-NETWR,
           WAERK LIKE VBAK-WAERK,
        END OF ITAB.
    *INTERNAL TABLE FOR FIELD CATALOG
    DATA: WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
        IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    IT_FIELDCAT TYPE STANDARD TABLE OF SLIS_FIELDCAT_ALV
               WITH HEADER LINE,
    *INTERNAL TABLE FOR EVENTS
    DATA:    IT_EVENT TYPE SLIS_T_EVENT,
          WA_EVENT TYPE SLIS_ALV_EVENT,
    *INTERNAL TABLE FOR SORTING
          IT_SORT TYPE SLIS_T_SORTINFO_ALV,
          WA_SORT TYPE SLIS_SORTINFO_ALV,
    *INTERNAL TABLE FOR LAYOUT
          WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    *& VARIABLE DECLARATION                                                *
    DATA : V_REPID TYPE SY-REPID,
           V_PAGNO(4) TYPE N,
           V_DATE(8)  TYPE C.
    *& CONSTANTS                                                           *
    CONSTANTS: C_X TYPE C VALUE 'X'.
    *& SELECTION SCREEN                                                    *
    SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN,
                    S_VBTYP FOR VBAK-VBTYP DEFAULT 'C'.
    SELECTION-SCREEN: END OF BLOCK B1.
    SELECTION-SCREEN: BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    SELECTION-SCREEN : BEGIN OF LINE.
    SELECTION-SCREEN  COMMENT 1(20) TEXT-003.
    PARAMETERS: P_LIST RADIOBUTTON GROUP RAD1 DEFAULT 'X'.
    SELECTION-SCREEN : END OF LINE.
    SELECTION-SCREEN : BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20) TEXT-004.
    PARAMETERS: P_GRID RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN : END OF LINE.
    SELECTION-SCREEN: END OF BLOCK B2.
    AT SELECTION-SCREEN.
      PERFORM VALIDATE_SCREEN.
    *& START OF SELECTION                                               *
    START-OF-SELECTION.
      CLEAR: ITAB, ITAB[].
    V_REPID = SY-REPID.
      PERFORM GET_DATA.
      PERFORM DISPLAY_DATA.
    *& END OF SELECTION                                                    *
    END-OF-SELECTION.
    *--DO ALV Process
      V_REPID = SY-REPID.
    *--Sort the Output Fields
      PERFORM SORT_FIELDS.
    *--Build Field catalog for the Output fields
    PERFORM BUILD_FIELDCAT.
    *--Set the Layout for ALV
      PERFORM SET_LAYOUT.
    *&      Form  GET_DATA
          text
    TO GET THE DATA FROM TABLES INTO ITAB
    FORM GET_DATA .
      SELECT VBELN
             AUDAT
             VBTYP
             AUART
             AUGRU
             NETWR
             WAERK
             INTO CORRESPONDING FIELDS OF TABLE ITAB
             FROM VBAK
             WHERE VBELN IN S_VBELN AND
             AUDAT > '04.04.2005'
             AND NETWR > 0.
      LOOP AT ITAB.
        IF ITAB-NETWR < 10000.
          ITAB-ICON = '@08@'.
        ELSEIF ITAB-NETWR > 10000 AND ITAB-NETWR < 100000.
          ITAB-ICON = '@09@'.
        ELSEIF ITAB-NETWR > 100000.
          ITAB-ICON = '@0A@'.
        ENDIF.
        MODIFY ITAB INDEX SY-TABIX.
      ENDLOOP.
    ENDFORM.                    " GET_DATA
    *&      Form  sort_fields
    FORM SORT_FIELDS .
      CLEAR WA_SORT.
      WA_SORT-FIELDNAME = 'VBTYP'.
      WA_SORT-SPOS = '1'.
      WA_SORT-UP = 'X'.
      APPEND WA_SORT TO IT_SORT.
      CLEAR WA_SORT.
      WA_SORT-FIELDNAME = 'NETWR'.
      WA_SORT-SPOS = '2'.
      WA_SORT-UP = 'X'.
      WA_SORT-SUBTOT = 'X'.
      APPEND WA_SORT TO IT_SORT.
    ENDFORM.                    " sort_fields
    *&      Form  build_fieldcat
    *FORM BUILD_FIELDCAT .
    IT_FIELDCAT-COL_POS    = '1'.
    IT_FIELDCAT-FIELDNAME  = 'ICON'.
    IT_FIELDCAT-KEY        = 'X'.
    IT_FIELDCAT-OUTPUTLEN  = '10'.
    IT_FIELDCAT-SELTEXT_L  = 'LIGHT'.
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '2'.
    IT_FIELDCAT-FIELDNAME  = 'VBELN'.
    IT_FIELDCAT-KEY        = 'X'.
    IT_FIELDCAT-OUTPUTLEN  = '10'.
    IT_FIELDCAT-SELTEXT_L  = 'SALES DOC NUMBER'(009).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '3'.
    IT_FIELDCAT-FIELDNAME  = 'AUDAT'.
    IT_FIELDCAT-KEY        = 'X'.
    IT_FIELDCAT-OUTPUTLEN  = '4'.
    IT_FIELDCAT-SELTEXT_L  = 'DOCUMENT DATE'(010).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '4'.
    IT_FIELDCAT-FIELDNAME  = 'VBTYP'.
    IT_FIELDCAT-KEY        = 'X'.
    IT_FIELDCAT-OUTPUTLEN  = '4'.
    IT_FIELDCAT-SELTEXT_L  = 'CATEGORY'(011).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '5'.
    IT_FIELDCAT-FIELDNAME  = 'AUART'.
    IT_FIELDCAT-OUTPUTLEN  = '4'.
    IT_FIELDCAT-SELTEXT_L  = 'DOCUMENT TYPE'(012).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '6'.
    IT_FIELDCAT-FIELDNAME  = 'AUGRU'.
    IT_FIELDCAT-OUTPUTLEN  = '12'.
    IT_FIELDCAT-SELTEXT_L  = 'Order reason'(013).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '7'.
    IT_FIELDCAT-FIELDNAME  = 'NETWR'.
    IT_FIELDCAT-OUTPUTLEN  = '12'.
    IT_FIELDCAT-SELTEXT_L  = 'NET VALUE'(014).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    IT_FIELDCAT-COL_POS    = '8'.
    IT_FIELDCAT-FIELDNAME  = 'WAERK'.
    IT_FIELDCAT-OUTPUTLEN  = '12'.
    IT_FIELDCAT-SELTEXT_L  = 'SD DOC CURR'(015).
    APPEND IT_FIELDCAT.
    CLEAR  IT_FIELDCAT.
    *ENDFORM.                    " build_fieldcat
    *&      Form  set_layout
    FORM SET_LAYOUT .
      IF P_LIST = C_X .
        WA_LAYOUT-WINDOW_TITLEBAR = 'LIST DISPLAY'(016).
        WA_LAYOUT-ZEBRA = 'X'.
    *-- ALV LIST DISPLAY
        PERFORM LIST_DISPLAY TABLES ITAB.
    *-- ALV GRID DISPLAY
      ELSEIF P_GRID = C_X.
        WA_LAYOUT-WINDOW_TITLEBAR = 'GRID DISPLAY'(017).
        WA_LAYOUT-ZEBRA = 'X'.
        PERFORM GRID_DISPLAY TABLES ITAB.
      ENDIF.
    ENDFORM.                    " set_layout
    *&      Form  list_display
    FORM LIST_DISPLAY  TABLES   P_ITAB .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = V_REPID
          IS_LAYOUT          = WA_LAYOUT
          IT_FIELDCAT        = IT_FIELDCAT[]
          IT_SORT            = IT_SORT[]
          I_SAVE             = 'U'
        TABLES
          T_OUTTAB           = ITAB
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " list_display
    *&      Form  GRID_DISPLAY
    FORM GRID_DISPLAY  TABLES   P_ITAB .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = V_REPID
          IS_LAYOUT          = WA_LAYOUT
          IT_FIELDCAT        = IT_FIELDCAT[]
          IT_SORT            = IT_SORT[]
          IT_EVENTS          = IT_EVENT
        TABLES
          T_OUTTAB           = ITAB
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " GRID_DISPLAY
    *&      Form  VALIDATE_SCREEN
          text
    -->  p1        text
    <--  p2        text
    FORM VALIDATE_SCREEN .
      DATA: LV_VBELN LIKE VBAK-VBELN.
      IF NOT S_VBELN IS INITIAL.
        SELECT VBELN
        INTO LV_VBELN
        UP TO 1 ROWS
        FROM VBAK
        WHERE VBELN IN S_VBELN.
        ENDSELECT.
        IF SY-SUBRC <> 0.
          MESSAGE E000 WITH 'INVALID SALES DOC'.
        ENDIF.
      ENDIF.
    ENDFORM.                    " VALIDATE_SCREEN
    *&      Form  display_data
          text
    -->  p1        text
    <--  p2        text
    FORM DISPLAY_DATA .
      DEFINE M_FIELDCAT.
        ADD 1 TO WA_FIELDCAT-COL_POS.
        WA_FIELDCAT-FIELDNAME   = &1.
        WA_FIELDCAT-REF_TABNAME = 'VBAK'.
        WA_FIELDCAT-DO_SUM      = &2.
        WA_FIELDCAT-CFIELDNAME  = &3.
        APPEND WA_FIELDCAT TO IT_FIELDCAT.
      END-OF-DEFINITION.
    DATA:
        LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
        LT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
      M_FIELDCAT 'ICON' ''  ''.
      M_FIELDCAT 'VBELN' ''  ''.
      M_FIELDCAT 'AUDAT' ''  ''.
      M_FIELDCAT 'VBTYP' ''  ''.
      M_FIELDCAT 'AUART' ''  ''.
      M_FIELDCAT 'AUGRU' ''  ''.
      M_FIELDCAT 'NETWR' 'C' 'WAERK'.
      M_FIELDCAT 'WAERK' ''  ''.
    ENDFORM.                    " display_data
    Regards
    Laxmi

  • Create an InfoPath Form to Auto Populate Data in SharePoint 2010

    In Anne Stenberg's Blog from 2 Nov 2011 3:00 PM "How to Create an InfoPath Form to Auto Populate Data in SharePoint 2010" she artfully steps through how to create an InfoPath Form to Auto Populate Data. It works but... Jason, another user, 
    wrote whenever the form is opened again either to view or edit, it displays the current users information instead of the value of the person who completed the form in the first place.
    Anne's response was "Hi Jason - I had forgotten I had that problem, too. Change the Form Load rule's condition to
    DisplayName is blank and that should work."
    My problem is I can't find anything other than AccountName in "Select a Field or Group" [GetUserProfileByName (Secondary)] to use in the Condition statement that will correct the problem.
    Any help will be very appreciated.
    Thanks,
    Joe

    Hi Joe,
    I recommend to add one more condition in Form Load to make the form not be populated with current user’s information (You can change Title to another column which should not be blank when users create a new item).
    Best regards,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Is it possible to create a Event Reciver program as Sandbox solution? - SharePoint 2010

    Dear All,
    I try to create a Event receiver program as SandBox solution in SharePoint 2010. I want to do a list item updation using this event receiver.
    Almost all the internet help & examples seems to be written with Farm solution and I got plenty of
    errors in the code(since the code may be written for farm solutions).
    So is it good idea that I am trying to do Sandbox Event Receiver???? Can any one please advice me
    and if sandbox is feasible can anyone help me with a tutorial( How to create a sandbox event receiver for list item updation).
    Somebody please help me soon.

    Dear All,
    hen I run the project, I got this error
    There were deployment errors? do you want to continue. I pressed No button but
    I cannot see any error list below in visual studio 2010!!! I am not able to
    identify where is the error or rectify those error, somebody please help me soon.
    I try to create one event receiver for list updation. I selected Event Receiver template
    while created new project and added following code for debugging, debugger is not hitting!!!
    please note my code below. Am I missing anything?????
    EventReceiver1.cs
    using Microsoft.SharePoint.Security;
    using Microsoft.SharePoint.Utilities;
    using Microsoft.SharePoint.Workflow;
    namespace NewProjEventReceiver.EventReceiver1
        /// <summary>
        /// List Item Events
        /// </summary>
        public class EventReceiver1 : SPItemEventReceiver
            static void Main(string[] args)
           /// <summary>
           /// An item is being added.
           /// </summary>
           public override void ItemAdding(SPItemEventProperties properties)
               base.ItemAdding(properties);
           /// <summary>
           /// An item is being updated
           /// </summary>
           public override void ItemUpdating(SPItemEventProperties properties)
               base.ItemUpdating(properties);
               SPListItem CurrentItem = properties.ListItem;
               String strCustomer = CurrentItem["SampleList"].ToString();
               int startPos = 0;
               int endPos = CurrentItem["SampleList"].ToString().IndexOf(";#");
               int Cust_ID = Convert.ToInt32(strCustomer.Substring(startPos, endPos));
               SPWeb oWeb = properties.Web;
               SPList oList = oWeb.Lists["SampleList"];
               SPListItem Customers = oList.GetItemById(First_ID);
               CurrentItem["Title"] = "One Time";
               oWeb.AllowUnsafeUpdates = true;
               oWeb.Update();
               oWeb.AllowUnsafeUpdates = false;

  • Spam - someone is using a forms central form for phishing - would like to report it for removal.

    I just received a phishing e-mail and someone is using a forms central form to record information.  I would like to report it so that it can be evaluated for removal.

    To report Spam please use the Report Abuse link that is below the form in question.  This way we know which form it is and take the appropriate actions.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Ranking for Row grouping in SSRS report

    Hi,
    I want to display data in following format in ssrs report. 
    Rank Group  Value
    1        G1      10
    2        G1      20
    3        G1      30
    4        G1      40
    1        G2      25
    2        G2      54
    3        G2      64
    I tried row count and other ranking functions but it did not working.
    Please help.
    Thanks,
    Vivek Singh

    Hi,
    You can Try Rank  , Dense Rank and Row Number Based on Your Requirements.
    Because these three having Different functionality
    Row number will returns unique values .
    Rank is similar to Row number , except equal rows are ranked same
    Dense Rank similar to Rank but it will not give any gapes.
    select a.[group],a.value,RANK() over (partition by [Group] order by value)Rank1 from [msdn.rank] a
    select a.[group],a.value,Dense_rank() over (partition by [Group] order by value)Rank1 from [msdn.rank] a
    select a.[group],a.value,Row_number() over (partition by [Group] order by value)Rank1 from [msdn.rank] a
    GVRSPK VENI

  • Pre-Purchase Question - Deploying Crystal Report to SSRS Report Server

    Our company has recently installed a SQL 2005 server for our accounting system.  I had intended going down the path of using SQL Reporting Services as our reporting tool and deploying them to the builtin Report Server.  However, I've been using Crystal Reports for years and find it much more user friendly for a non-programmer to use.  I can actually write a report in Crystal, SSRS took me 3 days to achieve very little, I believe it requires too much SQL reporting knowledge for a beginner.
    After spending many hours trawling the net looking for a solution to this problem, I found that Crystal comes as part of Visual Studio.  However, I also believe the version of Visual Studio that comes with SQL2005 is the basic version, and I'd need the Pro version to get the Crystal add on. 
    To this end, I've downloaded the trial version of Crystal 2008 and installed it.  I find I can write a report in Crystal, and then I can manually add that report to a SSRS project. When I open the Crystal Report within Visual Studio I can see all the correct Crystal toolbars and menus etc, so it would appear that the installation of Crystal for Visual Studio has integrated properly.  I can then deploy that report to the Report server and see the report on the web page.  However clicking to open the report then opens the full Crystal Reports application, instead of just displaying the report in the web page.
    I've been unsuccessful in finding a solution to the above deployment problem.  I'm seeking a solution so that my users can just see the report without Crystal itself opening up.  I've been advised that there is a Crystal Report Server that I can purchase, but I don't wish to go to that expense when we already have this functionality built into our SSRS server.
    Can you please advise if it's possible to deploy the Crystal report to the SSRS Report Server and then open the report within the web page without opening the full Crystal app, and if so what steps I would need to take to implement this. 
    If this issue can be resolved, I'll be more than happy to purchase the full Crystal 2008 package and forget SSRS as a bad idea.
    Sorry to be so long winded, I wanted to be clear what the issue is.  Any information /advice would be very much appreciated.

    Hello Diane,
    I would not know if Crystal Report can be used with SSRS but I know for sure that you can use the embedded Crystal Reports Version with comes with VS 2005 or VS 2008 to create reports and to display them in web and windows application.
    We have lots of samples how to do this in our [dev community|https://boc.sdn.sap.com/].
    Also, you can use [Crystal Reports 2008|https://boc.sdn.sap.com/developer/library/CR2008SDK] with MS SQL 2005.
    Other products like Crystal Reports server can also use MS SQL 2005.
    Please see our [supported platforms for CR 2008|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000712280&_OBJECT=011000358700000675322008E] on windows.
    Hope this helps
    Falk

  • Project Server Performance report using SSRS - Report display issue

    Hi All,
    We have developed and deployed a SSRS report in Project Server BI Center using performance dashboard, but half of the report only visible i.e. it is showing horizontal scroll bar at the bottom as below. I tried to change the web part width and height but
    there is no difference. I also tried to change the performance point dashboard height and width but faced same issue. 
    Thanks in advance, Arun

    As Per me their is not way to deal this issue. When you use web part and deploy SSRS  RDL in project server horizontal bar display in the bottom if display area is not enough to display the data.
    whatever height or width you choose in web part property it will come.
    We have to live with this problem .
    kirtesh

  • Creating Widgets for Google Services like Reader, ...

    How can I create widgets like this on my phone?
    http://store.ovi.com/content/70180
    Although N8's browser fully supports Google Reader/Calendar as an apple iphone, google redirects you to a page that have very basic functionalities on these services.
    Since google have very good support for these services on Android/Apple phones, i have searched and found these URLs for Google Reader/Calendar that has full functionalities on N8. 
    Google Reader : www.google.com/reader/i/?source=mog&gl=us
    Google Calendar: http://www.google.com/calendar/gp?source=mog&gl=us
    After that i created bookmarks for these on my phone and put shortcuts of these on my home screen but my problem is icons for the bookmarks are the same. can someone help me create some widgets like the one above or at least change icons of the bookmarks?

    as an update, I wanted to add that when firefox gets stuck, in the status bar at the bottom, it will usually say that it is trying to load ajax.googleapis.com (or something like that).
    I have also started opening the console in firefox (cmd+opt+k) to watch the behavior of sites when they load. Under the network tab in console, google type sites will take 76000+ ms to load. i am only beginning to use the console and don't know exactly what to do with it yet, so i will be experimenting and updating as i learn more.
    if i experience a loading hang with a google site in firefox, clearing the cache/history does not work. however, it seems like if i quit and restart firefox, the google site will then load. i am unsure whether this "clears" something in the browser or just gives the connection enough time to fix whatever is causing the hang.
    other possibilities: in console it seemed like one of the delayed site attributes was a javascript from google (a .js file) - it took 70000+ ms to load. perhaps there is a problem with javascript?

  • Create subscription for overrided monitor

    Hello guys. Have an issue:
    I've created a new monitor for all Servers(Windows Server Operation System Target), set it to disabled. Then I override it to specific group with other thresholds. Alerts are going well, but e-mail do not go. Trying to create subscription from scratch, select
    my monitor (which is disabled) - still mail doesn't come. Questions are:
    1. If I make a subscription from alert, will this subscription apply to all server's group, to which I overrided monitor, or only server from which I created alert?
    2. Can I make a subscription from scratch to this alerts (need to change description, but cannot go to next line if creating from alert)
    3. How can I make a e-mail separation, depending on server group? I.e. I want alerts, generated by overrided monitor specifically for BizTalk servers group to send to BizTalk admins e-mail etc. As I understand, I need to add to subscription criteria "raised
    by any instance of specific group"?

    Hi,
    1) As your Monitor is disabled for all Servers by default and you only enabled for the Servers where you need it the subscription will apply to all Servers where Monitor is enabled.
    2) Yes you can create the subscription from scratch
    3) You have to create a Subscriper for each group and configure it in the subscription. If the same Monitor is running for different Server groups with different responsible departments you have to create a subscription for each department and configure
    the "raised by any instance in a specific group" Condition.
    Cheers
    Christoph Maresch | My blogs: blog.cmaresch.at | XING:
    Christoph Maresch
    | Linkedin:
    Christoph Maresch

  • Unable to see the native mode report 2012 in Chrome with SharePoint 2010

    Hi Techies,
    We are facing strange issues to make reporting services 2012 native mode work with SharePoint 2010 in Chrome.
    We are able to see all the reports in I.E. with SPS but when I open the SharePoint page on which the report is placed then in the chrome then it does not show the report it only show the SPS content.
    Any help will be appriciated
    Thanks
    Swap

    Hi Swap,
    As per my understanding, I think this issue is caused by the browser. We can add this site as a trusted site in chrome browser to check this issue again. And we can try to run IE in compatibility mode to check the issue again.
    Besides, Google Chrome is only supported to view reports in some operating systems in Reporting Services. Please make sure the operating system meets the requirement, and the Google Chrome is the latest publically released version.
    Reference:
    Planning for Reporting Services and Power View Browser Support
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SSRS 2012 with SharePoint 2010: Unable to connect to the remote server

    We had originally installed SSRS 2012 with SP 2010 and I did not like how the installation was configured, so we uninstalled everything and removed the SSRS server from the SharePoint farm and uninstalled all the SQL bits (SSRS was deployed to web tier in
    sharepoint mode).
    I've since added a new application server to host the SSRS SharePoint Mode and Installed the reporting services add-in on the WFE.   For reference, I have 1 WFE and 2 App Servers.  the WFE has the Reporting Service Add-in and both App Servers have
    the SharePoint mode of SSRS installed as described here: https://msdn.microsoft.com/en-us/library/hh479774(v=sql.110).aspx
    I've also installed the Service Application and all seems to work well up until I make an attempt to create a report or data source on the WFE.
    It looks like somewhere, the WFE is still looking to connect to the original SSRS machine we installed.  I've gone through registry, config files and the SharePoint config database to see if I can see where the reference value is.  Still can't
    find it anywhere.  None of the Reporting commandlets are helping.
    Technically what is occurring;
    Add Reporting service content types and create a New Reporting Data Source through UI
    ULS Logs go after the url: /_layouts/ReportServer/NewSharedDataSource.rsds
    Exception occurs after some time because it times out trying to connect to wrong host.  Exception below:
    Exception encountered for SOAP method GetSystemProperties: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond <WRONG HOST IP>:80
    at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
    at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception) -
    -- End of inner exception stack trace ---
    at Microsoft.SqlServer.ReportingServices2010.RSConnection2010.SetConnectionProtocol()
    at Microsoft.SqlServer.ReportingServices2010.RSConnection2010.SoapMethodWrapper`1.ExecuteMethod(Boolean setConnectionProtocol)
    No powershell commands or any of the settings in the service application allow me to set this.  Any help would be appreciated.
    20 Bay Windows Home Server (Not Vail!)
    http://piroozjavan.blogspot.com/

    Issue an iisreset on the WFE, and validate that SSRS Service is running on the App servers.
    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.

  • SSRS 2008 R2 SharePoint 2010 integration error?

    Hi, I have SSRS 2008 R2 in SharePoint 2010 integration mode. I'm getting kind of strange error with below scenario:
    1) SSRS report has data-source to SQL Server 2008 R2 database store procedure.
    2) SQL Server procedure execute SELECT query using linked server to Oracle database (Oracle driver).
    3) SSRS report has parameter call 'Customer' which allows user to filter the data. This customer report parameter drop-down is also get execute SQL store procedure and get data from Oracle linked server.
    Oracle database  <---------> SQL Server 2008 R2 (SQL procedure & linked server to Ora) <-----> SharePoint SSRS Report
    Problem :  When user select one customer from parameter drop-down and click 'Apply' to render report it works. But if user change report parameter then it got error. This error is relate to can't execute main SQL procedure Oracle package to linked server.
    Not sure why this happening when user select new parameter value and got this error? Interesting enough, I replicate scenario using Visual Studio 2008 and run report with different values by selecting customer parameter and it works perfectly fine! Not sure
    why it doesn't work on SSRS report on SharePoint? FYI - all properties to SQL linked server and report data-source are set to default values.
    Any idea? like SharePoint do some-sort of caching report data-source or any other hints where things going wrong? Thanks.

    Hi KM,
    Thanks for your post.
    It seems a little strange. Do you mean the reports is working fine with parameter change behavior in report design tool(Visual Studio 2008), however, when you publish this report from design tool to Reporting services SharePoint site, it works with only
    default parameter values, once you change the parameter value, you would encounte the error “can't execute main SQL procedure Oracle package to linked server”? If so, I would suggest you to create a SQL Agent job  on your SQL Server engine to timely synchronous
    data from Oracle database to SQL Server Database, and then you can create report to retrieve the relevant data from SQL Server table objects.
    Thanks,
    Bill Lu
    Bill Lu
    TechNet Community Support

  • How do I create classifications for EE's like safety committee, fire comm..

    Not related to a particular Job, Position, Org Unit, Personnel Area, Personnel Subarea, Employee Group, or Employee Subgroup, how do I create a "Classification" like Safety Committee, Fire Responders, CPR Responders, etc.? I would then want to assign EE's to this Classification.  TO the Classification I would want to attach required Qualifications and manage the Qualifications with TEM so that I can plan training from managed expired qualifications or future qualifications needed if someone will be be "Classified" in the future. Is there a standard means SAP Process to do this?  I have looked around and did not find anything that seemed like it would address this issue.  Thanks.
    Erik

    Hi Ravee,
    Thank you very much for your help so far.  I found out that we are already using Qualification Groups (QK).  Our HR Dept thinks using an Object Type is a perfect solution but would prefer that we NOT use Qualification Groups so they can keep this function separate from our new classifications. So, ideally, we would like to use a different Object Type if possible.  In reviewing the available Object Types (table T778O) that we are not already using, I could not find one that fits the business scenario we are trying to resolve.  
    Like Organizational Units ("O"), we want to be able to assign multiple Qualifications ("Q") with a Relationship of "A|031" (Requires). We would also like to assign multiple Persons ("P") with a Relationship of "B|032" (Is fullfill).
    But, as mentioned, there were no T778O Object Types that seemed to fit the mold.  After researching SAP Documentation, I came across documentation that noted the table is "delivered preset and should only be extended after consultation with SAP."
    I created an OSS Message with SAP and I am awaiting feedback. Ideally I would like to create a "Zx" Object Type.  But, I do not know if this is a problem with SAP? For example, I don't know if my custom Object Type will be overwritten with upgrades? Further, I don't know all of the related steps to properly setup a custom Object Type. I can certainly create a T778O entry. But, after doing this, the infotypes do not display in PP01.  How do I get PP01 to display infotypes Object, Relationship, etc.? How do I allow the table and Relationship infotype to allow B|032 and A|031 relationships?  How do I get PEPM to allow this Object Type as a selection option?  I apologize for the creeping scope of the question, but, it is really the same question just asking for more detail please.  Thanks so much.
    Erik

Maybe you are looking for

  • Can no longer download purchased music from iTunes

    I keep getting this message: There was a problem downloading. You do not have enough access privileges for this operation. Please check that the connection to the network is active and try again. My connection is fine and this just started happening

  • Converting type from SAP to Java...

    Hi everyone, I am calling a BAPI wich returns me numbers like for example : 19,887.54 When I get this number in my Java code, it does not save the ",". Can someone help ???

  • Getting a NoSuchRepositoryConfigException

    Hi, I am trying to get a Node object from a node Id. I am writing the following code: INodeManager nodeMgr = ContentManagerFactory.getNodeManager(); ContentContext ctx = new ContentContext(); Node node = nodeMgr.getNodeByUUID(ctx, id); // here id is

  • N96 Update issue

    I have an update available (11.101), but the update doesn't complete. The full 127Mb (or whatever) downloads, and it starts the update, tells me approx 15 minutes left, and just seems to freeze at that. Sometimes it comes up with the phone recovery s

  • Stacking coins

    I'm trying to make a program that takes a random amount of change and divides that change up into the least amount of coins possible, visually i need to be able to "stack" the coins in different piles seperated by denomination. Is there a way I can f