How to get the standard Menu of Query Designer into Web Template

Hi Experts,
is there a way on how to put the standard menu within Bex Query Designer (after executing a Query with the Query Designer you get into ad-hoc reporting with a menu including several functions like print, show as..., properties, etc) into an individual Bex Web Template?
Copy & Paste source code will not work I guess because of several javascript functions I don't have access to.
Thanks & Best regards
Tobias

BEx queries are displayed on the web using standard web template 0ANALYSIS_PATTERN or some customized version base don your implementation.
You can either include the 0ANALYSIS_Pattern web template in your custom template or use Save as to create a new template with 0ANALYSIS_Pattern  AS THE STARTING POINT.

Similar Messages

  • How to get the selection parameters from logical database into one of the t

    Hi Sap ABAP Champians,
    How to get the selection parameters from logical database into one of the tab in the tabstrip selection-screen.
    Please help me for this
    Thanks
    Basu

    Hi
    Thanks, that will work, but then I'll have to insert code into all my reports.
    I can see that "Application Server Control Console" is able to rerun a report.
    This must mean that the Report Server has access to the runtime parameters.
    But how?
    Cheers
    Nils Peter

  • Can i get the history tab in query designer in bw 3.5 version

    can i get the history tab in query designer in bw 3.5 version plz help me.

    Hi,
    yes..
    do this..
    Go to SPRO->IMG->SAP NEtweaver->SAP BIW->Reprting-relevant Settings->General Reporting Settings in BEx->Activate personalization in Bex.
    Regards,
    San!

  • How to get the recordcount of a query in a array

    I have an array called "sums" that holds 4 query's, each
    query has a different number of records.
    Then i use this code to loop the records of the query inside
    the array:
    <cfloop index="x" from="1" to="#arrayLen(sums)#">
    <cfloop index="i" from="1" to="#sums[x].recordcount#">
    data to loop
    </cfloop>
    </cfloop>
    This results in 4 times 4 records, of course as i now use the
    array length in the inner loop.
    My question is, how can i get the recordcount of a query in a
    array so i can use that for the inner loop "to" value.
    Thanks.

    quote:
    Originally posted by:
    MarcovandenOever
    Does sums[x]recordcount point to the first query in the array
    sums when i use it like this?
    In the array there are four query's, i want to loop the
    array, then i want to loop the records of each query.
    <cfloop index="x" from="1" to="#arrayLen(sums)#">
    <cfloop index="i" from="1" to="#sums[x].recordcount#">
    data to loop
    </cfloop>
    </cfloop>
    No. It points to each query in turn. So if you have four
    queries, the first time it will point to sum[1]. Then next time
    sum[2], etcetera. It should work exactly the way you want "as is".
    If you are having a problem, it is probably related to the code
    inside your inner loop.

  • When I try to print an address from Address Book on an envelope, the printer menu shows the menu from IPhoto.  All other print requests show the normal pinter menu. How do get the normal menu?

    When I try to print an address from Address Book on an envelope, the printer menu shows the menu from IPhoto.  All other print requests show the normal pinter menu. How do get the normal print menu?

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • Hot to get the lowest price in query designer

    Hi All,
    I hav eto develop  a report for vendor evaluation.
    fields are like this:  Vendor, Average price,total supply,rejected, accepted, price rating, quality rating.
    Formula for price rating is :Price Rating = If Price of a Vendor  for a material is lowest than weightage= 40
    SecondLowestVendorforamaterial = WeightageofFirstLowest Vendor -   (Avg.PriceofSecondVendor u2013 Avg.priceofFirst Vendor) / Avg.Priceoffirst vendor ) *100
    I am not getting how to get the lowest average price....pls advise.
    Regards
    Shweta

    create a keyfigure for material lowest price (aggr-Minimum).
    And compair it with vendor's price in a formula for further processing.

  • Urgent :how to get the o/p from report2.5 into excel

    hi all
    anybody can tell me how to get the report o/p in to excel format.
    please help me urgent. any example send me on [email protected]
    Regards
    onkar

    Have you tried to put this question in the report forum?
    Fabrizio

  • How to get the standard texts available in a smartforms

    Hi Experts,
        How can we find out the standard texts that are exist in a particular smartform . is there any table/function module available to get those standard texts? I am finding the table STXFTXT, from that I am getting only textline. But I need the standard text names that are used in a smartform.
    Thanks & Regards,
    Suresh

    hi,
    1,Use SO10 Tcode to write standard text in Smartform.
    2.For long text
    method1
    Create TEXT node- general attributes change text type to include text
    then you can input text name/text object/text id/language
    method2
    create PROGRAM LINE node - use FM READ_TEXT to read it to a internal table
    then use LOOP or TABLE node to display it
    For TEXT module(For foreign language)
    Tr-code:smartforms -- choose Text module(not choose form)--create a text module object
    then enter smartform Create TEXT node- general attributes change text type to text module
    input the text module name which created by above
    3.
    1. take function module name of the smartform.
    2. goto se37 and type that fm name.
    3. goto attributes tab
    4. double click on either program or include .
    5. There u can find all the subroutines used inside smartform.
    6. search for "perform %move using %textkey-name".
    4.Standard Texts are created in SO10 Tcode and stored in STXH table with OBject ,ID and NAME parameters. We can use Read_Text FM to read the text.
    check the tables STXH & STXL.
    5.
    How to CAll Standard Text in Smart Forms
    In SFs you can insert the standard tests using the TEXT node. Create a TEXT NODE. Then in the GENERAL ATTRIBUTES of this TEXT node select INCLUDE TEXT in the TYPE option. Then you have to enter the text name, object , ID and language in the provided fields. Then if you dont want any error if there is no text in the corresponding text then CHECK the check box "No errors if no text available.

  • How to get the value of mysql Query.....

    Hi Friends,
    I am running this query thorugh JSP :
    rst = stmt.executeQuery("select count(*) from information_schema.columns where table_name='countrylist';");
    Here this query returns that how many columns the table countrylist have....
    But My problem is How I can take this value in a variable for my further process.
    ple help me out....

    Hi Friends,
    I am running this query thorugh JSP :
    rst = stmt.executeQuery("select count(*) from
    information_schema.columns where
    table_name='countrylist';");First, consider using prepared statements, although it' snot much of a problem with this example.
    Second, consider applying good application design by maintinging strict MVC and multi-tier separation. JSPs shouldn't even know that there's something like a database, and certainly not access one.
    Here this query returns that how many columns the
    table countrylist have....
    But My problem is How I can take this value in a
    variable for my further process.
    ple help me out....You mean "how to use the result set"? Consider reading the API or at least using Google...
    http://www.google.com/search?q=resultset+examples

  • How to get the alert context from scom event into incident description?

    Hello,
    I user SCO for creating incidents of SCOM events. My problem ist that in some events the most interesting information is standing in AlertContext. But I cannot add this text to the descritipn field of our incident tool. If I user the published variable Context
    from MonitorAlert the creating of the incident fails. The right information is standing in the Params field of the Context content. But if I add the Params variable from MonitorAlert there is not the content given.
    So how can I add the AlertContext information in my incident content?

    Hi,
    I use the Publish Data Context from "Get Alert" and the xpath-Query below to get the short name of the service if Alert is "Windows service stopped".
    I think it's difficult to have a default Query because the Context is too various fot all OpsMgr Alerts.
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • How to get the field texts from abap dictionary into screen Text fields

    Hi SapAll.
    here i have got to modify one zscreen by adding 1 more field,when i added one field in teh screen by just writng the code in program as SELECT-OPTIONS ilart FOR CAUFVD-ILART.
    but iam unable to get the field text for the text field from teh table CAUFVD.
    CAN ANY BODY HELP ME IN THIS.
    regards.
    varma

    Hi Varma,
    Even if you want to personalise the Text also you can do without checking the DICTREF checkbox. Dirctly you can give the text in the Text elements by using the Menu GOTO -> Text Elemetns -> Selection Texts.
    Regards
    Thiru

  • How to get the names of people currently logged into the system?

    Hi,
    How do we get the names of people who are currently logged in to the system at any point of time...i know that we can get the history of people logged in using "wwv_flow_user_activity_log" but is there a way to know who are the currently logged in people ...
    regards
    Naveen

    hi Sergio,
    well that might not work correct all times as some user might have logged in and logged out but the log file will still contain his name...The primary reason why we want to know this is , say suddenly we want to bring down our application for maintainnace purposes, so incase if any body is logged in at that time we want to send them mails that the system is going to be taken down in next 30 mins so and stuff....
    Is there any other alternative ...
    regards
    Naveen

  • How to sum the  result rows at query designer

    Hi,
    We want to sum  the result rows which are at the end of the row by the help of query designer?So ,we directly see at analyzer
    exp:
       ..A.jan...A.feb...B.may...B.jun...SumA...SumB....SumA+B
    X..1............9..........6..............7........10.........13..........?????
    Edited by: zarata on Oct 23, 2011 12:49 PM
    Edited by: zarata on Oct 23, 2011 1:07 PM

    Hi,
    Could you please provide some more information.
    if you have characteristics iobject whose values are (A, B etc) and calendar month in rows and then at column level you have key figures then if you have turn on the "Display Result Rows" property of both iobject in Bex  as "Always" you can get the result. At the same time you can set "Display Overall result" property of the Query to get overall result.
    Regards,
    Pravin

  • How to get the value a user  just enter into a table???

    hi
    i have a table that adds a new row when a user clicks ADD button. i was able to implement this part, now the user needs to enter some data into this row, i need this data to save into file. how can i get this data from the row?????? thank you.

    is there some kind of even that is fired when user enters data into a cell? you are saying that the data is already in the table model after user enters data. then i need to get a tableModel by calling
    TableModel tm = JTable.getModel();
    and then use this tm to get value? using what? getValueAt?

  • How to get the dates a user has logged into the portal??

    I need to know all the times and the dates a user has loggin to the portal? Do you know any way to do this? I was trying to use "successfullogoncount" from UME_STRING of the PCD database but it doesn't say anything about the dates. I also try to use "lastsuccessfulllogon" from the sama table but, as the name says, it just give me the last date of logon... Please help!!!

    Hi Pablo,
    probably you could work with Portal activity reports.
    This can generate reports on activity in the portal, either reports on how many users were logged on to the portal or reports on the most popular pages and iViews.
    look out on this weblog at
    https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/pub/wlg/1242. [original link is broken] [original link is broken] [original link is broken]
    From this you can know which user has logged on at which date and time.
    If you are not looking for Portal activity reports try this:
    You can  get this information in the Visual Administrator of the J2EE Engine.
    Goto  Security Provider Service -> Runtime -> Login (Sessions).
    This would return a table showing the users along with the logging in start date&time, (if logged out) log out date&time, user-Ids, etc.
    Hope this helps,
    Regards,
    Uma.
    Message was edited by: Uma Thirugnanam

Maybe you are looking for

  • US iBooks Store should have access to ALL books worldwide

    The US is very rich in cultures. For instance it has a very big Latin American population. The iBooks store should have access to the Spanish books sold in Spanish countries so that this portion of US citizens can read books in their native language.

  • CORBA MARSHAL and DATA_CONVERSION errors

    Hi, I'm developing a CORBA application and everything was well till now. I have to bring a lot of information from a database. When I run the method local (without ORB) everything goes well but when I do it through ORB it fails. I get two errors: org

  • Oracle XE Listener Requiring Service To Be Set To 'Automatic (Delayed Start

    Can anyone offer any insight/explanation as to why the Oracle Listener would require the service to be set to 'Automatic (Delayed Start)' When it is set to just automatic, it does not even try to start. No output to the listener log, and nothing to t

  • Timestamp to small - DC/DC converter

    I have send you the whole schematics in ms12 file. This schematics should be simulation for this: http://oi48.tinypic.com/v98k0.jpg What should this be: - one simple dc/dc converter with max 400W output What i want to do: -test with oscillator to see

  • Stream closure, eternal doubts...

    Hi all, streams are very hard to digest... My question: 1) Suppose I have a public method which open an InputStream of a JAR file and returns an InputStream of a specific file contained inside that JAR. 2) When the caller of that method will finish w