Can we use 0INFOPROV as a selection in Load from Data Stream

Hi,
We have implemented BW-SEM BPS and BCS (SEM-BW - 602 and BI 7 ) in our company.
We have two BPS cubes for Cost Center and Revenue Planning and we have Actuals Data staging cube, we use 0SEM_BCS_10 to load actuals.
We created a MultiProvider on BPS cubes and Staging cube as a Source Data Basis for BCS.
Issue:
When loading plan data or Actuals data into BCS (0BCS_C11) cube using Load from Data Stream method, we have performance issue, We automated load process in a Process Chain. Some times it take about 20 hrs for only Plan data load for 3 group currencies and then elimination tasks.
What I noticed is, (for example/) when loading Plan data, system is also reading Actuals Cube which is not required, there is no selection available in Mapping or selection tab where I can restrict data load from a particular cube.
I tried to add 0INFOPROV into databasis but then it doen't show up as selection option in the data collection tasks.
Is there a way where I can restrict data load into BCS using this load option and able to restrict on cube I will be reading data from ?
I know that there is a filter Badi available, but not sure how it works.
Thanks !!
Naveen Rao Kattela

Thanks Eugene,
We do have other characteristics like Value Type (10 = Actual and 20 = Plan) and Version (100 = USD Actual and 200 = USD Plan), but when I am loading data into BCS using Load from Data Stream method, the request goes to all the underlying cubes, which in my case are Planning cubes and Actual Cube, but I don't want request to goto Actual Cube when I am running only Plan load. I think its causing some performance issue.
For this reason I am thinking if I can use 0INFOPROV as we use in Bex queries to filter the InfoProvider so that the data load performance will improve. 
I was able to to bring in 0INFOPROV into DataBasis by adding 0INFOPROV  in the characteristics folder used by the Data Basis.
I am able to see this InfoObject Data Stream Fileds tab. I checked marked it to use it in the selection and regenerated the databasis.
I was expecting that now this field would be available for selection in data collection method, but its not.
So If its confirmed that there is no way we can use 0INFOPROV as a selection then I would suggest my client for a redesign of the DataBasis it self.
Thanks,
Naveen Rao Kattela

