Bex Default template for Queries and Workbooks

Dear All,
We have a default template for all queries and workbooks.But this default template was created using a AP query and saved as a workbook.Now all the users having AR role are not able to execute queries or workbooks.Since this default template has a AP info provider associated with it.Is it possible convert this default workbook to a generic one without any security restrictions.Please provide a solution.

In Bex analyzer, you have option to convert a template into a default template.
Or you can create a copy of the existing template without AP infoproviders and assign it as default template.

Similar Messages

  • Authorization check for queries and workbooks

    Hi Gurus,
                   I want help in BW(3.5 version) authorization to restrict the user not to display queries but he can display workbooks.
    And I want to create a role where I can publish my workbooks. Like we have two business lines and I want to create the two roles.
    I tried with
    S_USER_AGR
    S_USER_TCD
    S_GUI
    S_BDS_DS
    This authorization objects are related to save the workbooks but my requirement not to save and as well as not to display the queries.
    Please advise me what needs to be done to achieve this requirement.
    Thanks
    Robert.

    Hi,
    you required to query related authorization and work book related authorization.
    query
    s_tcode
    s_rfc(for bex analyzer access)
    s_rs_comp
    s_rs_comp1
    s_rs_fold(if user wants to see infoarea then only u have provide this authorization object)
    s_rs_icube
    s_rs_mpro
    work book
    if u want to save query results in work book
    S_GUI
    S_BDS_DS
    if u want to save work book in roles
    S_USER_AGR
    S_USER_TCD
    if u maintaint all the autozation object then you can able to save .

  • Migration of bex 3.x queries and workbooks to Bex 7.1 queries and workbooks

    Hi,
    Migration of bex 3.x queries and workbooks to Bex 7.1 queries and workbooks.
    For instance when you edit,open an 3.x query in 7.0 query designer it is automatically migrated.Would it be same if we open it in 7.1 query designer?Is it possible to migrate queries and workbooks without any fail or deletion or loss?
    Thank you.

    I will add to the already excellent suggestions made above that the migration from Bex 3.x to Bex 7.0 is VERY laborious. There are no automated tools.
    All queries and workbooks must be identified (use this as an opportunity to get rid of unused objects)
    Each query must be converted to BI 7 and repairs done as needed.
    Each Workbook must be converted to BI 7 and repairs done as well. The "Automated" conversion tool that SAP provides (it's behind the scenes Visual Basic) presents problems with at least 50% of the workbooks, and so they have to be manually fussed with.
    If you've used Visual Basic at all in your Workbooks, you'll have to change 'em all. The On Refresh event no longer exists.
    And of course, test... test.. test.. and test.
    And don't forget to retrain your users. The User interface is dramatically different.
    Good luck ! We're 3 months in to a five month conversion project.

  • Looking for all Queries and Workbooks

    Hi,
    in what table do i find all queries and workbooks ?
    I would like to make a select in my abap programm and list them in an alv grid.
    Thanks
    alto

    Hi,
    Have a look at following code,
    Hope that helps.
    Regards
    Mr Kapadia
    *Assigning points is the way to say thanks.**
    *& Report  ZNTEST
    REPORT  ZNTEST LINE-SIZE 300.
    TYPE-POOLS RSBC.
    TABLES  : RSZCOMPDIR,
              RSZELTDIR,
              RSZELTTXT,
              RSZCOMPIC,
              RSDCUBET,
              RSDODSOT,
              RSDCUBE,
              RSDODSO,
              RSDAREAT.
    DATA : LT_RSZELTDIR TYPE TABLE OF RSZELTDIR,
           LS_RSZELTDIR TYPE RSZELTDIR,
           LV_IFLAG TYPE I,
           LV_CFLAG TYPE I.
    DATA : BEGIN OF ITAB OCCURS 0," with header line,
           INFOAREA TYPE RSDCUBE-INFOAREA,
           INFOAREAT TYPE RSDAREAT-TXTLG,
           INFOCUBE TYPE RSZCOMPIC-INFOCUBE,
           IDESC TYPE RSDCUBET-TXTLG,
           QUERY TYPE RSZCOMPDIR-COMPID,
           QDESC TYPE      RSZELTTXT-TXTLG,
           END OF ITAB.
    SELECT *  FROM RSZELTDIR
        WHERE
             OBJVERS = 'A'
        AND  DEFTP = 'REP'.
      CHECK SY-SUBRC EQ 0.
      SELECT SINGLE * FROM RSZCOMPDIR
           WHERE
               COMPUID = RSZELTDIR-ELTUID
           AND OBJVERS = 'A'.
      CHECK RSZCOMPDIR-COMPID(1)  = 'Y' OR
            RSZCOMPDIR-COMPID(1)  = 'Z'.
      CHECK SY-SUBRC EQ 0.
      SELECT SINGLE * FROM RSZELTTXT
           WHERE
               ELTUID = RSZELTDIR-ELTUID
           AND OBJVERS = 'A'
           AND LANGU   = SY-LANGU.
      CHECK SY-SUBRC EQ 0.
      SELECT SINGLE * FROM RSZCOMPIC
           WHERE
                COMPUID = RSZCOMPDIR-COMPUID
          AND   OBJVERS = 'A'.
      CHECK SY-SUBRC EQ 0.
      CLEAR ITAB.
      ITAB-INFOCUBE =  RSZCOMPIC-INFOCUBE.
      ITAB-QUERY    =  RSZCOMPDIR-COMPID.
      ITAB-QDESC    =  RSZELTTXT-TXTLG.
      SELECT SINGLE * FROM RSDCUBET
             WHERE
                  LANGU    = SY-LANGU
              AND INFOCUBE = RSZCOMPIC-INFOCUBE
              AND OBJVERS  = 'A'.
      IF SY-SUBRC NE 0.
        SELECT SINGLE * FROM   RSDODSOT
               WHERE
                    LANGU     = SY-LANGU
                AND ODSOBJECT = RSZCOMPIC-INFOCUBE
                AND OBJVERS  = 'A'.
        ITAB-IDESC    =  RSDODSOT-TXTLG.
        SELECT SINGLE * FROM RSDODSO
               WHERE
                    ODSOBJECT = RSZCOMPIC-INFOCUBE
                AND OBJVERS  = 'A'.
        ITAB-INFOAREA = RSDODSO-INFOAREA.
      ELSE.
        SELECT SINGLE * FROM RSDCUBE
               WHERE
                    INFOCUBE = RSZCOMPIC-INFOCUBE
                AND OBJVERS  = 'A'.
        ITAB-INFOAREA = RSDCUBE-INFOAREA.
        ITAB-IDESC    =  RSDCUBET-TXTLG.
      ENDIF.
      SELECT SINGLE * FROM RSDAREAT
              WHERE
                     LANGU    = SY-LANGU
               AND   INFOAREA = ITAB-INFOAREA
               AND   OBJVERS  = 'A'.
      ITAB-INFOAREAT = RSDAREAT-TXTLG.
      APPEND ITAB.
    ENDSELECT.
    SORT ITAB BY INFOAREA INFOCUBE IDESC.
    LV_IFLAG = 0 .
    LV_CFLAG = 0 .
    LOOP AT ITAB.
      AT NEW INFOAREA.
        LV_IFLAG = 1.
      ENDAT.
      AT NEW INFOCUBE.
        LV_CFLAG = 1.
      ENDAT.
      IF LV_IFLAG = 1.
        LV_IFLAG = 0.
        SKIP.
        ULINE.
        WRITE : / ITAB-INFOAREA COLOR COL_HEADING,ITAB-INFOAREAT COLOR COL_HEADING.
        ULINE.
      ENDIF.
      IF LV_CFLAG = 1.
        LV_CFLAG = 0.
        SKIP.
        ULINE.
        WRITE : / ITAB-INFOCUBE COLOR COL_HEADING,ITAB-IDESC COLOR COL_HEADING.
        ULINE.
      ENDIF.
      WRITE : / "ITAB-INFOCUBE, ITAB-IDESC,
                ITAB-QUERY   , ITAB-QDESC.
      AT END OF INFOCUBE.
        SKIP.
        ULINE.
      ENDAT.
    ENDLOOP.

  • Change default template for a given Theme

    Can we change the default template for a theme ? (if yes, how). I had selected theme 3 (business) during the creation of my application with 2 level tabs. After creating parent tabs and standard tabs and getting it working I changed the theme to theme 12 (blue). When the theme got switched, the default application page template became a 1 level tab.
    This was because for Theme 12, the default Page template is 1 level tab. I want to change this default Page template to 2 level tabs. I couldn't see option of making this as a default.

    Sorry, I found the answer in the documentation in Chapter 7 under
    "Changing Default Templates in a Theme".

  • RSZDELETE - Delete queries and Workbooks problem

    Hi
    in BW 3.x we were able to delete the queries and workbooks with transaction RSZDELETE ;however in NW2004s we are not able to delete this,is there any limitation or this feature has been changed to another transaction ??
    Please help.

    Hi Kevin,
    It's still there.  As Prakash has suggested, the note must be applied.  On a similar topic for the tcode rszc please bear in mind this will be enhanched in SPS 10.
    Oss note 981104.
    Cheers,
    Pom

  • Is there anyway to archive old queries and workbooks rather than deleting?

    Our environment has thousands of old queries and workbooks.  We plan to delete any object that has not been used within 13 months, but there's a concern we may someday need a few of the reports that will be deleted.
    Is there a way to archive old queries and workbooks rather than deleting them?
    Is there another approach to solving this matter?
    Thanks!

    Jim 
    This is really a intersting question as this is a reality as many BW reports are not used/accessed by users but still they have tendancies of sitting on these reports.
      I wanted to suggest to carry-out report usabilty analys. This analysis u can carry out by using BW statistics/standerd queries/new queries in technical cubes showing usability data. If u found that a perticalar BW report is not been used for long time, u can discuss the usability of this report with the report user ( as it is a normal practice of owning BW report by user/user group across industry ), if user is no longer uses it Or do not need it any more, it will be better to delete those reports, this will free up some resources and will reduce the junk. ( if user wants these queries ask him to use it or it will better to personalise report in his desktop easing him to see those reports. )
    Changing the technical names of the query as suggested by Bhanu will have follwing effects.
    1. It will add more reports in repository leading to junk
    2. Old queries still be assigned to user roles, so collide with user authorisation.
    hope views are clear, others are welcome to add or share their experince in this regard.
    kindly assign the points if it helps.

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to create a Templates for Categories and Products In BCC

    Hi All,
    Could you please tell me How to create a Templates for Categories and Products In BCC and how Can I get those Templates details(Categories and Products)in jsp
    If possible can any one send the document or where we find in atg docs
    Regards,

    At product/category/sku level there is a property called template.
    Find the property in ACC/BCC and provide all the values including the URL property.
    In you jsp, you can use this property from product/sku like the way you retrieve any other property from sku/product.
    <dsp:valueof param="product.template.URL" />
    Using that property with <dsp:include> includes that page.
    Peace
    Shaik

  • Default template for Information broadcasting

    Hi,
    I got the info that template 0BROADCASTING_TEMPLATE70 is the default template for Broadcasting but when i try to open it in WAD then it outputs 'No object Found'.
    Even if i try to find it in BI Content, i do not found the one with the specified name.
    any idea which default template is used in for Infoarmation Broadcasting.
    Its very urgent.

    Hi Satish,
    Unfortunately It is not possible in standard. I also checked ECM_EXIT but I was not able to find any specifc interface for long text. You can try this is General abap forum as Long texts generally belong to Basis more then an appication area itself.
    Thanks
    Amber

  • Table for queries and their descriptions!

    Hi,
    Can anybody disclose me table name for queries and their descriptions?
    Raj

    HI,
    Check the table RSZCOMPDIR.
    Also RSZELTTXT and RSRREPDIR
    Hope this helps...

  • What is the default OS for iBook and iBook G4?

    What is the default OS for iBook and iBook G4?

    You can check the specs of ALL iBook models (G3 + G4) at everymac.com
    http://www.everymac.com/systems/apple/ibook/index-ibook.html
    If your iBook has a processor less than 867MHz it won't be able to run
    Mac OS X 10.5 Leopard, though methods exist to allow it unofficially.
    Old first model colors iBook G3 (not white dualUSB) have other limits.
    A reference app for Apple product specifications, download http://mactracker.ca
    Hopefully you can match your questions with the various databases online.
    Good luck & happy computing!

  • Question regarding the default web template for queries

    Hello,
    I am trying to learn the default web template that is using for queries:
    0QUERY_TEMPLATE_BROADCASTING70
    I see that it's <bi:QUERY value="" /> is empty which is logic since the query will be inserted on runtime. My question is, where in the web template does it say that? I can't see any parameter it expects to get with the query's technical name not at the webtemplate code nor at the URL...
    Roy

    Roy,
    I think you are mixing things. The template you are mentioning is used for queries that are executed from the query designer. It's not a web template as any other one you create for your users. So, this web template has some parts in it's code that works with the query execution. When you run a query, the system takes the query definition (made in QD) and executes it with the web template indicated for the query. This determination is made by the program that is used to run queries. You can try using RSRT transaction to debug and check how this it's done. If you want to change the default web template used by query designer to run the queries, you should do it copying any standard template, like the one you mentioned. If you don't do it, you won't get the information correct.
    Hope this helps.
    Regards,
    Diego

  • Permissions for Planning functions, queries and workbooks

    Hello experts,
    i have a short question about permissions in SAP BW and BW-IP. How can I restrict the execution of planning functions/sequences and queries or workbooks?
    Thanks and regards!

    Hello,
    If you record an authorization log for your planning sequence you can see what objects are checked and this should help you to create authorizations to restrict access:
    To record authorization logs for planning sequences, you have to go to RSECADMIN, activate that trace for the user and run the planning sequence as usual. See detailed steps below:
    1. Activate the authorization log
    - Go to RSECADMIN transaction
    - change to "Analysis" tab and click on "Error logs" button.
    - There you can see the "Configure Log Recording". Click on it.
    - It will open a new screen, add the user which need to has the authorization log recorded.
    - save it.
    2. Open a new windows and execute the planning sequence.
    - you can use the RSPLS_PLSEQ_EXECUTE report in se38 or other way to run it
    3. Deactivate the authorization log recording
    - following the same steps to activate the log, delete the user which you added in the step 1.
    4. Check the authorization log
    - Go back to RSECADMIN transaction
    - change to "Analysis" tab and click on "Error logs" button.
    - select the time interval to find your authorization log (or delete selections to see all)
    - click on "display" button
    - find your recorded log
    - double click on it to open the log
    - analyze it.
    Best Regards,
    Des

  • BI7 default styles for queries

    Dear all,
    I am quite familiar to the use of styles in Excel. I need to change somes default styles BEx uses in BI7 (for example, the "highlighted" style). ¿Is there a way to do this or to substitute SAP styles by customer-defined ones? I mean, without using workbooks.
    If this is not possible, ¿which would the best way to achieve this using workbooks?
    Thanks in advance and regards,
    Julio.

    In Bex analyzer, you have option to convert a template into a default template.
    Or you can create a copy of the existing template without AP infoproviders and assign it as default template.

Maybe you are looking for