How to select a suitable hierarchy from business content ?

Gurus,
I am new to BW and need to extract some sales data from R/3 into BW. Sales department is structured as Sales region ---> Sales person. It's a two level hierarchy maintained in R/3.
I need to extract this data and want to explore for any available datasource in business content and use it. Can someone tell me how to do this ?
Points guaranteed.
Abhishek

Assisted by SANFANCLUB.

Similar Messages

  • How to install sources for infobject from business content

    Hi,
    I have 16 infobjects for which we need to move to prod and there are no connections to it but the infobjects are active and some are i modified state, like no datasources, infosources, transfer rules etc., Can you please tell me the approach to install all the necessary for them. I mean how to find and how to install, please help if any documentation is available.
    Thanks

    Hi daniel,
    Inorder to  install the business object, you will be require to follow the following steps :
    i)Go to RSA1 (Admistrator Workbench) for installing the Business Content. Navigate to object you want to install. Now you want to install the info object then select Info Object.
    ii)Select your Info Object say 0MATL_GROUP (material Group).Click on Transfer selections.
    iii)Now when the info object is selected. It will always be in default selection (Only Necessary object), Now if you want to install the various other things like data source, transformation rule etc as you specify in query
    iv) For that go to grouping select IN DATAFLOW BEFORE AND AFTERWARDS. One more thing If you want to specify the Source system then u can do it by clicking on that Yellow Box (symbol specify the source system) adjacent to BEx (Truck Symbol). This mainly used for the things like transformation, update rule etc  as you want.
    v)Now you want to see if there can be some predictive error then go Install  --> Simulate Installation.
    vi)Now important point to note is MATCH(X) or COPY. Now suppose you already have the Material Group install in your system in Active version. Now here if you didnu2019t select the MATCH check box then your   A-version Material Group will be overwritten by the D-version Material group provided by SAP.
    vii)For ur more understanding lets take the example say  you have  added two customer specific attribute to Material Group now twist is SAP has also just release the enhance material Group with two additional attribute. Now  you are very curious of getting this two attribute in your already active Material Group. For this you will be required to install the material Group from Business content. If you forget to check the Match option then your customer specific attribute will be lost. So to retain them we have to check the MATCH(X) 
    Hope it will help. 
    Thanks,
    Deepak Machal

  • How to install cubes and queries from Business content in BI 7

    Hi all,
       Could you please help regarding how to install Info Cubes and Querries from Business content in BI 7.0
         And pl send some OSS notes on BW Statistics in BI 7.0
    Thanks in advance

    And also you can go thru the following link:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/content.htm
    Regards,
    Gattu

  • How to create a copy cube from Business content statistics cube

    Dear Experts,
           I got a requirement to create the new cubes which is a copy of Business content statistics cubes.
    Request you to let me know how can i create a copy cube from Business content cube. My doubt is,weather is't the same as normal customized cube creation  by giving  copy from option.....
    Thanks in advance for your valuable assistance.
    Regards,
    Ramesh - Kumar.

    for copying the cube whose copy is to be made should be available in infoprovider tab in modelling of RSA1.
    first you have to install the business content cube ,so that it is found in the Info-providers tab in modelling .
    for that,first go to business content option found in the modelling tab of t-code RSA1 .
    find the cube and transfer it to the right and execute . It will be available in infoprovider tab of modelling .
    then you can create a copy as we do normally .

  • How to install new cube/ods from business content

    Hi all,
    We have 0AFSD_DS1 for sales. But dont have anything for Delivery which start with 0AF ...
    How to add ODS/Cube to BW using BI ???
    Please help ...
    Regards,
    Viren.

    Hi ,
    I want to install new data target for the delivery data source 2LIS_12_VCITM.
    Which should be afs compatibble... all the ods and cubes objects start with 0AF...
    So i think we should use ODS object which start with 0AF.. for delivery also...
    How to find out which is correct data target for the data source 2LIS_12_VCITM??
    Regards,
    Viren.

  • Is it possible to delete data selectively from Business content cubes

    Dear Experts,
             Requesting you to help me out to know, is it possible to delete data selectively from Business content cubes.
    When I'm trying to delete selectively from Business content cubes, the background job gets cancelled with ST22 logs stating
    A RAISE statement in the program "SAPLRSDRD" raised the exception  condition "X_MESSAGE".                                                                               
    Since the exception was not intercepted by a superior program, processing was terminated.  
    and i tried  with few more Technical content cubes but the same thing happens.
    Pls let me know how to selectively delete data from Business content cubes if it's possible?.
    Thanks in advance for your favorable assistance.
    Regards,
    Ramesh-Kumar.

    Hi Ramesh,
    Follow below steps for selective deletion:
    1.     Transaction code: Use the Transaction code DELETE_FACTS.
    2.     Generate selective deletion program:
    A report program will be generated of the given name, here .
    3.     Selection screen:
    Take the deletion program u201CZDEL_EPBGu201D to the transaction code SE38 to see/execute the program.
    After executing it will take you to a selection screen:
    As we need to carry out deletion selective on Calendar week, we need to get the screen field for the field Calendar week. For this, click on the Calendar week field and press F1.
    Click on the technical information button (marked in red box above) you will get below screen:
         ABAP program to carry out the Calendar week calculation
    Problem scenario: As stated earlier the requirement is to delete the data from the cube based on the calendar week. Thus a code must be developed such that the number of weeks should be taken as input and corresponding calendar week should be determined. This calendar week should be then passed to the deletion program in order to carry out the data deletion from the InfoCube.
         Transaction code: Use T-code SE38 in order to create a program.
    Logic: Suppose we need to delete the data older than 100 weeks.
    a.     Get the number of weeks and system date in variables and calculate the total number of days :
    lv_week = 100.      *number of weeks      
    lv_dte = sy-datum.     *system date
    v_totaldays = lv_week * 7.      *total days
    b.     Get the corresponding calendar day from the total days. This is obtained by simply subtracting the total no. of days from the system date.
    lv_calday = lv_dte - v_totaldays. *corresponding calday.     
    c.     Now in order to get the calendar week corresponding to the calculated calendar day we must call a function module 'DATE_TO_PERIOD_CONVERT'. This function module takes input as Calendar day and Fiscal year variant and returns the appropriate fiscal period.
    Get the sales week time elements
      call function 'DATE_TO_PERIOD_CONVERT'
        exporting
          i_date                      = lv_calday
          i_periv                     = lc_sales
        importing
          e_buper                     = lv_period
          e_gjahr                     = lv_year
        exceptions
          input_false                 = 1
          t009_notfound               = 2
          t009b_notfound              = 3.
      if sy-subrc = 0.
        ls_time-calweek(4)      = lv_year.
        ls_time-calweek+4(2)    = lv_period.
      endif.
    v_week = ls_boots_time-calweek.
    Note: We can pass the fiscal year variant which can be obtained from the table T009B.For e.g. here fiscal year variant lc_sales = Z2. LS_TIME will be any table with suitable time units.
    d.     Now we have obtained the required calendar week in the v_week variable. This calendar week is the week till which we need to keep the data. And older data than this week will be deleted. This deletion will be done by the deletion program
    Submitting the Data deletion program for ZEPBGC01 and key field
    SUBMIT ZDEL_EPBG WITH C039 LT v_week.
              Here the calendar week value is submitted to the deletion program ZDEL_EPBG with the screen field of calendar week.
    Hope ... this will  help you..
    Thanks,
    Jitendra

  • How to open document from business content in weby dynpro ?

    Hello experts,
    I've cretaed a webdynpro where I want to display a document which is attached
    to a product in tx commpr01 in business content.
    I've tested method o_cl_crm_documents->get_with_url , but
    there I do not get a url in webdynpro.
    Does anybody know another method/fm to display such a document from
    business content in webdynpro ?
    Thanks and best regards
    Gerd

    Hello Mr. Jung,
    I'm sorry but I didn't find this method linktourl.
    In my web-dynpro I'm getting the url for my document after
    cklicking on the selected row.
    Then I just want to give this paramter to this linktourl method
    and open the document.
    How can I implement this method ? which class ?
    Thanks Gerd

  • How can I find 0YEA_QUA_MON_DAY hierarchy from 0CALDAY in RSA1?

    Dear expert,
    How can I find 0YEA_QUA_MON_DAY hierarchy from 0CALDAY in RSA1? or any t-code?
    i've try RSH1, but not found.
    Megan Wu

    Dear expert,
    How can I find 0YEA_QUA_MON_DAY hierarchy from 0CALDAY in RSA1? or any t-code?
    i've try RSH1, but not found.
    Megan Wu

  • How to select odd/even rows from table....

    How to select odd/even rows from a table?
    Please help.
    Edited by: vaibhav on May 7, 2012 5:30 AM

    just don't expect the results to come out in the sequence odd, even, odd, even .....
    The answer you have marked correct needs two order by clauses to guarantee that.
    The inner select will return rows in a random order, potentially different each time you run it. The outer select may not return rows in the same order as the inner one.

  • How to open Crystal Reports from Business Content Ext BW

    Hi friends,
    I have activated 0CR_FIAA_M20_Q0007 Crystal Reports from Business Content Ext BW and I have configurated BW_Publisher services in BW but I do´t see reports in /CRYSTAL/RPTADMIN.
    I check RFC connection and it´s ok
    Here I can´t get a role
    and here I don´t see reports
    Do I have to create special role with especial authorization?
    How do I save this Crystal reports in a Rol?
    How do I open this Report ?
    I check Ingo Blog BusinessObjects and SAP - Publishing of Crystal Reports Part 1 of 3 
    but I think, I don´t have some configuration.
    Regards

    Hi,
    I can open report from Role thru CR 2013.
    Here SAP  2.0 folder y Rol
    Here, settings in /CRYSTAL/RPTADMIN are:

  • How to find the right primary key for DSO from Business Content

    According to best practice design, it is reccomended to make a  DSO where all fields from Business COntent Datasources are transferred.
    But, how to find the right primary indeks ?
    Any good suggestions ?
    For many of the Business Content dataflows there are not DSOs present, so ther e is no tip to get from the dokumentations as gfar as I have found.
    best Regards
    Ingrid

    Hi Ingrid,
    Your question will be perfect in case if you are going for a Custom cube.
    You will not have any problem when you create a Datasource in R/3 level even if it is been built on a single table or on view.
    Only point that you want to know how to design my Key fields in ODS.
    This will be purely depends at what level that you want to bring the data.
    Egg:-
    If you run the data source in RSA3 and check for Each GL if you have 10 liine items and you want all the 10 line items to be transfered to BW.
    In this case you need to check what is the unique combination of fields that is making this lineitems to exists as 10.then include all those fields into Your ODS Key Fields.
    This way you can have 10 records for that perticular GL in both sides, by which u will make sure that the data is been completely transfered.
    If in case if you clude your own Key fields then you will get the correct Total in report for each GL but you can't see all those 10 line items.
    For any case you need to figureout how many records that you want to take into BW based on that check the fields that makes it unique and then add them to ODS Keyfields that will solve your requirement.
    I think this will clear your doubt.
    Best Regards,
    VNK.

  • Install Info Object 0BSTAT from business content

    Hi Guys,
    I am trying to install info object 0BSTAT from business content , i have selected the options
                                 grouing "only necessary obects"   "start automaticall" "Hierarchy" ad dragged info obect from left side into collected objects and selected the install and trasport option form Install, assigned the trasnport also, it didn't give any errpor message but info object is not getting activated.
    An body had the expericence with this issue, please share you ideas how to fix the issue.
    Thanks
    Best regards
    Shekar Gunda

    Thanks for your reply Matrin.
    I looked at the log 
    Log is:
    Installation of: Onfo Object (IOBJ)
    You onl have authroization to display info object 0BSTAT
    Transfer/Merge of the content version (Object Type Infoobject)
    Activation of obects with type Info Obect
    Saving Objects with type Infoobject
    Transferring the 1 objects from type IOBJ took 0.4 seconds
    Post-Processing of objects after activation
    The post-processing lasts 0.0 seconds
    Object IOBJ 0BSTAT was written to order/task EWD*******
    You onl have authroization to display info object 0BSTAT
    I looked at the SU53 also  there is one error message  related to info object BSTAT
    Currently aunthorization Field  ACTVT Activit is   "23"
    Does this mean i don't have autorization to install of info obects, do wee need any special activity is required in the for installing info object
    Please suggest me how to proceed.
    Thanks
    Best regards
    SG

  • Problem while installing a query from Business Content

    Hi all of you,
    I am trying to install this particular query Inventory Turnover from the cube 0IC_C03 (Material/Stock Movements) from Business Content. Now in the third pane in Business Content under Active version available column across the name of this cube there is a calendar symbol.
    a.     So does it mean that the cube 0IC_C03 (Material/Stock Movements) is installed along with all the objects that are dependent on the cube and all those objects on which the cube is dependent. (NOTE: I had selected the grouping option as “In data flow afterwars”)
    b.     When I collapse Query Element I find that some of the queries are not installed. So I expanded Inventory Turnover query, right clicked on it and selected Install All Below.
    c.     I am getting this error, “Abort system error in program SAPLRRI2 and form LI_SETZEN-01-“ when I execute the query Inventory Turnover. However in Business Content when I installed the report Inventory Turnover under the cube Material Stock/Movement I didn’t get any error anywhere. Everything was activated successfully without any errors.
    Please tell me how do I install this Inventory Turnover from business content and how do I execute this report from BEx.
    Thank you.
    TR.

    Hi Arun,
    Thank you for that quick reply. I want to activate only the query and not the cube. I did as you advise me but still I am getting the same error when I run the Inventory turnover report from BEx.
    I am able to run other reports from the cube IC_C03. But not this report Inventory turnover. I have also checked the cube and there is data in the cube.
    Kindly adivse what to do.
    Thank you.
    TR.

  • Installation of Datasource from Business content

    Hi Friends,
    While Installing Datasource from Business content in SAP R/3 encounter with following error message. Can some one guide me how to transfer the hierarchy with Business Content. Appreciate your help in resolving this problem.
    Application component FI-GL of DataSource 0FI_TX_4 does not exist
    Message no. R8418
    Diagnosis
    You tried to assign a DataSource to the application component FI-GL. This application component is, however, not entered in the RODSAPPL table as an application component.
    System Response
    The DataSource is saved, but is not visible in BW under the node NODESNOTCONNECTED.
    Procedure
    You do not have the option yet to transfer the application component hierarchy from the Content.
    You transfer the hierarchy with Business Content.
    Thanks & Best regards
    Pravin

    Sorry if a year has gone by.
    This is because you  didn't heve the Application Component Hierarchy installed in BW itself.  Use rsa6 to do this, in the BW system (not the other source system.  Be careful if you have already somehting there, because it will override the hierarchy with the Business Content hierarchy.
    If you need to transport the active hierarchy, and not reinstall all the Business Content Datasources, the object is :
    R3TR DSAA APCO_MERGED
    So, create a workbench transport, and add the above object.

  • Can't create DTP for cube migrated from business content to 2004s

    I am in the process of converting 3.5 Business Content InfoProviders to the new model for 2004s.
    Master data was not a problem, but I’m having a hard time getting InfoCubes to migrate.
    I installed 0PUR_C03 from Business Content and replicated the DataSource into the Data Warehouse.
    I right-clicked 2LIS_02_S013, selected Additional Functions, then chose “Transformation erzeugen” (a.k.a. Create Transformation in English).
    The transformation is generated with no errors and it was activated.  The DataSource is migrated automatically in the process.
    Then, I went to add the Data Transfer Process and that is where I got stuck.
    I right-clicked the cube and took Create DTP.  For source type, I selected datasource.  A dialog box then shows the objects associated with the cube, including the converted infosource, but nothing is highlighted for me to choose from, and I can’t complete the process of creating the DTP.
    Can anyone tell me where I might have gone wrong?

    u got it...
    Message was edited by:
            Raman
    Message was edited by:
            Raman

Maybe you are looking for