Similar Messages

  • Can't use mouse cursor to select windows buttons from XFCE panel

    The problem is weird but the behaviour is as follow: let say I have sultiple copies of the same software (Firefox, for instance) or when the software has multiple windows (for example Pidgin main windows and its other chat windows). Wwhen I try to click on the windows button on the panel in order to navigate to the window of such software, it won't work. nothing would happen. On the other hand, Alt+Tab works for switching to the desired windows. However, if the software only has one window running (for example, only one Firefox window) then the mouse click would work.
    It's a strange behaviour and I got this on both my PC which runs Arch 64 bit and my laptops with Arch.
    Anyone has the same problem?

    Inxsible wrote:Do you have conky running -- maybe that's covering the panel and eating up the mouse click events. Try killing conky and see if it works.
    Nope, thx Inxsible but conky's not running here.
    Right-click menu (minimize, maximize, etc...) works for each of the multiple entries, though.
    I just tried recompiling xfce4-panel 4.8.2-1 with no apparent error message or any change in behaviour... hm...
    [Edit] It seems like a bug's already been filed: http://bugzilla.xfce.org/show_bug.cgi?id=7383
    Last edited by gnidam (2011-03-09 17:40:46)

  • How can i use SUM aggregate in select query?

    HI,
    GURUS,
    How can i use SUM function in Select Query and i want to store that value into itab.
    for ex:
    TABLES: vbap.
    types: begin of ty_vbap,
           incluse type vbap,
           sum type string,
          end of ty_vbap.
    data: i_vbap type TABLE OF ty_vbap,
          w_vbap type ty_vbap.
    SELECT sum(posnr) FROM vbap into table i_vbap up to 5 rows.
                            (or)
    SELECT sum(posnr) FROM vbap into table i_vbap group by vbeln.
      loop at i_vbap into w_vbap
    " which variable have to use to display summed value.
      endloop.
    if above code is not understandable pleas give ome sample code on  above query.
    Thank u,
    shabeer ahmed.

    Hi,
    Check this sample code.
    TABLES SBOOK.
    DATA:  COUNT TYPE I, SUM TYPE P DECIMALS 2, AVG TYPE F.
    DATA:  CONNID LIKE SBOOK-CONNID.
    SELECT CONNID COUNT( * ) SUM( LUGGWEIGHT ) AVG( LUGGWEIGHT )
           INTO (CONNID, COUNT, SUM, AVG)
           FROM SBOOK
           WHERE
             CARRID   = 'LH '      AND
             FLDATE   = '19950228'
           GROUP BY CONNID.
      WRITE: / CONNID, COUNT, SUM, AVG.
    ENDSELECT.
    Regards,
    Sravanthi

  • How can I use a where in Select clause?

    How can I use a where in select clasue when the other part of the where I do not not.
    I mean that
    Select *
    from mara
    where MATNR = MT*
    That means it can have MTA, MTB, MTC....and so on
    I can I write this code.
    Regards,
    Subhasish

    hiii
    you can use following query
    SELECT * FORM mara WHERE matnr CONTAINING 'MT'
    or use following
    select * from mara WHERE matnr =  'MT%'
    reward if useful
    thx
    twinkal

  • How can we use list box on selection screen

    hi, howe can we use list box on selection screen and how can we populate the dat ainto the list box and how can we retrive data based on list box from ther database.
    thanks in advance
    raju

    Use the VRM_SET_VALUES function module.
    DATA: list              TYPE vrm_values,
          value             LIKE LINE OF list.
               AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      name = 'P_OBJECT'.
      CLEAR list.
      REFRESH list.
      CLEAR value.
      value-key = '1'.
      value-text = 'Development Class'.
      APPEND value TO list.
      CLEAR value.
      value-key = '2'.
      value-text = 'Program'.
      APPEND value TO list.
      CLEAR value.
      value-key = '3'.
      value-text = 'Function Module'.
      APPEND value TO list.
      CLEAR value.
      value-key = '4'.
      value-text = 'Database Table'.
      APPEND value TO list.
      CLEAR value.
      value-key = '5'.
      value-text = 'Structure'.
      APPEND value TO list.
      CLEAR value.
      value-key = '6'.
      value-text = 'View'.
      APPEND value TO list.
      CLEAR value.
      value-key = '7'.
      value-text = 'Data Element'.
      APPEND value TO list.
      CLEAR value.
      value-key = '8'.
      value-text = 'Table Type'.
      APPEND value TO list.
      CLEAR value.
      value-key = '9'.
      value-text = 'Class / Interface'.
      APPEND value TO list.
      CLEAR value.
      value-key = '10'.
      value-text = 'Type Group'.
      APPEND value TO list.
      CLEAR value.
      value-key = '11'.
      value-text = 'Domain'.
      APPEND value TO list.
      CLEAR value.
      value-key = '12'.
      value-text = 'Search Help'.
      APPEND value TO list.
      CLEAR value.
      value-key = '13'.
      value-text = 'Lock Object'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = name
          values          = list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

  • TS1741 Can u use home sharing whilst u are away from home

    Can u use home sharing whilst u are away from home

    Oh, so is THAT where the name "HOME SHARING" comes from? 

  • Can I use a Samsung HM1100 to play music from my Ipad2?

    Can I use my Samsung HM1100 to play music from my Ipad2 ?

    Have you not tried?
    I would have thought you would prefer stereo. And to listen to music, the device you use needs "A2DP".

  • Can I use a USB3 device on a IMAC27 from medio2010

    can I use a USB3 device on a IMAC27 from medio2010

    A 2010 iMac is USB 2.0, you can likely use the device connected via USB 3 however it will run at USB 2 speeds.

  • How can I use QuickTime SDK to get Compress format of Video stream?

    I can get uncompress video stream like this:
    QDerr = NewGWorldFromPtr( &m_hGWorld, k32BGRAPixelFormat, &rcMac,
    NULL, NULL, 0, (char*)m_pVideoBuffer,
    m_sAVFileInfo.sResInfo.ulWidth*4);
    then the m_pVideoBuffer is uncompress video stream. How can I use QuickTime SDK to get Compress format of Video stream? I could change "k32BGRAPixelFormat" to other format,use other API or something?
    Could someone have the method? Best Wishes!

    Firefox, I would make sure you update your Desktop to Firefox 14.0.1, as the version you are running is quite old and out of date.
    Then, do you have your Sync Recovery key, username and password? If you do, you can re-add Firefox Sync to your computer.

  • My iphone doesn't conect with my computer. He says you can't use it you softwear is not up to date please uninstall itunes and install itunes for windows 64bit. I do that but it doesn't work. So what can i do?

    my iphone doesn't conect with my computer. He says you can't use it you softwear is not up to date please uninstall itunes and install itunes for windows 64bit. I do that but it doesn't work. So what can i do?

    It won't pass 10.3.
    What does this mean?
    I figured it out. Thanks!!!
    What did you figure out? How about posting how you resolved it?

  • Can I use the source adapter 10W to load the ipod touch 4 generation? The same used to Ipad.

    Can I use the 10W power adapter to load the ipod touch 4 generation? The same used to Ipad?

    Yes.

  • Using iMovie. I selected "New Movie" from the menu. Now when I click on "Events" all I see is the movie. There are no imported video cups to select from. What did I do

    Using iMovie. I selected "New Movie" from the menu. Now when I click on "Events" all I see is the movie. There are no imported video cups to select from. What did I do?

    At the top middle of the screen is a clips filter. Make sure that "All Clips" is selected.

  • Can I use the iPad to access excel programmes from my pc

    Can I use the iPad to access excel programmes from my pc

    There are a number of apps in the iTunes App Store that allow you to view/edit/create Excel spreadsheets on the iPad. Three of the most populare ones are :
    Apple's Numbers - http://itunes.apple.com/gb/app/numbers/id361304891?mt=8
    Documents To Go - http://itunes.apple.com/gb/app/documents-to-go-office-suite/id317117961?mt=8
      'premium' version' - http://itunes.apple.com/gb/app/documents-to-go-premium-office/id317107309?mt=8
    QuickOffice HD - http://itunes.apple.com/gb/app/quickoffice-pro-hd/id376212724?mt=8

  • Can you use Apple TV and source films/music from two different Macs in the home?

    Can you use Apple TV and source films/music from two different Macs in the home?

    not at the same time but yes.
    set up home sharing on both computers and Apple TV using the same Apple ID.
    Setting up Home Sharing on your computer
    Setting up Home Sharing for Apple TV (2nd generation)

  • Can you use a Epsom wireless printer to print from an iPad

    Can you use an epson wireless printer to print from an iPaad

    Yes.
    Certain models are air print compliant, check your manual.
    If not I'm not sure if Epson  has an app, but there are third party printer apps such as Print n Share, Print Central and Printopia that should work for you (just to name the three most commonly recommended, there are plenty of apps so read the reviews and pick the one best for you)

Maybe you are looking for

  • Excise Invoice in GR IDoc

    Hi All, We are using WMMBID02 IDoc for posting goods receipt. However we are not able to post excise invoice details at the time of GR because we are unable to capture the excise incoice details. As the excise invoice tab in MIGO header screen is dep

  • How to run a dll in background

    I'm using a dll to control and read data from a camera. The dll is in a loop, in which it reads data from the CCD and moves the data to a memory location passed by labview (an array of uns_16). I want to have this dll running in the background while

  • Best Practice - Message Store size

    Is there a recommended max size for the message store? iplanet 5.2

  • Oracle JDBC Driver to J2EE

    I'm trying to install an Oracle JDBC driver to connect my application with my oracle database server, but I'm having some problems. I downloaded the drive classes from the Oracle website, but now now I need to know how to configure my j2ee server to

  • Does version of iPhoto effect printing???

    Hi, Was this using iphoto 6? I ordered books using iphoto 5.0.4. But the dpi was upped in the plist to 300 dpi. So, this should not really effect the printing, the version of iPhoto you are using? I would assume the problems of quality is with the pr