How bex report take data

Hi Friends,
We loaded data to cube it was successful,again i loaded data which was modified in source system and before loading this time i deleted the previous request.
Now in cube only one request is there and in bex report data was reflecting correctly.
This cube data is used in SAP BO  reporting means they built reports on cube then in their report it is not reflecting .
i have two questions here.
1) Apart from cube where data will be stored in bw server if it happen how to delete the complete data in bw server?
2) how bex fetch data from cube? ( because the way bex retreaving is differ from bo report retreave)
Pls can any one  tell me.
Thanks in advance,
Thanks & Regards,
Ramnaresh.P.
Edited by: ramnaresh porana on Dec 3, 2008 5:49 AM

Hi ramnaresh,
               As for my Knowledge data will be stored in two palcess , One is cube (nothing but F& E tables) Another one is PSA. But PSA data is not used for bex. So we will use only on cube data.
Bex report will bring the data from OLAP processor,  it will bring data from data base tables(F&E). 
     once you run the query  first time it will fetch data from  data base(F & E tables)  to olap processor and copy the same data in olap Cache then send to Bex Analizer.
second time you run the same query then it will fetch data from olap chase .
Thanks
  G N raj

Similar Messages

  • How to load the data from informatica into bw & how to report the data

    Hi friends,
    how to load the data from informatica into bw & how to report the data
    using cognos.(i.e how to access the data in sap bw using cognos 8 BI suite).
    Thanks,
    madhu.

    Inorder to report BW data into Cognos you can extract data from using Open Hub to the DB table from which Cognos reads.
    For BW informatic integration refer following docs:
    http://www.aman.co.il/aman/pfd/DataInteg_BR.q103cd.pdf.pdf
    http://h71028.www7.hp.com/enterprise/cache/3889-0-0-225-121.html
    http://devnet.informatica.com/learning/ePresentations.asp
    http://72.14.203.104/search?q=cache:C741L86Q19oJ:devnet.informatica.com/showcase/resources/Essbase_DataSheet.pdfinformaticapowerconnect(BI)&hl=en&gl=in&ct=clnk&cd=3
    http://www.informatica.com/customers/utilities_energy/fpl_group.htm
    http://www.informatica.com/solutions/resource_center/technote_sapbw_65241004.pdf#search=%22Informatica%20to%20Bw%22

  • After Deploye application  How can user take data back up.

    Hi,
    i have created an application .Which is run in offline Mode in a machine .User enter data through this Application Form .Data Enter Though this Form in to our application data base table .
    Here User want to take data back up in evening which is enter by User in a day .
    How Can User Take Full Day Data Back up.Whicj are enter by User.
    How Can I do This .
    i have install XE in my machine .When i click On Start-->All Program -->Oracle database 10g Express Edition -->Backup Database
    What is the use of Backup Database .
    Thanks & Regards
    Manoj Kaushik
    Edited by: Manoj Kaushik on Mar 17, 2010 10:40 PM

    Hi,
    i have created an application .Which is run in offline Mode in a machine .User enter data through this Application Form .Data Enter Though this Form in to our application data base table .
    Here User want to take data back up in evening which is enter by User in a day .
    How Can User Take Full Day Data Back up.Whicj are enter by User.
    How Can I do This .
    i have install XE in my machine .When i click On Start-->All Program -->Oracle database 10g Express Edition -->Backup Database
    What is the use of Backup Database .
    Thanks & Regards
    Manoj Kaushik

  • How can I take data from specific column in a table using VBA

    Hi
    I do not know how to take the values from the last column in a table, I know how to look over each row but I cannot take the last column values for each row I pass by.
    This is the table for example:
    | Date | Account1 | Account2 | Description | Amount |
    |12/03/2008 | 123-32 | 325-78 | None | $50 |
    |12/03/2008 | 123-32 | 325-78 | None | $20 |
    |12/03/2008 | 123-32 | 325-78 | None | $10 |
    |12/03/2008 | 123-32 | 325-78 | None | $40 |
    I am using this code as a reference that User FiveNines gave me to loop through all the rows in the table, so What I need is to take the values of the column Amount for each row I go through.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    Dim rButton As HTMLInputElement
    ' ******** This would be your global variable. I put this so that values are seperated by a semicolin you can use what ever format works for you.
    strValue = "03/22/2008;03/22/2008;*************1977;*************1977;$25.25;Jan, Jun, Jul, Dec"
    ' Strip out the ; for inner text comparison
    strValue = Replace(strValue, ";", "")
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    For Each tblRow In tbl.rows
    If tblRow.innerText = strValue Then
    RSWApp.WriteToLog "Tables", "Passed", "Row is Present", True
    End If
    Next
    End Sub

    Hi Lippix.
    This is code that will loop the rows then loop the cells and check for "$" which will return dollar values. I also attached a script.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    For Each tblRow In tbl.rows
      For Each tblCell In tblRow.cells
      ' cycle through the cells and only report those with a dollar value by searching for $
        If InStr(1, tblCell.innerText, "$") <> 0 Then
       RSWApp.WriteToLog tblCell.innerText
       End If
      Next
    Next
    End Sub

  • How do I take data from a data grid and put it into a variable?

    I am having problems taking data from a datagrid (guess you got that from the title) and setting it to a variable. I am tak
    ing the data from 3 different rss feeds, depending on what button you press, and showing it in a grid. I would like to be able to do more with this data. Here is my code so far:
    <mx:VBox id="vbox" x="70" y="150">
      <mx:Label text="This Data Grid is doing nothing" />
      <mx:DataGrid width="1000" dataProvider="{fullXML}">
       <mx:columns>
        <mx:DataGridColumn id="dataGrid" *dataField="channel.description" headerText="Feed"/>
       </mx:columns>
      </mx:DataGrid>
    </mx:VBox>
    <!-- from test 5 -->
    <mx:Move id="moved" target="{hbox}" repeatCount="0" easingFunction="mx.effects.easing.Linear.easeIn" />
    <mx:HBox id="hbox" fontSize="12" fontFamily="courier">
      <mx:Label text="{website**}" />
    </mx:HBox>
    * this is the data I want to get out
    ** this is where I want to be able to put the variable.
    I don't know if I can do it here or if I need a function or what.
    I would like to be able to put it into an array, but step one is anything at all, so I'm trying just a variable.

    Where do I put that line of code? I see that it goes at the Script part near the top, but how can I use that, I am pretty new to this language. I am not familiar with this line, where does it bind the value from the datagrid to the variable?
    fullXML[myDataGrid.selectedIndex].FIELD_NAME;
    myDataGrid would be the id from the grid I am guessing?
    and selected index would be the channel.description part?
    and FIELD_NAME; is the variable name?
    does this go into a funtion or is it placed at the top where the variables are declared?

  • How can I take data from multiple pages documents and put them into a numbers table?

    I produce invoices in pages, with dates, invoice numbers, references and amounts due. I want to take all this data from multiple documents and transfeer it to a single numbers table. Is this possible and if so, how do I do it. I know I can do it the other way round with mail merge but I can't figure out how to do it this way round?
    Thanks,
    Keith

    The data is spread throughout a pages document in specific areas here's a copy of an invoice for you to have a look at.

  • Bex Reports takes long time for filtering

    Hi,
    We have gone live in last December.And already our inventory cube contains some 15 million records,sales cube contains 12 million records.
    Is there any specific limit to number of records.Because while doing filtering in inventory report or sales reports it is taking very  long time.
    Is there any alternative or we should delete some the data from the cube.
    for filtering any value it is taking long time than running the query itself.
    Pls help...
    Regards,
    viren.

    Hi Viren,
    I hope a cube can perform well even at 100 million records with some performance tunning. So i absolutely doubt why it is taking long time for your cube with just 10-15 million records.
    Do a performance analysis and check whether aggregates will be helpful or not.
    Check the below link for how to do a performance analysis.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/d9fd84ad-0701-0010-d9a5-ba726caa585d
    Hope it helps.
    Thx,
    Soumya

  • How create report with data from table and some columns results function ?

    Hi,
    How can i create on apex report region with some columns (of the report) as returned from a table and the other columns as results of plsql functions ?
    for example , I want to create a report like that:
    device last_date error_msg stop/start
    kodak1 06/04/08 null >>
    kodak2 08/03/08 good msg --^--
    kodak3 08/04/08 err msg >>
    3 rows returned
    where the 3 first columns are data returned from the table and the forth column is the result of plsql function (returned for example false) and on that i want to display a button of start ( >> in this example ) or stop ( --^-- in this example)

    Thomas,
    There is no problem here -- this is fully suported scenario.
    1. Bind Table dataSource to Customers node.
    2. Bind individual cell editors to any attribute of customer or any nested node like Address, say create column with InputField as editor, then for "value" property select Customer.Address.Street.
    Your nested nodes (like Address) must be non-singleton, set singleton=false on context designer tab.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • How to report on dates between From and To dates

    Hi forum,
    I have a requirement to report on Long Term Absences from work.  The user wants to enter a calendar month in a selection variable, and see who is away from work in that month.
    I have the start and end dates of absences, but these are long term absences which span across months.  The problem is, if I base the Calendar Month variable on the start date or the end date of the absence, people get missed off the report.
    For example, if we have someone on maternity leave for a year, the user wants to be able to enter any month within that year, and see that the person is on maternity leave.  So I cannot use the start date or end date of the absence as it is.
    How do I get the report to run such that when a user enters a month, it will show everyone who is absent on any dates within that month?  I assume I need some kind of customer exit variable for this, but is there a standard SAP delivered variable which will work out all possible dates within the start and end date?  Or do I need to write some code myself?
    I couldn't see anything in the forum already which would help me on this, but if there is an existing thread, please also let me know.
    Many thanks
    Mischa

    Hi Mischa.
    I think you can achieve what you want like this
    Add the Start Month and End Month (let them be IO's that reference 0calmonth) to your cube and  populate them in the load using a formula, like Aron suggested.
    Create a query with a  restricted key figure.  I suppose you are looking at some kind of count  to know how many people where absent in a given month, or something like that. Thus, add your KF to the structure and add the Start Month and End Month to the selection.
    Restrict the Start Month using a variable, ZMONTH (this is what the user will enter at runtime), as follows:
    Start Month <= ZMONTH.
    Now restrict the End Month using a variable, XMONTH (this will have to be an exit variable filled in CMOD by reading ZMONTH) as follows:
    End Month >= XMONTH.
    Thus, your restricted key figure will only return values if the entered month is part of the absence interval. The abap you need for CMOD should be simple as all you are doing is reading a variable and passing it to another. From the top of my head, it should look something like this:
    data:
    l_s_range type rsr_s_rangesid,
    loc_var_range like rrrangeexit.
    case i_vnam.
    the case statement will likely already be there, as well as the above definitions, so look for the case and insert the below
    when 'XMONTH'.
    if i_step = 2.
    clear l_s_range.
    loop at i_t_var_range into loc_var_range
    where vnam = 'ZMONTH'.
    l_s_range-low = loc_var_range-low.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    append l_s_range to e_t_range.
    endloop.
    endif.
    endcase.
    this will likely already be there, so you won't need to put it there again.
    Good luck!
    Jacob
    Edited by: Jacob Jansen on Jan 11, 2010 9:18 PM
    Edited by: Jacob Jansen on Jan 11, 2010 9:30 PM

  • How do I take data from a query sample record and query another block with it?

    I have a master/detail form (6i) that contains a master block (staff), and a detail block (phone). I would like to be able
    to query by phone number, but when I execute the query, I would like a 'search results' box to pop up that contains the
    phone number I queried for, as well as some other staff info. There might be multiple records that match my query,
    and I'd like them all to be listed (or list 10 or so, with a scrollbar). I'd like a push button next to each record that will take
    me back to the master/detail window with that record displayed. So, I created a third block that is based on a joined
    view of the staff and phone tables. It is a multi-record block, with 10 recs displayed and a scrollbar. It is in a separate
    window. I don't want the user to have to navigate to that block, however, to perform their query. I would like them to be
    able to enter the query in the phone number block, then somehow grab the phone number they've entered and use it to
    query my 'search' block. This is the part I'm having trouble with. Can someone please help? THANKS!

    Where do I put that line of code? I see that it goes at the Script part near the top, but how can I use that, I am pretty new to this language. I am not familiar with this line, where does it bind the value from the datagrid to the variable?
    fullXML[myDataGrid.selectedIndex].FIELD_NAME;
    myDataGrid would be the id from the grid I am guessing?
    and selected index would be the channel.description part?
    and FIELD_NAME; is the variable name?
    does this go into a funtion or is it placed at the top where the variables are declared?

  • How do I take data off my nano.  I have old playlists I want to put back in the library

    How do I put playlists back in the library and out of my nano.  I need to free up space

    You should have a back up of your data on your computer. 
    Connect your iPod to your computer to delete the data from your iPod. 

  • I Need to change Date Format in BEx report

    Hi Experts,
    i Need display with required values with following symbols in BEx report # and Date format change as per client requirement. Without any VB Code.
    Let me know solution for this.
    By
    ANR

    My actual requirement,
    by default date format display in BEx Reports MM/DD/YYYY fomat, but i want change DD/MM/YYYY format without using any VB macro and also instead of displaying "#"  i need display "0" (Zero).
    let me know the solution.
    by
    ANR
    Anybody ....
    Message was edited by: ANR

  • How flash player takes raw data from webcam to display it ?

    Hello,
    I would like to know that how flash player takes data from webcam and display it on video display object, does flash player process the raw data comes from webcam meanscompress it or apply any kind of matrix / filter and then display it on video display object or stage ?
    Thanks,
    Jankrut

    to create a movieclip button:
    create a movieclip (insert/new symbol/movieclip) and attach a stop() to its first frame and label it "up".  create whatever graphics you want for the button movieclip's up-state.  create an "over" frame and, if needed, a "down" frame.
    when you place this movieclip button on-stage give it an instance name (say, printer1) and use:
    printer1.onRollOver=function(){
    this.gotoAndStop("over");
    printer1.onRollOut=printer1.onDragOut=function(){
    this.gotoAndStop("up");
    printer1.onPress=function(){
    this.gotoAndStop("down");
    // and add your onRelease to do whatever.
    if you also wanted to add a textfield that displays the button's instance name when the button is rolled-over, place a textfield on the "over" frame and give it an instance name (say tf) and attached to the movieclip's "over" frame use:
    tf.text=this._name;

  • Amount in certain currency is multiplied by 100 in bex report.

    Hi,
    Amount in certain currency is multiplied by 100 in bex report. Data in multiprovider is good. Suppose if amount is 123.123 in multiprovider then in Bex report it is showing 12312.3. This is happening where currency is HUF. I understand that I have to handle it at query level in bex. I also understand I may have to create formula variable/ CKF/ RKF. But not able to implement it. Please help me to solve this. I'm new in Bex.
    Thanks in advance.

    Hi Arindam & Anshu Lilhori ,
    Following on the suggestion given by Anshu that make two RKF S1 & S2 . In S1 we maintain HUF currency. And in S2 we exclude HUF.
    Now arindam asked for a general solution if there are other currencies too in TCURX with 0.
    My suggestion is that let's make a Customer Exit variable on the currency . And read the table TCURX in the CMOD code and populate all the currencies inside TCURX with 0 in S1.
    And all the other currencies without 0 inside S2.
    In this way it will become a General Solution. He doesn't need to maintain the currencies manually.
    Let me know if you find any discrepancies in this approach.
    Regards,
    Ashutosh

  • Bex Reports.

    Hello All,
    I have problem while executing the Bex.report,
    "PO Date after Invoice Date",
    i am unable to execute the file in the Web Portal,
    i am getting the pop-up saying
    <b>"do u want to save this file"</b>
    and only <b>save</b> option and <b>Cancel</b> Options
    are there....
    Bex reports can only be saved.......?cannot be executed
    in the portal........?
    plz clarify me.......
    or what settings have to be done for executing this.
    Thanx
    Arshad

    Hello Shravan,
    Please go to Best Practice link
    http://help.sap.com/bp_biv235/BI_EN/index.htm
    Here you will find demos for some pre-configuered scenarios including queries.
    Regards,
    Praveen

Maybe you are looking for

  • Adapter Framework Archiving Failed

    Hi! We are running XI 3.0 SP14, the J2EE WAS 6.40 Adapter Framework archiving is not working. Table XI_AF_MSG that is accessed via JDBC as a Resource on WAS is oversized and can´t get archived, so it keeps growing. As it is SP14, archiving should be

  • Works in Flash preview, but not on webpage?

    I'm using this code to externally load a .swf into my site. I made sure all the files were uploaded. I'm sure, because I can even find the .swf on the site, it just won't show up on the main page. (for example, I can find it at www.mysite.com/flashfo

  • Not seeing Spring context in jdev

    I am not seeing the Spring Bean configuration in JDEV, even though I did help->check for updates ->Spring and oracle weblogic sca version 11.1.1.3...

  • Standard sap BACK, CANCEL icons affected by custom status - why?

    Hello SDN Community, I was trying to clean up some items in the Function List display of my custom status and I had deleted a couple of items that I had created incorrectly. After that, I ran my transaction and clicked the standard sap EXIT icon.  It

  • Char to int

    Hi, I have a received a datagram storing address IP in a byte[]. how can I write it on readable format. thanks