BEX : report with real and budget on the same line

Hi everyone,
I need to create a Bex report showing on the same line :
- budget WBS element stored in a DSO  (DataSource 0CO_OM_WBS_1)
- used amount stored in another DSO   (DataSource 0FI_GL_4)
Data are stored in 2 different DSOs.
If a create a multiprovided with both DSOs I will get 2 lines in my report as axes are different,no ?
Thanks for any idea.
Aussie

Hi,
You can make use of infoset.You can also do a lookup from one dso to another ant transport the values in one dso.So by doin this alll your values will be stored in one place and then you can show the values in one line in report.
Please also give me the idea of keyfields of both dso's.
You can also use constant selection in report if you are using multiprovider through this to some extenet you can solve the problem of values in coming in two lines.
Also check out the below PDF for Displaying Result Row in One Line While Reporting On Multiproviderer.
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70dcd7b5-6a3d-2d10-c984-e835e37071a2?quicklink=index&overridelayout=true
Hope it helps.
Regards,
AL
Edited by: AL1112 on Aug 3, 2011 11:55 AM

Similar Messages

  • Several of us have a iPhone 6s and are having trouble with hearing and speaking at the same time when using the phone. ? The speakers seem to be too far apart? Are others having this issue? Solutions?

    Several of us have a iPhone 6plus and are having trouble with hearing and speaking at the same time when using the phone. ? The speakers seem to be too far apart? Are others having this issue? Solutions?

    Not having the problem, don't personally know anyone who is.

  • Can I use HP Pro 8600 with usb and wireless at the same time

    Can I use HP Pro 8600 with usb and wireless at the same time?  Sometimes I cannot get the wireless to work, it seems to be my laptop.  It would be nice if I could use the usb, but it doesn't work.  What should / can I do, if anything?
    Sam

    Hi,
    Same physical printer but when connecting to SAME computer using both USB and wireless it becomes two (logical) printers. Probably your default prnter is the wireless one, you have to select the right printer before print .
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • [Solved] Sound with ALSA and PulseAudio at the same time?

    Hi, I am using arch linux to play Counter Strike on.
    While it works fine and all, I just don't get any sound in CS because I am using Mangler, which only seems to work with my microphone if I use PulseAudio.
    I hope this is a rather simple issue, basicly, I just want to enable sound in PulseAudio and ALSA at the same time, is this possible?
    Last edited by Paaskehare (2010-08-12 15:39:09)

    I have read that PulseAudio decreases sound quality, and therefore I would not like to use this as a systemwide driver, but rather only where it is needed.
    Please correct me if I am wrong
    Edit:
    Ok, sound quality isn't noticeably worse, so this will do. HOWEVER, while I am in Counter Strike my sound is delayed by ~1 second, and it is therefore useless, any thoughts on that matter?
    Edit again .. Solved this time:
    I set my ALSA plugin in winecfg to "Hardware Acceleration: Emulation" - that seemed to do the trick.
    Last edited by Paaskehare (2010-08-12 15:38:56)

  • Problems with interlaced and progressive on the same timeline ?

    Is there any problem with having both interlaced and progressive on the same timetine ? EG will DVD work OK?
    thanks
    Narada

    Hey Narada,
    I've had projects where I used both and DVD worked just fine. The only thing I'm not sure about now, though, is what I had my field dominance set to. I'm pretty sure it was set to the default so either lower or higher. This leads me to ask the old pros around here a second question:
    What happens to progressive video that's placed in a timeline with a field dominance? Is it no longer treated as progressive?
    Anyway, to answer your question my DVDs worked just fine.
    Hope that helps,
    Cameron

  • How can I write left and right in the same line of a richtextbox?

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks
    As
    Viorel_ says "Perhaps there are other much easier solutions. For example, create two
    RichTextBoxes with no borders (if you only need two columns of text)" but the real issue would be saving the info in the RichTextBox's (RTB's) RTF or Text to two different RTF or TextFiles. Although I suppose if it was just going to
    a TextFile then you could somehow use a delimited text file so each same line number of each RTB is appended to the same line and delimited. That way you could probably load a split array with each line from the text file splitting on the delimeter per line
    and providing RTB1 with index 0 of the split array and RTB2 with index 1 of the split array. I'm not going to try that.
    This is some leftover code from a long time ago. It has three RTB's. RTB1 is there I suppose because the thread asking for this code wanted it. RTB2 is borderless as well as RTB3. The Aqua control in the top image below is the Panel used to cover RTB2's
    scrollbar. So RTB3's scrollbar is used to scroll both controls.
    I forgot to test if I typed past the scroll position in RTB2 if both would scroll as maybe RTB3 would not since it would not have anything to scroll to I suppose.
    Maybe this code can help or maybe not. The bottom two images are the app running and displaying nothing scrolled in RTB2 and RTB3 then the scroll used in the bottom image.
    Disregard the commented out code in the code below. It was there so I left it there. I suppose you should delete it. Also I didn't set the RTB's so one was left aligned and the other right aligned. I believe the Panel becomes a control in RTB2's controls
    when it is moved to cover RTB2's vertical scrollbar but don't remember although that seems the case since both RTB2 and RTB3 are brought to front so if the Panel was not one of RTB2's controls I would think it would be behind RTB2 and RTB2's vertical scrollbar
    would display but don't remember now. In fact I don't really remember how that part works. :)
    Option Strict On
    Public Class Form1
    Declare Function SendMessage Lib "user32.dll" Alias "SendMessageW" (ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wParam As Integer, ByRef lParam As Point) As Integer
    Const WM_USER As Integer = &H400
    Const EM_GETSCROLLPOS As Integer = WM_USER + 221
    Const EM_SETSCROLLPOS As Integer = WM_USER + 222
    Dim FixTheProblem As New List(Of String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.CenterToScreen()
    Panel1.BackColor = Color.White
    Panel1.BorderStyle = BorderStyle.Fixed3D
    RichTextBox2.BorderStyle = BorderStyle.None
    RichTextBox2.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.BorderStyle = BorderStyle.None
    RichTextBox3.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.Size = RichTextBox2.Size
    RichTextBox3.Top = RichTextBox2.Top
    RichTextBox3.Left = RichTextBox2.Right - 20
    Panel1.Size = New Size(RichTextBox2.Width * 2 - 16, RichTextBox2.Height + 4)
    Panel1.Left = RichTextBox2.Left - 2
    Panel1.Top = RichTextBox2.Top - 2
    RichTextBox2.BringToFront()
    RichTextBox3.BringToFront()
    FixTheProblem.Add("Curry: £6.50")
    FixTheProblem.Add("Mineral Water: £4.50")
    FixTheProblem.Add("Crisp Packet: £3.60")
    FixTheProblem.Add("Sweat Tea: £2.23")
    FixTheProblem.Add("Motor Oil: £12.50")
    FixTheProblem.Add("Coca Cola: £.75")
    FixTheProblem.Add("Petrol Liter: £3.75")
    FixTheProblem.Add("Shaved Ice: £.50")
    FixTheProblem.Add("Marlboro: £2.20")
    FixTheProblem.Add("Newspaper: £.25")
    FixTheProblem.Add("Spice Pack: £.75")
    FixTheProblem.Add("Salt: £.50")
    FixTheProblem.Add("Pepper: £.30")
    For Each Item In FixTheProblem
    RichTextBox1.AppendText(Item & vbCrLf)
    Next
    RichTextBox1.SelectionStart = 0
    RichTextBox1.ScrollToCaret()
    Dim Fix As String = ""
    For Each Item In FixTheProblem
    Fix += Item.Replace(":", "^:") & vbCrLf
    Next
    Fix = Fix.Replace(vbCrLf, "^>")
    Dim FixSplit() As String = Fix.Split("^"c)
    For i = 0 To FixSplit.Count - 1
    If CBool(i Mod 2 = 0) = True Then
    RichTextBox2.AppendText(FixSplit(i).Replace(">"c, "") & vbCrLf)
    ElseIf CBool(i Mod 2 = 0) = False Then
    RichTextBox3.AppendText(FixSplit(i) & vbCrLf)
    End If
    Next
    End Sub
    Dim RTB2ScrollPoint As Point
    Private Sub RichTextBox2_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox2.VScroll
    Dim RTB2ScrollPoint As Point
    SendMessage(RichTextBox2.Handle, EM_GETSCROLLPOS, 0, RTB2ScrollPoint)
    SendMessage(RichTextBox3.Handle, EM_SETSCROLLPOS, 0, New Point(RTB2ScrollPoint.X, RTB2ScrollPoint.Y))
    'Me.Text = RTB2ScrollPoint.X.ToString & " .. " & RTB2ScrollPoint.Y.ToString
    End Sub
    Private Sub RichTextBox3_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox3.VScroll
    Dim RTB3ScrollPoint As Point
    SendMessage(RichTextBox3.Handle, EM_GETSCROLLPOS, 0, RTB3ScrollPoint)
    SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(RTB3ScrollPoint.X, RTB3ScrollPoint.Y))
    'SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(0, 10))
    End Sub
    End Class
    La vida loca

  • Report with characteristic and calculation in the rows

    Hi,
    I need to do a report that has to have in the rows a characteristic, a selection and calculation based in the result line of the characteristic, as presented following:
                 Column X Column Y ...
    Characteristic
            Result line
    Selection (hided)
    Calculation (Selection / Result line *100)
    Then its necessary to be possible to drill down to another characteristic.
    Please if you have done some report like this one please give me some ideas on how to do it.
    I'm thinking to make a workbook with two queries but this arise some issues in terms of the layout because I would need to put the query with the calculation above the other because otherwise it would be overwrote.
    I have some doubts also on how to make the drilldown possible???
    If you can help me I would be very grateful and I will assign points...
    Best regards,
    Ana

    Hi Ane,
    It seems little tricky here.
    Try this way to see all your values of  Asset class in single selection(Hope it works!!)
    Rows -> First Drag Asset Class
    Then create a structure jsut below this Char -> In New selection,define the name as you want & Use Asset Class as Restriction
    It should look like this in rows:
    Asset Class (Char)
    Structure
    Asset Class (Name of your selection - restricted with Asset class)
    Please check n lemme know if it works
    Sriman

  • How Can I change a report with base in another in the same dashboard?

    Hi,
    I need to publish two reports in a dashboard, the first report is a list of values and the second report is a chart. When I click in a value of the first report, the second report must change with the value selected from the first report.
    I first created the first report, and I changed the column properties in the data format, I selected treat text as: "Custom Text Format", the Custom Text Format is:
    @[html]"<f ont class=Nav oncl ick=\"Ja vaScr ipt:GoNav(event, '/path/reporte2','TABLE','FIELD','"@"');\">"@"< /fo nt>";;@
    The second Report has the next filter: FIELD is equal to / is in @{NQ_SESSION.@}
    With this the first and second reports works well, however, when I include the two reports in dashboard, the second report is updated in another window not in the same section.
    How Can I change the second report in the same page or section where this the first report?
    Thanks
    Edwin Guerrero

    I am not sure whether this would work but worth a try. Create a third report which would call the 2nd report using iframe and GO URL. Name the iframe of the narrative view. And use the java script to update the iframe using objWin = window.open(<ur go url>, “biee”,”height=480,width=240,scrollbars=yes,resizeable=yes”);. I had used a similar method to integrate biee with mapviewer. You can check it out here http://oraclebizint.wordpress.com/2007/09/26/oracle-bi-ee-10133-and-mapviewer-step-by-step-integration-phase2-and-phase3/
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • BEx WAD -- Creating Chart And Table on the same page

    Hi All.
    I am creating a new Web Application. This contains a dropdown with 2 reports to select.
    When the user selece report from the dropdown list, it has to display both Table and Chart for the report.
    Could you pls explain me how can I do this.
    Thanks
    SR.

    Go to Dropdown web item properties and choose your report and use Before Command and use OPEN_CHART_DIALOG. You may try with After Command also.

  • Interactive Report with Declarative Filter pointing to the same page

    I want to apply the declarative filter that will be applied to the IR in the same page. Can anyone let me know the settings to be done.
    Thanks
    Deb

    A redirect will not work - we render your page and you enter your value but then you never submit the page to be written to sessions state, rather, you call the page again. You need to create a button that submits the page and then a branch to the same page that passes the same parameters. That said, I created a test case and found some sort of bug with passing an IR condition in a branch - it is failing with an odd error. We are looking into that. In the meanwhile, is there a reason you need another item to do your filter and cannot just use the built-in capability of the interactive report?
    -- Sharon

  • Why is my wife's hotmail account on her iphone draining her battery with usage and standby being the same?  My iphone and hotmail does not do this.

    My wife and I both have an Iphone 5 and hotmail accounts.
    We are on the same wifi and I have restored and reset her phone several times, but whenever I add her hotmail account to her phone, the phone is always in use according to the usage.  also the phone becomes warm as if it was in use for several hours.  The standby time is only about 2-3 hours before dying.  However, removing her hotmail account, stops this.  What about the hotmail account is causing this?

    What you're describing is the expected behaviour.  I believe though that is also is the easiest way to have all the contents available to both of you at all times.  If you have a spacious hard drive you should probably allow this to happen as anything else will be harder to manage.
    My suggestion would be the following if you want to try something different.
    Store all your music at a location that is accessible by both of you — an example would be to use your Public Folder as the locations where iTunes will go and look for all the media files—.  Your wife does have access to it.
    In the Finder you will need to move the folder name iTunes Music to the location in your Public Folder (see above).  Once that's done, you and your wife will have to go into the iTunes Preferences > Advance Preferences and un-check Copy files to iTunes Media folder when adding to library.  From this point on, you can continue to use iTunes as usual.  You'll need to tell your wife what has been newly downloaded/imported into your iTunes so she can manually go look for those items in that Public Folder iTunes of yours and import them into her iTunes.  She will not duplicate by doing that, but, like I say this is an all-manual work.
    She can do the same, so you have access to contents she imported herself.  One more downside of this is that both usernames have to be active in your iMac.  If yours isn't, she won't be able to access any item (song, book, app) located in your Public Folder's iTunes.
    I'm sure there's a way, if you have an router with external hard drive conectivity, for both of you to be able to access —independently— the iTunes Media at all times but I was just reading at another post that doing so can further complicate things.
    Hope this helps.  Please let me know what you think or decide to do.
    Jorge...

  • IPhone - how to sync with iPhoto and Aperture at the same time ???

    I'm having a really hard time with syncing my photos - I'm using iPhoto and Aperture on my Mac. When I launch iTunes and start managing my iPhone, it seems like I should be able to sync photos from a variety of sources all at once (iPhoto, Aperture, other folders).
    However, whichever option I select in the photos drop-down becomes the only libraries that are available to sync. What I mean is that if I select some of the Albums in my iPhoto list and sync those, when I later drill down to Aperture and select albums from there and perform a sync - then the previously synced/loaded albums and photos from iPhoto are automatically removed from the iPhone.
    Why can't I sync between multiple photo albums / sources at the same time? This is incredibly annoying.

    Here's how I solved this problem:
    In Aperture, select File -> Import -> iPhoto Library
    Then under the "Store Files" dropdown, be sure "In their Original Location" is select. This will allow Aperture to see your iPhoto library, but it will be managed by reference rather than phyisically imported.
    Now, in iTunes, select Aperture as the application from which you want to synch photos, and select the option to synch specific albums.
    You should be able to see the names of albums in iPhoto as well as those created in Aperture.

  • Can I use my Ipod 5th Genereration with Mac and XP at the same time?

    I have a 5th generation. My home system is a Mac my work is an XP. I have all of my music on my home MAc. I want to bring those over and use in the XP environment. Does anyone know if that can be done? When I connected my ipod into the USB on my XP it asked for me to download the software. If I do that will it mess up my Mac interface?? Any help would be appreciated. Thanks!
    ipod video (5th Generation)   Mac OS X (10.4.6)  

    First, please understand that an iPod formatted on a PC (FAT32), will be able to be read by a PC and Mac. But not the other way round. You have 2 options to do it:-
    1. Do a Restore of your iPod on your PC (you need to install the iTunes and iPod updates on your PC), (it will erase all data on your iPod). Once it has been completed, connect it with your Mac and do an update between the iTunes on your Mac with the iPod. After that please install the 3rd party software e.g. YamiPod on you PC, and use this software
    http://discussions.apple.com/thread.jspa?threadID=464031&tstart=0
    Copy all the music on your iPod to your iTunes on your PC
    2. Download and install a 3rd party software xplay2
    (which is not free)on your PC, then it will manage to read your Mac's iPod
    http://www.mediafour.com/

  • Using AExpress with mac and PC at the same time?!

    I spent all day with this issue, not resolved some...but
    I am getting a blinking amber light after reseting my airport express, but yet it is the only way it connects my mac and my pc together on the device at the same time, without shutting one out,
    How can I get them to share the base station and have the normal green light? if they have a green light it disconnects my pc wirless connection. Are there shared settings somewhere?
    windows xp pro sp3
    wireless usb card: belkin F5D9050
    mac macbook 10.5 osx
    airport card/utility
    airport express downloaded 5.4.3 version for windows

    Thanks Tesserax
    well, after 12 hours and trials I solved it myself, but I am considering more people have this issue, so I will share.
    (make sure any adapter you buy is 802.11g/n/b compatible)
    I had a Belkin F5D9050 USB card,
    so install the latest updated driver for it, not the one with the cd!!!
    found here: http://www.belkin.com/ca/support/article/?lid=enc&pid=F5D9050&aid=13773&scid=223
    depending on your OS, pick one...but install driver first, then connect the usb card.
    Then install the latest Airport Utility (*NOTE: there are alot of old ones that do not work out there!) Only use this one!
    Airport Utility: 5.4.2 June 2009
    http://support.apple.com/downloads/AirPortUtility_5_4_2Windows
    If the AE utility doesn't detect your base station, press the reset button (until amber light flashes quickly), and then try re-scan again! do this until it shows up, then the installer will begin, if the amber light keeps blinking you need to reset again, once it works the lights will alternate between green and amber, then stay green.
    IF YOU HAVE A MAC HOOKED UP: uninstall your airport base station from the unit for now, you can install it later after you configure your pc! The PC is sensitive and will not share the network, but mac will after.
    Once the green light stays on you will be connected to wireless internet. Now you can connect your mac again.
    I stumbled through this setup through trial and error, so do not quote me, but it worked for me.
    If you have a password for it, write it down, you will need to enter it to connect to your base station again. This is the best way to stay online, and not have others stealing your wireless, or files.
    You can share files to your PC and vise versa, just be sure to read up on sharing in Mac Osx.
    If all goes well, now your PC and mac can be on the same base station at the same time.
    If it works with amber light flashing it does, but is NOT connected right.
    The light should be solid green.
    TRUST ME, NO ONE HAS GOOD TIPS OUT THERE, AND CHAT SUPPORT DOES NOTHING!
    I am sure I am forgetting something, but if you have an issue...just message me.
    Message was edited by: Laurencia7

  • 1. Working with DV and HDV in the same project     2. importing music error

    1. I am working on a project that was shot with both HD and DV footage. What is the best way to work with both types of files on the same time line so that I can compress them to DV format video?
    2. Also, I am having a problem importing music files into Premier. The error message pops up and says that it has an error compiling movie.I am not sure what setting i need to change to get this to work. I am working with MP3 files like I have done with past projects but nothing seems to work. Please help.

    i "I have never worked with with soundbooth but i changed the file type to WAV but had to use IMA ADPCM for the Audio options because I could not save the uncompressed type."
    Ellis,
    How did you "change" the MP3 - what program did you use? You might want to explore Soundbooth, as Aanarav suggests. It works well with PP & Encore.
    [EDIT] I use Audition, but think Soundbooth would be a good choice, as it is bundled in the Production Studio CS3.
    Many folk have problems with MP3 files, for whatever reason. You should be able to convert to PCM WAV from any number of good conversion programs.
    I use a fair number of MP3's in PP and have never had any trouble. Some others have never been so lucky.
    Hunt

Maybe you are looking for

  • Problem writing to output using servlet

    Hi All, I created a servlet which reads file and writes to output . This works fine when request protocol is http . But if protocol is changed to https servlet doesnt write to output. This servlet is deployed in secure environment as EAR project .But

  • Battling Hardware MPE, Episode 2: Chunky Blurs

    Round Two of my hardware acceleration MPE tests... When using direct export with hardware MPE, any effect that renders a blurred alpha channel (Fast Blur, Gaussian Blur, etc.) creates an extremely ugly/chunky/unusable result. The source footage and s

  • Merging table cells in Smartform

    Hi ABAP Technical Consultants,              Have a doubt in merging cells in Smart form.              My doubt is -- I have taken one table with two line types. First line type containing 9 columns & second line type containing 17 columns. But First

  • Can i get an older copy of itunes cause i cant stand the new version

    can i get an older copy of itunes cause i cant stand the new version

  • Repetitive Manufacturing and Run Schedule Header

    Dears, Could you Please Explain to me the  Process of Repetitive Manufacturing after run MRP and get  planned orders for RS What happend after that  , how to deal with planned orders and and how to create Run schedule Header Please note that i'm awar