How to Edit Canned Report

I need a report like the "Count of instances of specific software registered in Add or Remove Programs" 
This report requires you to put in exactly what is listed in Add or Remove Programs but what I need is a report that will list all instances of "Microsoft Office %"  Is there a way to edit the report so that it will take wildcards?

Hi,
The following query if for your reference.
SELECT DisplayName0, COUNT(DISTINCT arp.ResourceID) AS 'Count', Publisher0, Version0, @CollID AS CollectionID
FROM fn_rbac_Add_Remove_Programs(@UserSIDs)  arp
JOIN fn_rbac_FullCollectionMembership(@UserSIDs)  fcm ON arp.ResourceID=fcm.ResourceID
WHERE (DisplayName0 LIKE @softwarenamefilter) AND
fcm.CollectionID=@CollID
GROUP BY DisplayName0, Publisher0, Version0 
ORDER BY Publisher0, Version0
Best Regards,
Joyce
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • How to edit a report based on Stored procedure in Deski

    hi all,
    We have a report based on a stored procedure in Deski format.I can see the sp name it is using under View Data >definition but cannot figure out which database or server it is pointing to .
    Also ,please let me know how to edit/change the sp it is pointing to.
    Thanks

    Hi
    When you click on View Data, at bottom click on Edit button
    It will prompt a connection details tab wherein you can view and modify the connections
    Nik

  • How to edit ALV report using function modules

    I have a ALV report , i want to edit the report
    using function modules.
    how can i do that...
    Edited by: ms kumar on Mar 6, 2008 3:24 PM

    hi i had used this report with the check box,
    using the fm of alvs.....
    *& Report  ZZZ00
    REPORT  ZPR_02.
    TYPE-POOLS: SLIS.
    TABLES:pa0002,pa0008.
    data:begin of it_pa0002 occurs 0,
         checkbox,
         pernr like pa0002-pernr,
         begda like pa0002-begda,
         endda like pa0002-endda,
         vorna like pa0002-vorna,
         nachn like pa0002-nachn,
         end of it_pa0002.
    data:begin of it_pa00021 occurs 0,
         pernr like pa0002-pernr,
         begda like pa0002-begda,
         endda like pa0002-endda,
         vorna like pa0002-vorna,
         nachn like pa0002-nachn,
         expand TYPE xfeld value 'X',
         end of it_pa00021.
    data:begin of it_pa0008 occurs 0,
         pernr like pa0008-pernr,
         begda like pa0008-begda,
         endda like pa0008-endda,
         ANSAL like pa0008-ANSAL,
         LGA01 like pa0008-LGA01,
         BET01 LIKE PA0008-BET01,
         end of it_pa0008.
    DATA: IT_FIELD_CAT TYPE SLIS_T_FIELDCAT_ALV,
          IT_FIELD_CAT1 TYPE SLIS_T_FIELDCAT_ALV,
          IT_LAYOUT1 TYPE SLIS_LAYOUT_ALV,
          WA_FIELD_CAT TYPE SLIS_FIELDCAT_ALV,
          WA_FIELD_CAT1 TYPE SLIS_FIELDCAT_ALV,
          IT_LAYOUT TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS TYPE SLIS_T_EVENT,
          WA_EVENTS TYPE SLIS_ALV_EVENT,
          IT_HEADER TYPE SLIS_T_LISTHEADER,
          WA_HEADER TYPE SLIS_LISTHEADER,
          wa_keyinfo TYPE slis_keyinfo_alv.
    CONSTANTS:c VALUE 'X'.
    SELECT-OPTIONS: S_pernr FOR pa0002-pernr.
    START-OF-SELECTION.
      SET PF-STATUS 'DATA' .
      PERFORM GET_DATA.
      PERFORM BUILD_FIELD_CAT.
      PERFORM GET_EVENTS.
      PERFORM DISPLAY_DATA.
    *&      Form  get_data
          text
    FORM GET_DATA .
      SELECT pernr
             begda
             endda
             vorna
             nachn
             FROM pa0002
             INTO CORRESPONDING FIELDS OF TABLE IT_pa0002
             WHERE pernr IN S_pernr.
    ENDFORM.                    " get_data
    *&      Form  build_field_cat
          text
    FORM BUILD_FIELD_CAT .
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'CHECKBOX'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Check Box'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'PERNR'.
        wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Personnel no'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'BEGDA'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Start date'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'ENDDA'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'End date'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'VORNA'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'First name'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'NACHN'.
        wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Last name'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'PERNR'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'Personnel no'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'BEGDA'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'Start date'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'ENDDA'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'End date'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'VORNA'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'First name'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'NACHN'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'Last name'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'PERNR'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'personnelno'.
        APPEND wa_field_cat1 TO it_field_cat1.
       CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'BEGDA'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'begindate'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'ENDDA'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'enddate'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'ANSAL'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'annualsalary'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'LGA01'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'wagetype'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'BET01'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'Amount'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
    ENDFORM.                    " build_field_cat
    *&      Form  display_data
          text
    FORM DISPLAY_DATA .
    it_layout-box_fieldname = 'CHECKBOX'.
    it_layout-EDIT = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM             = SY-REPID
          I_CALLBACK_PF_STATUS_SET       = 'PF_STATUS'
          I_CALLBACK_USER_COMMAND        = 'USER_COMMAND'
          IT_FIELDCAT                    = IT_FIELD_CAT
          IS_LAYOUT                      = IT_LAYOUT
          IT_EVENTS                      = IT_EVENTS
        TABLES
          T_OUTTAB           = IT_pa0002.
    ENDFORM.                    " display_data
    *&      Form  get_events
          text
    FORM GET_EVENTS .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       IMPORTING
         ET_EVENTS             = IT_EVENTS .
      READ TABLE IT_EVENTS INTO WA_EVENTS
                           WITH KEY NAME = SLIS_EV_TOP_OF_PAGE.
      IF SY-SUBRC = 0.
        WA_EVENTS-FORM = 'TOP_OF_PAGE'.
        MODIFY IT_EVENTS FROM WA_EVENTS INDEX SY-TABIX.
      ENDIF.
    ENDFORM.                    " get_events
    *&      Form  top_of_page
          text
    FORM TOP_OF_PAGE.
      WA_HEADER-TYP = 'H'.
      WA_HEADER-INFO = 'EMPLOYEE DATA'.
      APPEND WA_HEADER TO IT_HEADER.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_HEADER
    ENDFORM. "top_of_page
    *&      Form  GUI_SET
    FORM GUI_SET USING RT_EXTAB TYPE SLIS_T_EXTAB .
      SET PF-STATUS 'DATA' .
    ENDFORM.                    "GUI_SET
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                            R_SELFIELD TYPE SLIS_SELFIELD.
    DATA:V_PERNR LIKE PA0002-PERNR.
      CASE R_UCOMM.
        WHEN 'DET'.
    DATA: V_FLAG.
      clear : v_flag.
    LOOP AT IT_PA0002.
         if it_PA0002-checkbox =  'X'.
                   v_flag = 'X'.
              v_pernr = IT_PA0002-PERNR.
    SELECT  PERNR
            BEGDA
            ENDDA
            VORNA
            NACHN
            FROM PA0002
            INTO CORRESPONDING FIELDS OF TABLE IT_PA00021
            WHERE PERNR = V_PERNR.
    SORT IT_PA00021 BY PERNR.
    DELETE ADJACENT DUPLICATES FROM IT_PA00021 COMPARING PERNR.
    READ TABLE IT_PA00021 INDEX 1.
    SELECT PERNR
           BEGDA
           ENDDA
           ANSAL
           LGA01
           BET01
           FROM PA0008
           INTO TABLE IT_PA0008
           FOR ALL ENTRIES IN IT_PA00021
           WHERE PERNR = IT_PA00021-PERNR.
              if not it_PA0008[] Is initial.
              SORT IT_PA0008 BY PERNR.
             delete adjacent duplicates from  it_PA0008 comparing pernr.
              READ TABLE IT_PA0008 INDEX 1.
              endif.
            endif.
         enddo.
      it_layout1-group_change_edit = c.
      it_layout1-colwidth_optimize = c.
      it_layout1-zebra             = c.
      it_layout1-detail_popup      = c.
      it_layout1-get_selinfos      = c.
      it_layout-expand_fieldname  = 'EXPAND'.
      wa_keyinfo-header01 = 'PERNR'.
      wa_keyinfo-item01 = 'PERNR'.
    IF NOT V_FLAG IS INITIAL.
    CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
      EXPORTING
       I_CALLBACK_PROGRAM             = SY-REPID
        IS_LAYOUT                      = IT_LAYOUT1
       IT_FIELDCAT                    =  IT_FIELD_CAT1
        I_TABNAME_HEADER               = 'PA0002'
        I_TABNAME_ITEM                 = 'PA0008'
        IS_KEYINFO                     = wa_keyinfo
        TABLES
        T_OUTTAB_HEADER                = IT_PA00021
        T_OUTTAB_ITEM                  = IT_PA0008.
    ENDIF.
    CLEAR: IT_PA00021,IT_PA0002,IT_PA0008.
    ENDLOOP.
    WHEN 'BACK'.
    EXIT.
    ENDCASE.
    ENDFORM.                    "USER_COMMAND
    reward points if useful,
    venkat.

  • Can style sheets effect how fast edits can be made in InCopy?

    Issue has happened using both CS5 and CS6.
    InDesign user (designer) is on a Mac Pro (OS X 10.8.4)
    InCopy user (writer) is on PC (Win7sp1 64 bit)
    Normally, the workflow between InDesign and InCopy is smooth, however I’ve encountered issues when working with larger InDesign documents. The file I have issues with is 100 pages of flowed text (no images, no master pages) with 17 character styles and 24 paragraph styles.
    When the writer tries to make text edits in InCopy, it takes anywhere from 5-45 seconds to make a change (for example; deleting a space may take 5 seconds, while getting rid of a paragraph return takes 45 seconds).
    Troubleshooting this problem a few months ago, I narrowed down that the issue was coming from the style sheets in InDesign (when I ran the same text without any style sheets, the writer was able to make InCopy edits without a problem).
    I then recreated the style sheets from scratch (instead of importing them from the previous catalog like we normally do) and that seemed to fix the issue. Now, with the current catalog we just started working on, we’re running into the same problem with slow edits in InCopy. I imported the style sheets from the file that worked last time (with the new style sheets I built) but that didn’t work this time around.
    Is it possible to have a “corrupt” style sheet that would cause this issue? I’m not sure if the slowness is coming from style sheets or something else entirely. Any thoughts or suggestions on where this problem might be coming from would be greatly appreciated.
    Thanks for your time!
    Tracy

    • create a vertical Gradient Layer black to nothing
    • create a horizontal Gradient Layer nothing to white to nothing
    • apply »Create Clipping Mask«
    • add black background
    • convert that whole stack of layers to a Smart Object or flatten it (being as CS3 will not support perspectival transformation of SO)
    • invoke Edit > Transform > Perspective or Warp
    • create a Gradient Map Layer blue to cyan (or whatever) and clipping mask it to that layer
    • set the Gradient Map Layer to Color and the Layer with the Gradient to Screen (that way it should work on all backgrounds)
    • if necessary apply some Gaussian Blur to the gradient layer

  • How can we edit alv report output.

    hi all,
    how can we edit alv report output

    \[removed by moderator as it was just a copy and paste answer of someone else's work without giving a source\]
    Edited by: Jan Stallkamp on Aug 25, 2008 4:35 PM

  • How to create a report in Form line Style and can display Image field?

    Hi,
    In Report builder 10g, I would like to create a Report with Form Line Style and this report included a Image field.
    I can choose this Style only when Select Report type is Paper Layout. Because, If I choose Create both Web & Paper Layout or Create Web Layout only then in the next Style tab 03 option Form, Form letter and Mailing Label be Disabled.
    But in Paper Layout, my report can not display Image field.
    I tried with Web layout and all the other Styles (Except 03 mentioned be Disabled) then all Styles are displayed Imager field OK.
    How to create a report in Form line Style and can display Image field?
    I was change File Format property of my Image field from text to Image already in Property Inspector. But report only showed MM for my Image field.
    Thanks & regards,
    BACH
    Message was edited by:
    bachnp

    Here you go..Just follow these steps blindly and you are done.
    1) Create a year prompt with presentation variable as pv_year
    2) Create a report say Mid report with year column selected 3 times
    - Put a filter of pv_year presentation variable on first year column with a default value say @{pv_year}{2008}
    - Rename the second time column say YEAR+1 and change the fx to CAST(TIME_DIM."YEAR" AS INT)+1
    - Rename the second time column say YEAR-1 and change the fx to CAST(TIME_DIM."YEAR" AS INT)-1
    Now when you will run Mid Report, this will give you a records with value as 2008 2009 2007
    3) Create your main report with criteria as Year and Measure col
    - Change the fx for year column as CAST(TIME_DIM."YEAR" AS INT)
    - Now put a filter on year column with Filter based on results of another request and select these:
    Relationship = greater than or equal to any
    Saved Request = Browse Mid Report
    Use values in Column = YEAR-1
    - Again,put a filter on year column with Filter based on results of another request and select these:
    Relationship = less than or equal to any
    Saved Request = Browse Mid Report (incase it doesn't allow you to select then select any other request first and then select Mid Report)
    Use values in Column = YEAR+1
    This will select Year > = 2007 AND Year < = 2009. Hence the results will be for year 2007,2008,2009
    This will 100% work...
    http://i56.tinypic.com/wqosgw.jpg
    Cheers

  • How to edit template for report generator in stimulus profile editor in Veristand 2011?

    How to edit template for report generator in stimulus profile editor in veristand 2011?
    We are using Veristand 2011.When we run any sequence in stimulus profle editor,we get test results in form of ATML file.
    We want to customise the template for this test result generation as per our requirement.
    For example:
    Test case No.: Description of test case.
    Objectives: Explanation of objectives.
    Result: Passed/ Failed.
    Graph: If any.
    Please suggest how to do this.

    You cant really change too much in the report, you can customize TRML.xsl which is created every time in the Test Results\UUT 1 folder and that would give you some flexibility on what is shown. I dont know what a xsl is actually able to do in terms of composing data from multiple files (if at all possible) but it definitely allows you to change the visual format of the existing xml data.
    Otherwise I modified the xsl to customize the look of the xml report when opened in a browser to have less clutter and some coloring on the Pass/Fail but, the reports are XML files anyway so it's easy to extract data out of them and you can probably write your own report creation tool to compose the report in whatever format you like.

  • How to edit the Servicve Level Report?

    Folks,
    Our customer would like to have a Service Level Report (SLR) from the Solution MAnager.
    However the first chapter on page 1 called "Solution Landscape Alert Overview" (with some EWA alert warnings) must be deleted from the SLR.
    How can we edit the report to delete this chapter?
    Is this possible, and if yes; how?
    Regards,
    Joris

    Thanks for the suggestion.
    However the part I want to remove cannot be controlled in that way. It simply is not in the checkboxes.
    Isn't there a way to go deeper in the SLR and 'hack' out the parts you don't want?
    The normal way (via checkboxes) doesn't let you control all chapter in the SLR.
    Regards,
    Joris

  • How to Edit Webi or Crystal report in New BO 4.0 LaunchPad

    Hi,
    Can someone guide me how to edit a webi or crystal report in new BO4.0 LaunchPad
    Thanks,
    VB

    Hi all,
    I can not display report as modify mood. When I do right click on report, it displays like as below :
    I only updated java with the latest version 8 update 45.
    Can anybody help me ? Because I can't get modify mode, so I can't edit my reports.
    Thanks.

  • Can we Edit the report At runtime in JSP?

    <p>Hi,</p><p> </p><p>Im Using Crystal Report XI server..</p><p> </p><p>I want to edit the report data at runtime  through JSP.</p><p>Is there any API available to implement this?</p><p>Please tell me How to Implement this?</p><p> </p><p>-Venkat. </p>

    <p>Hi Venkat</p><p>I&#39;m assuming that you have Business Objects Enterprise.  If this is true you can use the Report Application Server (RAS) SDK to modify reports at runtime.</p><p>You can find the online documentation for the RAS at:</p><p>http://devlibrary.businessobjects.com/</p><p>Select XI or XI R2 </p><p>You will see it listed as one of the books on the left hand side.  This will contain the Java documentation for RAS.</p><p>Also, I just posted some samples that may be useful to you.</p><p>http://diamond.businessobjects.com/node/900</p><p>If you are looking help for Crystal Reports for Eclipse runtime support, you may want to post to that forum. </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • How I can report a bug in Lumia phones to Microsof...

    How I can report a bug that is only in Lumia phones to Microsoft developer & technical team?
    YouTube link
    http://youtu.be/eIYm7mLd7Jw
    A big bug in lumia phones on GSM-WLL  Networks.
    This problem is found only in Nokia(Microsoft) smartphones and only in incoming and outgoing calls in this phones(other Services like sending and receiving sms, USSD codes running & … work very well on WLL network with lumia mobile phones).
    - In outgoing calls: System busy error.
    - In incoming calls: After one ring, automatically call is rejected and 4-5 second busy beeps with loudspeaker is hearing form Lumia phone(even if phone is on silent)
    HTC and Samsung mobiles with WP platform is working without  any problem on GSM-WLL Networks(Tested).
    Lumia phones that tested with this problem:
    - Lumia 610; wp7-7.8
    - Lumia 520, 720, 1020; wp8-8.1
    - Lumia 920; wp8-8.1- windows 10 technical preview.
    Note 1: Nokia X phones also have this issue.
    Note 2: This problem is not found on Nokia Asha phones.
    Note 3: Iranian Telecom Company claims this  problem is  from Nokia Mobiles phones.

    Hi Deepak,
    You can find Business View Manager at the following path if it is installed on your machine.
    Click on Start>All Program>BusinessObjects XI Release 2>BusinessObjects Enterprise>Business View Manager.
    In case it is not installed you can contact your administrator                 
    To know more about Business View Manager go to http://help.sap.com and under Business Objects tab search for u2018xi3_bv_admin_en.pdfu2019. Select Product as Business Objects Enterprise.
    Please let us know if this solves your queries.
    Regards,
    Aditya Joshi
    Edited by: Aditya Joshi on Oct 1, 2008 12:12 PM
    Edited by: Aditya Joshi on Oct 1, 2008 12:15 PM

  • How can I set limitations on how many records a report can return

    I have a report on the web using Oracle Reports builder and I have the client enter in date parameters for the report that they want.
    Well with date ranges for different clients a different number of records are returned. Because of time it can take the report to return I want to limit the number of records that report can return.
    How can I go about doing that? I don't want to limit with date parameters because date won't really work for me. I need to limit on how many records can be returned. If it exceeds 10,000 records I want the client to refine the date range of schedule the report to run later. Meaning we will run that report. So I would have two check boxes if the count was over 10,000 do you want to define your date or schedule the job to run later.
    Can any one help me with this? How would I go about this?

    To know if the report is going to return more than 10,000 records, you first have to run the query with a 'select count(1) from ... where ...' (with the same from and where clauses as you normal query). Since this takes about the same time as runnng your report, I wonder if you really gain anything (although formatting may take some time too).
    You may simplify the select count(1) query by omitting all the lookup tables that are only needed for formatting. That way your query may run a lot faster. You can put this in your after parameter form trigger.

  • How and where can I submit a bug report to Nokia ?

    How and where can I submit a bug report to Nokia ? I haven't found any Nokia's webpage where it is explained.

    wait for the next nokia beta test program (they usually annouce it on this forum) and enrol
    then you will have access to the developers to report bugs
    the last beta test finished end of November.. so it will be a while b4 the next beta test
    cheers
    Nokia N95 8GB, 6234, 6101, N-Gage Classic, 8250, 3350, 3315

  • Can't figure out how to edit a Draft e-mail message--simple, right? Wrong.

    OK, sorry if this is too basic and belongs in the Getting Started folder, but I couldn't find the problem here or in that location.
    I thought I could figure out how to edit a message in the Drafts folder. I tried; it didn't work. I looked online, found a tutorial, which showed that I was indeed trying to do the right thing the right way. So why doesn't it work????
    Here's what happens.
    I start an e-mail message, click Cancel, then save as a Draft. That works fine. But then...
    From the Home screen, I tap Mail.
    On the Mailboxes screen, I tap Drafts (there's a number on the right -- 2 -- which disagrees with the number of messages actually seen -- 1 -- at the next step; I don't know if that's an important detail or not).
    I see the draft message I want to edit. I tap it.
    I tap Edit. According to the tutorial, the message is supposed to open up for me to edit further. But it doesn't. Instead...
    The two lines representing the message (Recipient and first few words) move a bit to the right, and the Edit button changes to Cancel.
    A dull red Delete button and a blue-gray Move button show up at the bottom. But the first line of the draft message, which has (accurately) shown up under the boldface "(No Recipient)" line, stays where it is -- showing as part of an entry in the list but not as something I can edit. I don't see the complete message, and I can't edit anything, even though I think I have just entered an Edit mode.
    I click those two lines, and a red checkmark appears on the left, and the dull buttons at the bottom become brighter red and brighter blue-gray.
    Tapping, double-tapping, tap-and-holding... all just toggle that checkmark on and off.
    THIS MUST BE REALLY SIMPLE... HOW DO I EDIT THE TEXT OF THE DRAFT MESSAGE????

    Zero replies??? Wow, I guess this is a really uncommon problem.
    Well, the Genius Bar fixed the problem. They confirmed that it WAS real, and they couldn't figure out how it had gotten that way. There must have been some internal list in an inconsistent state... or something.
    The fix was to deactivate my MobileMe account on my iPhone -- just wipe it out. Then they re-activated it. Everything re-synched and the problem was gone.

  • Can anyone help me sync calendars from my iPhone to my Mac and help me figure out how to edit or delete lists in Reminders?

    Can anyone help me sync calendars from my iPhone to my Mac and help me figure out how to edit or delete lists in Reminders?  I thought upgrading to Mountain Lion would work, but I'm having the same problem as before under Snow Leopard.  So, here's my situation. 
    I'm running 10.8.2 on a Macbook Pro.  I have a 3GS iPhone running 6.0.1.  I can make entries on my Mac Calendar and they will show up on my iPhone, but if I make an entry on my iPhone, it never makes it to my Mac.  Also, I notice that when I log in to my iCloud account on my Mac, it has a "me.com" email address as my apple i.d., but it is not my primary account i.d. and I can't figure out how to delete it.  Also, my Reminders application won't allow me to delete lists I created.  Contacts, on the other hand, work instantaneously regardless of where the change is initiated.

    On you iPhone check Settings>Mail,Contacts,Calendars>Default Calendar (in the calendars section).  Here be sure you have selected the Calendar listed under your iCloud account ID as your default.  If you haven't, make this change, then enter a new event on your phone and see if it syncs properly now.
    You should be able to delete you reminders list by, from the Lists view, tapping Edit at the top, then tapping next to the list you want to delete and tapping Delete.

Maybe you are looking for

  • Need still image export in QT Pro 7.7 that opens in Photoshop CS6

    Using Quicktime 7.7 Pro I export a still image from an .avi movie file and choose movie to picture. In options, I am given a choice of various formats including jpeg and png.  But, the file extension still says .pct no matter what format option is ch

  • JVM Bind

    Hi, I have installed the oc4j and running it on Windows 98. I installed the oc4j with the command - java -jar oc4j.jar -install. I did run the server with command - java -jar oc4j.jar. Now when I stop the server - java -jar admin.jar ormi://localhost

  • Analitics functions

    Hello, I have one worksheet that are giving me more problems. The question is: -I have a crosstable with this elements: cod in aix y and a years in the aix X. I have a page item too. -I have two calculs : sum(nom_ins)over(partition by date) ( the tot

  • CiscoSystems AnyConnect VPN Client 3.0.3054 Posture module

    Hello, I have aproblem installing the posture module of AnyConnect VPN Client. During the installation I get an error: "Product: Cisco AnyConnect Posture Module -- Error 1335. The cabinet file 'disk1.cab' required for this installation is corrupt and

  • Introscope on CQ5

    Hello, we would like to employ Wily Introscope in our organization for APM of CQ5 deployment. Are there any existing CQ5 configurations for Introscope? thanks Boris Petrovic Netcentric AG