Combining Several Queries in Separate Tabs in One Spreadsheet

Hello BEX Experts.  Our BEX version is 7.1.  I need to combine 5 different queries into on workbook, in separate tabs.  This way the user only executes one workbook and the 5 different reports will be refreshed and ran.  In version 3.5, there is an option to do this under Tools ==>Insert Query.  Can someone show me how to do this in 7.1?  I apologized if there is already a forum document for this, I could not find it.  Thank you very much in advance for your help.

Hi Celine,
Follow the following steps:
1.  Open Bex Analyzer 7.1. Click the Bex Analysis Tool Box Open Icon and execute one of the query you want to insert in the work book. Data would be displayed in the excel format in one Sheet.
2.  Click on the Tools Icon and select the option to copy this sheet. After the sheet is copied you can go into design mode and change the data providers there. For Ex. In sheet  1 DP was Query1 for the 2nd sheet you can choose Query2. These steps can be repeated until you get desired number of queries embedded in the work book. Advantage of copying the sheet is you do not have to go into design mode and insert the Table & Filter options each time. You just habe to change the data provider here and work is done.
3. While following above steps remember that the Data Provider Name for every sheet should be different i.e If it DP_1 for sheet one make it DP_2 for 2nd sheet and so on till last sheet. If you miss that then all the sheets would ultimately take the same query name which you last entered.
Hope it helps
Regards
Raj Rai

