Adding Query's in Favourite

Hi,
We have developed the reports for client.
I want to know how the client will be able to access his reports as there are multiple users interested in executing there relevant report's.
One way that i know is that the query's will be added in there favourite folder's of BI Server and they will execute them from there, but dont know how to achieve the same.
Or if there is any other way i can provide the reports to client.
Any help will be appreciated.
Thanks,
Dipika

Hi Dipika
If u are developing/showing reports in Web Analyser /or just Bex,,then u can create Zmenu_Role using PFCG t-code.In this role u can add all UR qeuries,,which later u can seggregate if ur client asks u to gv authorisations also. After creatin ZMenu_role,,u can either Publish using Adhoc analysis(Web Analyser without using EP config or In Broadcaster..
Hope it helps
Assign points if helped
Thanks

Similar Messages

  • Adding query to Favourites

    Hey..
    I would want to add a query to my favourties list. I do not want to create a tcode for it. Is there any way other than creating a tcode for adding a query to the favourites list.
    Alternatively, can we add it directly to an area menu or any other suggestion?
    Thanks.
    Edited by: sreelakshmi shilpa on Aug 27, 2008 7:27 AM

    hi,
    we can add only transactions in favourites list.
    so u have 2 options.
    either create a transaction for query and attach it or attach transaction SQ01 in the favourites.

  • Adding query string to files already within shared documents

    Am a Sharepoint newbie, so hopefully this is an easy one. Am trying to add a query string to some hyperlinks (of PDF files) that are already published in a Shared Documents web part. What's the best way to accomplish this? Can't seem to find an easy
    way to edit the raw HTML anchor tag, which would be so simple. Is the anchor tag HTML exposed someplace where I can edit?
    Thanks in advance.

    You could potentially modify the rendering of a specific Shared Documents by modifying the XSL of your view in SharePoint Designer. However, this will not affect all libraries and not all views of the library, just the specific page.
    The jQuery method is actually very easy and can be deployed site-wide by adding a reference to your MasterPage, or to a specific view / page by using the Content Editor Web Part. The actual jQuery would look something like:
    $(document).ready(function() {
    $("a[href$='.pdf']").attr('href', function(i, v) {
    return v + '#YourCustomQueryString';
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Adding query to the view

    Hi,
    I'll appreciate your advice regarding the following:
    I am using a View which consists of several UNION statements.
    for example:
    create or replace view VI_TEST
    as
    select name,lname from Test1
    union all
    select name,lname from Test2
    The questions is: if I am getting a new table, Test3, and want to include it in VI_TEST view - do I have any option (using PL/SQL or other) to make this addition incrementally? (not doing "create or replace view" again but adding the query of Test3)
    Thanks

    Here's the main idea. Hope you get the gist:
    -- create some tables and data:
    SQL> create table test_1 as select 'test_1' data from dual
    Table created.
    SQL> create table test_2 as select 'test_2' data from dual
    Table created.
    -- the pipelined function
    SQL> create or replace function view_pipe return sys.dbms_debug_vc2coll pipelined
    as
      data_col sys.dbms_debug_vc2coll;
    begin
      for c in (select * from user_tables where table_name like 'TEST_%') loop
        execute immediate 'select * from ' || c.table_name bulk collect into data_col;
        for i in 1..data_col.count loop
         pipe row(data_col(i));
        end loop;
      end loop;
      return;
    end view_pipe;
    Function created.
    -- a view based on the pipelined function
    SQL> create or replace view v_myview as select substr(column_value,1,7) my_data from table(view_pipe)
    View created.
    SQL> select * from v_myview
    MY_DATA
    test_1
    test_2
    2 rows selected.
    -- add another »entity«
    SQL> create table test_3 as select 'test_3' data from dual
    Table created.
    -- data is appended in orginal view:
    SQL> select * from v_myview
    MY_DATA
    test_1
    test_2
    test_3

  • Issue adding Query to My Menu

    I am trying to add a Query to a user's My Menu and I get an error
    The procedure I am using to add the Query is
    1) Open Query Manager
    2) Select the query I want to add to the menu
    3) Go to Tools > My Menu > Add to My Menu > Highlight the Folder I want to add the select to > CLick Add button
    Too Many FIelds (QE -3018) [ message 300-19]
    Then the Add My Menu the Add button changes to an Update button,  but noting can be added to th emenu
    I use this same porocedure to on another company on the system and there is no problem
    Has anybody had this problem before and if so how did you resolve it?
    Thanks in advance!!
    Dana

    You may check these threads first:
    Too many fields (QE - 3018)
    Too many fields - QE -3018
    Error : Too many fields (QE -3018)
    Thanks,
    Gordon

  • Unable to save a query view under favourites folder

    Hello all,
    We have the following issue: when we generate a query view we are not able to save it under favourites because the folder does not appear. We don´t know if it is a question of authorizations or what is going wrong.
    Any ideas?
    Thanks in advance.
    Carmen

    <FONT FACE = "Tahoma", Font Color = "Blue">
    Hi<br>
    Try to do the same thing for the same user from some different machine. If the same issue comes then it is not a Front End issue but it is likely to be an Authorisation issue. Get help from BASIS Team.
    <br><br>
    Hope it helps.<br>
    Cheers Abhijit</FONT><FONT FACE = "Verdana", Font Color = "Red">
    Please assign Reward Points if I deserve them in your opinion
    </FONT>

  • Adding Query in the Roles

    Hi,
    I am having arroung 40-50 roles defined based on the various authorization levels.
    Whenever we make a new query and want to give access to these roles, we go and add the query manually in all the roles (RRMX -> Select the quey -> Add in Role) and give authorization of the query in PFCG.
    Is there any way to give access of the the query to all the roles and setting the values for authorization object.
    Regards
    Ramesh.

    Ramesh,
    I would assign all of the queries to one role and then assign that role to all of the users. You would then keep the other data driven authorizations separate in the original 40-50 roles and remove the queries. This is much easier to maintain. Hope this helps.
    Regards,
    Keith

  • Adding query string parameter to link

    I'm reviewing this tutorial by David Powers and I'm using CS6. 
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt2.html
    Everything went well until I tried to add query string parameters to links (EDIT and DELETE) on the manage_posts.php  page.
    "You add a query string to the end of a link through the Parameters dialog box, and bind the primary key from the recordset. Although it's a simple operation, many people tend to get it wrong, so follow the next steps carefully."
    I did.  In fact I did it twice.  Both times DW inserted = sign in the wrong place.
    DWCS6 code:
    <td><a href="update_post.php?<?php echo $row_getPosts['post_id']; ?>=<?php echo $row_getPosts['post_id']; ?>">EDIT</a></td>    
    Corrected Code:
    <td><a href="update_post.php?post_id=<?php echo $row_getPosts['post_id']; ?>">EDIT</a></td>
    Anyone else experiencing this?
    Nancy O.

    OK.  I typed the Name manually. But I neglected to hit the tab key twice to arrive at the Value input field.
    Screenshot 1
    After hitting tab key twice, value field is in focus and 2nd lightening bolt appears.
    Gads!  No wonder people mess this up. 
    Thanks, David.  I appreciate your clarification. 
    Nancy O.

  • Adding query to Portal

    Hi,
    i'm trying to publish a Query on Portal. Once on the Content Administration i see some folders and roles, if I right click on a folder i can successfully create an iView with the query on it but i still can't see it on the Portal (there's already an iView on the folder and i do see it on Portal, my new created iView is just next to it but i can't see that one).
    Do i need to add the iView on a role or something ? how can i do that ?
    thx in advance
    JP

    On Portal Content Admin.. double click on the Role to publish on, select folder on Role, right click on the iView (on the content frame) select Publish on role -> Delta link.

  • Adding query results

    Hi,
    I'm new to SQL, reading and learning a lot, but I have the following question:
    There is the following query:
    select something test1
    , something test2
    from dual
    I would like to add the query results test1 and test2 into another variable like: test3 = test1+test2
    How do I accomplish this?
    I'm searching throug the SQL reference guide, but >1600 pages takes lots of time to find the needle in the haystack.
    Thanx in advance
    Cees

    Hello
    If you want to do this in SQL you can just do
    SELECT
         something test1,
         something_else test2,
         something + something_else test3
    FROM
         dual;Or you could do:
    SELECT
              test1+test2
    FROM
         (SELECT
              something test1,
              something test2
         FROM
              dual
         );If you want to do this in PL/SQL you can do something like:
    set serveroutput on
    DECLARE
         ln_Result     NUMBER;
    BEGIN
         SELECT
              1 + 10
         INTO
              ln_Result
         FROM
              dual;
         dbms_output.put_line('Value of ln_result: '||TO_CHAR(ln_result));
    END;HTH
    David

  • Adding Query to My Menu

    Hi,
    In the My Menu tab of Main Menu there is a Query category. How to create a shortcut to query in the My Menu ?
    Thanks B4

    Hi,
    If you open up Query Manager.
    Tools / Queries / Query Manager
    Then Select the Query you want so its highlighted in Yellow (you don't have to run it, just make sure its selected.)
    Then select Tools / My Menu / Add To My Menu.
    You can then select the Queries folder and add the query to your My Menu.
    Regards,
    Adrian

  • Adding Query in SRM 7.0

    Hi,
    I need to add query in ST purchaser sourcing. I am able to add query related to AUC, RFX and Template. Our client wants to add Query related to Shopping cart status in ST Purchaser sourcing.
    I create new SC staus Query type as SAPSRM_Feeder_SC in POWL_Query and assigned this to ST_Souricing in POWL_Queryr. This is not enble in ST Souricing. Do i need to do something apart from this? is this possible to add SC status Query for ST Sourcing?
    Thanks,
    Ravi

    Hi ,
    Can anyone render their expertise??

  • Adding Query String Parameters to Table loadData

    I am new to ADF/JDeveloper, so hopefully this is a simple question...
    I have created an ADF task flow containing a table of fake weather data. This data is loaded using a URL Service Data Control. The URL service takes a zip code as a querystring parameter and returns a CSV of weather data. All of this works fine when I create the data control, test the URL and add the table. However, right now I am hard coding the zip code into my loadData argument (where I submit the zip code).
    What I want to do is read a querystring parameter from the JSPX page my task flow resides on and submit that zip code to loaddata in my bindings. When I write the EL that I think should do this (the same EL works when I put it in an outputText box), the task flow fails to load the correct zip code.
    I have tried creating a backing bean and loading the data from there, but this doesn't seem to work either. So what is the "ADF way" to do this?
    Here are my current bindings from the task flow page definition (see NDValue):
    <bindings>
    <methodAction id="loadData" RequiresUpdateModel="true" Action="invokeMethod"
    MethodName="loadData" IsViewObjectMethod="false"
    DataControl="ZipWeatherDC" InstanceName="ZipWeatherDC"
    ReturnName="ZipWeatherDC.methodResults.loadData_ZipWeatherDC_loadData_result">
    <NamedData NDName="zip"
    NDValue="#{param.zipcode}" NDType="java.lang.String"/>
    </methodAction>
    <tree IterBinding="loadDataIterator" id="Return">
    <nodeDefinition DefName="net.hross.adf.weather.model.ZipWeatherDC.loadData_Data">
    <AttrNames>
    <Item Value="dayOfWeek"/>
    <Item Value="hiTemp"/>
    <Item Value="lowTemp"/>
    <Item Value="precip"/>
    <Item Value="sky"/>
    <Item Value="zipCode"/>
    <Item Value="img"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    </bindings>
    Thanks in advance for any advice!
    Ross

    OK.  I typed the Name manually. But I neglected to hit the tab key twice to arrive at the Value input field.
    Screenshot 1
    After hitting tab key twice, value field is in focus and 2nd lightening bolt appears.
    Gads!  No wonder people mess this up. 
    Thanks, David.  I appreciate your clarification. 
    Nancy O.

  • Adding Query in the Favorites

    Hi All,
          How can I add queries to favorites, so that it will execute in Analyzer not in the Web. I am able to add the queries in favorites but the are not executing in the Analyzer... Also I tried to create a role and add queries in that... Even that did not work...
    Regards,
    Vinay K.

    Hi Neelam,
            I want to do it for queries not workbooks... Is there any way to do that?
    Thanks for the reply...
    Vinay.

  • CASE.. WHEN statement.. Query not working

    Hi,
    Can someone help me to correct the following code:
    select * from(
    select col1,col2,
    CASE
    WHEN
    Percentage >=75 THEN 'red'
    ELSE
    'green'
    end as color from (select
    ROUND(((COUNT(CASE WHEN class ='A' THEN 1 END)/
    nullif((SUM(CASE WHEN class ='B' THEN 1 END)+ SUM(CASE WHEN class ='C' THEN 1 END)),0))*100),1)) as Percentage, col4,col5
    from table
    group by class,col2
    order by class;P.S: Percentage is the alias for the complex query, I am using.... it is not the column name.
    Front end is APEX, once the code is syntactically correct, I can use it in APEX. So didn't post it in APEX forum.

    Hi,
    Emy_Jack wrote:
    I am sorry..
    OK the structure of the table is the following
    TABLE NAME: STATISTICS
    STRUCTURE:
    REGION VARCHAR2(50),
    COUNTRY VARCHAR2(50),
    SITE VARCHAR2(50),
    GROUP VARCHAR2(50),
    GROUP isn't the best name for a column; it will get mixed up with the keyword GROUP used in GROUP BY.
    Why not name your column something that is not an Oracle keyword, such as grp or stats_group?
    LANGUAGE VARCHAR2(50),
    PEOPLE VARCHAR2(50)Posting the table structure is better than nothing, but it would be even better to post a working CREATE TABLE statement, so the people who want to help you can re-create the problem for themselves, and test their ideas.
    So the query is:
    SELECT * FROM(
    SELECT REGION,COUNTRY,SITE,
    ROUND(((COUNT(CASE WHEN GROUP_FIRST ='A' THEN 1 END)/
    There's no column called group_<b>first</b> in the table structure you posted.
    NULLIF((SUM(CASE WHEN GROUP ='B' THEN 1 END)+
    SUM(CASE WHEN GROUP ='A' THEN 1 END)),0))*100),1)
    AS "PERCENTAGE",
    CASE
    WHEN
    "PERCENTAGE" >=75 THEN 'red'You can't define a column alias (such as percentage) and reference it in the same SELECT clause. In fact, the ORDER BY clause is the only place where you can use a column alias in the same sub-query where it was defined.
    If you define a column alais in a sub-query, then you can use it anywhere you want to in a super-query. In this query, do the GROUP BY and compute percentage in a sub-query, then compute color (referencing percentage) in the main query.
    ELSE
    'green'
    end "Color", group,peopleIf group and people are not in the GROUP BY clause, then you can't use them by themselves in the SELECT clause like this.
    FROM
    STATISTICS
    WHERE GROUP IN ('B','A')
    GROUP BY REGION,COUNTRY,SITE
    ORDER BY REGION,COUNTRY);ORDER BY in a sub-query is usually just a waste of resources. The order will not necessarily be preserved in the main result set. Don't use ORDER BY in the sub-query here, use it only in the main query.
    ERROR:
    ORA-00904: "PERCENTAGE": invalid identifier
    00904. 00000 -  "%s: invalid identifier"
    *Cause:   
    *Action:
    Error at Line: 8 Column: 5Edited by: Emy_Jack on Mar 16, 2013 3:06 AMAs an example of how to use a sub-query to define an alias:
    WITH     got_percentage     AS
         SELECT       region, country, site
         ,       AVG ( CASE
                             WHEN  group_first = 'A' THEN  100
                                                  ELSE    0
                         END
                    )          AS percentage
         FROM      statistics
         WHERE       group_first     IN ('A', 'B')
         GROUP BY  region, country, site
    SELECT       region, country, site
    ,       percentage          -- if wanted
    ,       CASE
               WHEN  percentage >= 75  THEN  'red'
                                               ELSE  'green'
           END          AS color
    FROM      got_percentage
    ORDER BY  region_country
    ;If you'd care to post CREATE TABLE and INSERT statements for a little sample data, and the results you want from that sample data, then I could test this.
    Edited by: Frank Kulash on Mar 16, 2013 7:17 AM
    Added query.

Maybe you are looking for

  • Correcting useful life of an asset in previous year

    Hi, We have implemented SAP last year in April at one of our sites. At the time of initial upload of assets, we made a mistake and some of the assets were uploaded with incorrect useful life. Till date every month we were running depreciation based o

  • When I try to send a sequence to the color fcp closes. What can I do?

    when I try to send a sequence to the color fcp closes. What can I do?

  • How can I connect my iphone4 to my PC

    I just got my iphone4 ( AT&T) from my friend . How can I connect my iphone4 to my PC .

  • Regernerating lost references with iDVD - Package Content

    Hello all! The situation: I have some old iDVD projects which I would like to overwork a little bit. Meanwhile I am on iDVD'08 and some of the referenced images have sligtly moved from there original location. When iDVD starts up with such an obsolet

  • Kodo 2.5 Joins

    Manual says: "Added the com.solarmetric.kodo.impl.jdbc.UseSQL92Joins configuration property. Set this property to 'true' to use SQL 92-style joins in queries, including left outer joins where appropriate. You can also set this property on an individu