Similar Messages

  • How to open a several links in separate tabs in Safari you drag to more tabs button"

    how can I open a several links in separate tabs in Firefox, In Safari you drag all the links to the "+" button and they all open in separate tabs.
    This is different then the plug-in "Multilink and snaplink" since the links I need to open are not selectable they are just written on a document.
    For instance, it would look like this:
    http://www.hi1.com
    http://www.hi2.com
    http://www.hi3.com
    etc.....
    Thanks!!!

    Hello CommeLeMois,
    You should be able to open links in new tabs by holding the Command key (⌘) and clicking on the link. Check in Safari Preferences and looked and the Tab section to see if you have the right behavior enabled. 
    Safari 7 (Mavericks): Tabs pane of Safari preferences
    http://support.apple.com/kb/PH17163
    Regards,
    -Norm G. 

  • How Do I Combine Several Images Into One Image Which Contains Links To A Series Of Web Sites?

    How do I combine several images into one such that the combined image contains a series of web links? In particular, I’d like to create such an image and put it into my Outlook email signature. At present, as per the image below, I have at least six separate images in my email signature with each image containing a web link. Is Photoshop the best tool for this job? Or would it be easier to do this in some other package? I have three packages at my disposal: Photoshop, Ilustrator and Dreamweaver. Can someone please explain in detail how I would do this? Or perhaps someone could direct me to a link that explains how to do this. Thank you.

    Thank you for that correction, Hobotor. I admit I hadn't thought about an image map, in the context of someone who doesn't seem to know HTML very well...  My thinking was running along the use of the Photoshop Slice Tool to get most of the way there...
    To expand on the above, if you were to slice up your image using the Slice Tool, say like this:
    Save for Web & Devices will create the HTML and save all the sub-images.
    Then you edit the HTML and add a (hypertext link) elements surrounding the various images.  Only thing is you'll have to set the border-style of the images to none.
    For example:
    <!-- Save for Web Slices () -->
    <table id="Table_01" width="554" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td colspan="10">
       <img id="Sig_01" style="border-style:none" src="images/Sig_01.jpg" width="554" height="56" alt="" /></td>
    </tr>
    <tr>
      <td colspan="10">
       <a href="http://www.GrahamsWebSite.com"><img id="Sig_02" style="border-style:none" src="images/Sig_02.jpg"
            width="554" height="43" alt="" /></a></td>
    </tr>
    etc.
    A full copy of the HTML and images can be found here...  View Source to see it as an example:
    http://Noel.ProDigitalSoftware.com/temp/Graham/Sig.html
    -Noel

  • Several Queries in one Repeating Report

    I have an employee production report. There are several queries that combine to display several different sets of data for only one individual. I want to be able to just run one report and see not just one employee, but every employee under a given manager. Right now the parameter is set to be the individual employee, but managers need to be able to run just on query and see all of their employees' production, so what I need to be able to do is have a report with a manager as the parameter, and display each and every one of his/her employees. With just one query and one set of data, simply grouping by thaT field would suffice, but my report contains about 5 different queries per individual. I've tried using a UNION query, but does Reports Builder not have a way to do this within the application rather than having to do it in the SQL?

    You would use a subreport to do this. You will need to be sure and link the input variables from the main report to the subreport to keep the rowsets in synch.

  • How to combine several regex queries into a script?

    Hi there,
    is it possible to combine several regex queries into a javascipt? I export the text from a database with custom tags and the regex queries perform text AND character style replacements.
    example
    Let's say my exported text is the following
    "I have a <tag_bold>very big text</tag_bold> that includes a lot of different character styles, such as <tag_bold>bold</tag_bold>, <tag_italic>italic</tag_italic>, <tag_bold>bold with some <tag_bold_underline>underlined words</tag_bold_underline></tag_bold>,
    or ever words with different <tag_size-2>text size</tag_size-2>"
    The result I want is
    "I have a very big text that includes a lot of different character styles, such as bold, italic,
    bold with some underlined words, or ever words with different text size"
    Notice that all the tags open and close in the same paragraph and that there are nested tag pairs in some cases. So i execute my queries (more than 20) from the outer pair to the inner, that is:
    <tag_bold>...</tag_bold>
    <tag_italic>...</tag_italic>
    <tag_size-2>...</tag_size-2>
    <tag_bold_underline>...</tag_bold_underline>
    Thanks in advance for your help
    dps

    Hi Shonky,
    thank you for your answer. It seems that it is very close to the solution.
    1) I see now that my question was not clear enough.
    In the text that is included between the tags, I want to apply a Character Style I have define in the character style palette of InDesign CS3.
    That style can contain a lot of options, such as font family, size, style or color changes and is different for each tag.
    2) I tested the function with my tags:
    function my_replace (tag_bold)
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.findWhat = '<' + 'tag_bold' + '>' + '(.+?)</' + 'tag_bold' + '>';                     // here is the name i use in the regex tag
    app.changeGrepPreferences.changeTo = '$1';
    app.changeGrepPreferences.fontStyle = 'tag_bold';                                //here is the name of the Character Style I have define in InDesign
    app.activeDocument.changeGrep();
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences = NothingEnum.nothing;
    result: nothing happens
    3) Using in the script only the body of the function and running it, it highlights the right words with that pink color and shows that the Style of the text is "tag_bold", which is not available in the font family I use (Minion Pro).
    I think that the function needs a modification in the line "app.changeGrepPreferences.fontStyle = 'tag_bold';", especially the "fontStyle" attribute, but I don't know what it is. I'm not a javascript expert and maybe I don't know the right way to use this function with InDesign. I read some books about InDesign Scripting and Regular expressions, but  I didn't found all the answers I need as the one above or how I can run all the queries in one script (this is necessery because of the number and the order of scripts, to avoid mistakes).
    Thanks
    dps

  • How do I combine several pdf files into one so I can send them as one file.

    how do I combine several pdf files into one so I can send them as one file

    Reader doesn't have that ability. You would need Acrobat.

  • How to combine several files into one?

    How to combine several pdf files into one?

    Combine Files is a feature of Acrobat Pro.  Because Reader Touch does not support the feature (yet), this is not the right forum for the question.
    Here's the Acrobat forum for Creating, Editing & Exporting PDFs.
    http://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs
    You can ask questions and get help from Acrobat experts there.  Good luck!

  • Combine several pdf docs into one single pdf doc

    I need to combine several pdf's into one pdf. How can I do this?

    Or with non-Adobe programs that you may find by Googling...

  • How do I combine several pdfs into one document?

    I just switched to Yosemite, and now I cannot figure out how to combine several pdfs into one document. I rarely need to do this, so I looked at past tutorials, but nothing seems to work. Help!

    I don't understand - I've just tried it and it worked. I had 2 multi-page pdfs, opened both in Preview, followed my earlier post and saved the new pdf. The saved file is multi-page
    Odd

  • Is there a way to combine two backups on separate disks created by time machine into one on a single disk?

    Is there a way to combine two backups on separate disks created by time machine into one on a single disk? One backup is a continuation of the other and was created when I rec'd a message that the 1st disk was full. I'm using a iMac (late 2010) and both external drives are WD. Thanx.

    With the timeline selected, go to File/Export/Movie and export each as a DV-AVI video.
    You can then combine those AVIs into a new project with virtually no loss of quality.

  • Combining two queries to one

    I have two queries and I would like to output the results as
    one and sort by Name ASC
    Any help would be great thanks

    Either use union in your SQL query or use Coldfusion to
    combine exisitng queries and create a new query resultset.
    Something like this:
    <CFQUERY NAME="getDetailsQuery1"
    DATASOURCE="#DSNNAME#">
    SELECT * FROM getDetailsA
    </CFQUERY>
    <CFQUERY NAME="getDetailsQuery2"
    DATASOURCE="#DSNNAME#">
    SELECT * FROM getDetailsB
    </CFQUERY>
    <CFQUERY NAME="getDetails" DBTYPE="query">
    SELECT * FROM getDetailsQuery1
    UNION
    SELECT * FROM getDetailsQuery2
    ORDER BY Name ASC
    </CFQUERY>
    Hope this helps!
    Cheers / Manu.

  • Combining several clips into one movie

    what is the best way to combine several short video clips into one dvd?

    you've read the manual...?
    http://www.apple.com/support/imovie/tutorial/index.html

  • Combine to queries to make one report

    Hello,
    Is it possible to combine to queries to make one report?
    I have been asked to create a report to shows the settlement status of a mileage report for the last two months and also in the same report show everything that has to be settled.
    I have created two queries u2013 one that shows restricts by last two months and another that restricts settlement by u201Cto be settledu201D.
    I would now like to combine these two queries to create one report. However in report designer when I insert the two queries it does not allow incorporating the two to make one report. It just allows you to leave one below the other.
    Is there a way I can combine the two or is there something I can do in the query designer, because as far as I know you canu2019t use dimensions twice in the columns.
    Thanks
    Forhad

    HI  Forhad Hussain,
    Create a new query by adding all required keyfigures(settled & to be settled) using restricted key figures, instead of global restrictions.
    Or enhance any of existing report by changing global restricting and adding new RKF's.
    Hope it Helps
    Srini

  • Combining multiple tabs into one long web page

    Lets say you have 12 tabs open. Can the html from each tab be combined into one flowing page kind of like Autopager does for repeating pages? Linky can grab the links of one tab at a time, but you have to repeat the process for the other 11 tabs. It would be cool to force all 12 tabs into one flowing/continuous tab, then Linky could read basically all 12 tabs at a time since they are really all in one new tab.

    welcome phiphika to the  board…
    in terms of convenience, I would indeed export/share all 6 movies.
    to tape, or as Quicktime/FullQuality…
    both methods create a lossless copy of your final movie(s).
    in step II, import all 6 project into a new iM project, as said above, you don't loose ay quality with that back'n forth copying... only some time ;-)… you can set then chapter markers etc....
    besides, your workflow is as mine on larger projects: not 678 clips into one monstrous project of some dozends Gigabytes, just segments…

  • Combining several iMovie projects into one, time-not space-being the factor

    Hello,
    Space is not an issue (large external drive), but I'm trying to figure out the fastest way to combine several iMovie projects into one (so each movie will become a chapter in iDVD). I'm pretty sure there must be a better way than I'm attempting, selecting all the clips in clipviewer, then dragging and dropping to the new project clipviewer. As I've done this, the "time remaining" window keeps growing (started out about 4 minutes, climbed to "92 minutes remaining," then I aborted the move). Details: each movie is about 8-10 minutes long, widescreen, made up of various (sometimes many) dv clips, audio segments, still photos, etc.
    I have added dv clips to a project via the media folder (project unopened), but this was a single item and simple to move from trash into the project. In this case, I'm not sure what to move in order to save the entire project intact.
    Thanks so much for any help,
    b
    Message was edited by: Bimp

    Thanks for your reply, Klaus. I'm just now getting to try your suggestion to copy and paste from timeline rather than drag and drop from clipviewer. Alas, it seems to be choking terribly on the transfer. This video is not a 60 minute movie, either; it's about ten minutes. I has about 60 files to it. I did get to the point where I felt confident enough to empty the trash and save the project, so I assume the clips that are there are not still "attached" to the unedited dvs.
    Earlier I tried to export, in the advanced settings, to the full quality dv, but the quality really dropped, way too much for the intended use. I'm pretty much stumped at this point, unless I can hear some other suggestions.
    What I might try doing is simply dragging and dropping all the packet contents of the media folder into the other movie's media folder, but then I suspect I'll have to rebuild the darn thing from bits and pieces and it may be like putting Humpty Dumpty back together again...ugh.
    I'm sure I'm not the first person to face this challenge, am I? Of course, my lesson learned is to build one dvd's contents in one imovie project. If it weren't for the fact that I need to offer viewers the option to "play movie" (play all the videos as one movie) I'd simply drag each movie into iDVD and do it that way (the dvd showing each video separately).
    Would still love to hear of other possible solutions here, before trying some other forum.
    thanks!
    B

Maybe you are looking for

  • Strange issue on row selection in a wd_table

    Hi all gurus, I'm working on an SRM 7 system, specifically on the WD Component /SAPSRM/WDC_CTR_DOTC_IT, view V_CTR_DODC_ITEMS. In the view there's a table showing items of a contract; we created a custom button ("item deletion") which simply triggers

  • Can I import a tablespace into Oracle 10g Express Edition

    I am very new to Oracle 10g Express Edition. We have a server running Oracle Enterprise Edition and we have been creating a transportable tablespace to be imported into a few servers. This works fine for us. I would like to find out if I can import t

  • Disconnecting USB cable from E51/notebook PC

    I'm using PC Suite ver 7.1.18.0 with Windows XP Professional and connecting my E51 to the notebook PC via a DKE-2 USB cable. All functions work perfectly (at least those I want), but a previous version of PC Suite gave me the standard "Safely Remove 

  • HOWTO:Deploy BC4J as Session Bean in Weblogic

    This document describes Howto deploy a BC4J Appmodule as EJB Session Bean to Weblogic and test the appmodule through the BC4J tester. =>create a BC4J Application using Business Components Wizard. =>test it using BC4J tester =>make the Application Mod

  • Bluetooth connection in win vista home premium

    Am trying to connect my nokia 6300 with my notebook Toshiba P100/P105 Series but it says make sure all the hardware are installed and drivers installed.I have installed Pc suite 6.83 and Toshiba stack which expires after 30days but still its not bein