BAPI for properties of all levels of all hierarchies of all dimensions cube

Hi Experts,
Is there are way to get all properties of all levels of all hierarchies of all dimensions of a cube (InfoCube, ODSObject, QueryCube, InfoSet) in one BAPI call?
Any useful answer will be awarded with suitable points.
Thanks,
Rohan

I have one material BOM like  PA0100P3DR000 --- finish material
                                            PA0100P3GR000 --- Go blank
                                            BA0100P3GR000 --  Hard blank
                                            AA0100P3GR000 --- Soft blank
                                            RSTR0010000000 -- Raw material
This is for one material display level i.e. for PA0100P3DR000 finish code.
How i will get for all materials in a single display .
Pl' tell the step by step procedure.........
I have little knowledge of BAPI.
Thanks.

Similar Messages

  • Query selected levels of multiple hierarchies of one dimension

    Hi to all.
    I have created through AWM 11 a customer dimension with two hierarchies as follows.
    SLM_HIER: All Customers -> Salesman -> Customer
    GEO_HIER: All Customers -> State -> City -> Customer
    I have also created a SALES_CUBE (measures: QUANTITY, VALUE, aggregation: SUM) that is dimensioned with Customer dim.
    I'm using OBIEE to query the OLAP engine (through the relational views that AWM created automatically). I have followed the OTN OBE tutorials.
    I would like to have the following query on the cube:
    Give me QUANTITY where SALESMAN=S1 and CITY in ('Athens','Rome').
    Is it possible to have such a query? As far as I understand there are no ready aggregated data for selected levels of both hierarchies.
    Thank you very much.
    Chris

    I think OBIEE would also give you your answer from OLAP.
    This query has filters defined from both the hierarchies and hence OBIEE would (should) automatically service this query from the highest common level b/w the hierarchies (in this case: base/leaf level - Customer). As a result of this, if CUST is your Customer dimension, OBIEE (at least, the older style of obiee modeling with olap) would introduce the security filter CUST_LEVEL = 'Customer'. Granularity of the resultset returned would be per individual Customer. 1 record per Customer satisfying the criteria SALESMAN='S1' and CITY in ('Athens','Rome').
    Ideally you should include the Cust Id, Quantity columns in your obiee answers report and use an internal answers object/view like a Pivot View to hide Customer details column and get a localized aggregation performed over the resultset returned from OLAP to get the consolidated Quantity. Answers table has data at Customer level, Answers Pivot can show the required result.
    Note1: The Cube cannot have this result pre-calculated since its a contradictory combination of filters across hierarchies. Level specific aggregate values calculated (or pre-calculated) in the cube for Salesman level (h1) would contain Customers from all cities (h2) and similarly City level (h2) Aggregates would contain Customers of all Salesmen (h1).
    Note2: I believe OBIEE modeling with OLAP suffers from some issues relating to multiple hierarchies (e.g: if you have filter from non-default hierarchy CITY in ('Athens','Rome') alone, i think it would still fetch the results from lowest common level Customer instead of from City level directly).
    HTH
    Shankar

  • BAPI for Vendor Non-PO Invoice processed through MIR7 Transaction

    Hi All,
    I have a requirement where i will get data from flat file. Using this data Vendor Non-PO Invoice
    will be processed through MIR7 transaction with Multiple line items - Invoice Upload Parking the document for vendor non-po invoices.
    The data is in below format in flat file:
    Header fields in 1st line
    Dr. Key related fields in 2nd line
    Cr. Key related fields in 3rd line
    Header fields in 4th line
    Dr. Key related fields in 5th line
    Cr. Key related fields in 6th line
    etc .... in flat file
    In these main fields coming in from flat file are: comp.code, doc.type, vendor no,
    Debit/Credit indicatorSHKZG, G/L a/c no, inv/post dates etc..
    My issues:
    1. I am planning to use F.M BAPI_INCOMINGINVOICE_PARK is it the correct F.M!
    But Here PO number seems to be mandatory for this F.M but it is not available as per our flat file,
    if so can anybody suggest a BAPI for Vendor Non-PO Invoice parking for MIR7 transaction!
    2. What are the parameters need to be used for from above flat file data especially for 2 line itemshttp://Dr./Cr. data other than header data. So as per Header & 2 Line items http://Dr. & Cr. Data which parameters will be updated with which data in above flat file! can anybody clarify!
    3. Also in flat file WorkflowNo is available in which parameter this fields will need to be filled & also by doing this will it trigger workflow automatically!
    Can anybody clarify about above points!
    Thanks in advance.
    Thanks,
    Deep.

    Hello Deep,
    I know it might be quite late for you for this answer, nevertheless I will write that, because there are lots of question like yours. bapi_incominginvoice_park is also a suitable bapi for you. All you need to do is call it this way:
    data: headerdata like bapi_incinv_create_header value is initial,
            table_item type table of bapi_incinv_create_item,
            gl_account like bapi_incinv_create_gl_account,
            table_gl type table of bapi_incinv_create_gl_account.
    * fill headerdata and table_gl, leaving table_item empty
    CALL FUNCTION 'BAPI_INCOMINGINVOICE_PARK'
        EXPORTING
          HEADERDATA                = HEADERDATA
    *   ADDRESSDATA               =
        IMPORTING
          INVOICEDOCNUMBER          = lv_docnr
          FISCALYEAR                = lv_year
        TABLES
          ITEMDATA                  = table_item
    *      ACCOUNTINGDATA            = table_acc
          GLACCOUNTDATA             = table_gl
    *   MATERIALDATA              =
    *      TAXDATA                   = table_tax
    *   WITHTAXDATA               =
    *   VENDORITEMSPLITDATA       =
          RETURN                    = lt_return.
    This works perfectly for me, creating a mir7 document without refering to a PO. The trick here is to fulfill the glaccountingdata importing table while leaving itemdata empty.

  • BAPI  to get all properties of all levels of all hierarchies of a cube

    Hi Experts,
    Is there are way to get all properties of all levels of all hierarchies of all dimensions of a cube (InfoCube, ODSObject, QueryCube, InfoSet)  in one BAPI call?
    I use BAPI_MDPROVIDER_GET_PROPERTIES, and only set input parameters: CAT_NAM, CUBE_NAM. But it only returns all Level1's properties.
    Any useful answer will be awarded with suitable points.
    Thanks,
    Rohan

    Hi,
    Thanks for giving reply.
    Recommended Function module is not a RFC, so it is not working.
    Thanks,
    Rohan

  • BAPI for all levels of all hierarchies of all dimensions of a cube

    Hi Experts,
    Is there are way to get all properties of all levels of all hierarchies of all dimensions of a cube (InfoCube, ODSObject, QueryCube, InfoSet)  in one BAPI call?
    Any useful answer will be rewarded with suitable points.
    Thanks,
    Rohan

    Hi
    Check the following Cube related BAPIS
    BAPI_CUBE_ACTIVATE
    BAPI_CUBE_CHANGE
    BAPI_CUBE_CREATE
    BAPI_CUBE_GETDETAIL
    BAPI_CUBE_GETLIST
    BAPI_INFOCUBE_READ_REMOTE_DATA
    BAPI_MDPROVIDER_GET_CUBES
    BAPI_MDPROVIDER_GET_STREAMCUBE
    UMK_BW_BAPI_CUBE_GETDETAIL
    Reward points for useful Answers
    Regards
    Anji

  • BAPI to get  all levels of all hierarchies of all dimensions of a cube

    Hi Experts,
    Is there are way to get all properties of all levels of all hierarchies of all dimensions of a cube (InfoCube, ODSObject, QueryCube, InfoSet) in one BAPI call?
    Any useful answer will be rewarded with suitable points.
    Thanks,
    Rohan

    Hi
    Check the following Cube related BAPIS
    BAPI_CUBE_ACTIVATE
    BAPI_CUBE_CHANGE
    BAPI_CUBE_CREATE
    BAPI_CUBE_GETDETAIL
    BAPI_CUBE_GETLIST
    BAPI_INFOCUBE_READ_REMOTE_DATA
    BAPI_MDPROVIDER_GET_CUBES
    BAPI_MDPROVIDER_GET_STREAMCUBE
    UMK_BW_BAPI_CUBE_GETDETAIL
    Reward points for useful Answers
    Regards
    Anji

  • BAPI for Displaying all deliveries based on SalesArea

    Dear Experts,
          i want to display all the details of all deliveries based on SalesArea, but i couldn't found any BAPI for that, Plz tell me the BAPI name for my requirement
              Thanks in advance

    Hi Eswara,
    I hope you are fine.......
    Even I need bapi which can read all delivery data.
    In CRM I only have delivery number as follow up of sales order. so need to get all delivery data in CRM.
    If there is any Bapi then we can call it remotely and get all data in CRM.
    If you have any bapi please suggest.
    Thanks in advance,
    Dhanraj

  • Apply display properties to all  prompt pages

    Hi,
    I am using obiee 11.1.1.6. I have 1 dashboard and 2 pages in the dashboard . Page 1 of the dashboard consists of 1 Dasboard prompt and 1 analysis. Page 2 consists of the Same prompt as Page 1 and different analysis based on the prompt . When I take use a prompted link of the dashboard and use  the same link to the differnt IE( interent ink tab)  prompt of Page 2  doesnt not work . The selection is not working for Page 2 but works for Page 1 . I have defined the scope of the Prompt to be a Dashboard level. And the icon of apply display properties to all prompt pages is gryed not and doesnt allow me to select anything. What might be the issue

    Hi again JaredA
    I'm not trying to be a PITA here, but if you edit a Text
    Caption and click the Help button, you should see a topic titled:
    Text Caption properties dialog box - Text Caption tab
    Inside this topic, there is a line that reads:
    Apply properties to all captions in the movie: Select this
    option to apply the changes you made on this tab to all captions in
    the movie. (List of properties that are applied, and are not
    applied, to all caption items)
    And note that the word "List" is a hyperlink. When clicked,
    it reads:
    The following properties are applied to all caption items if
    this option is selected:
    * Caption style
    * Font type
    * Font size
    * Font color
    * Transition
    * Show caption before mouse movement
    The following properties are not applied to all caption items
    if this option is selected:
    * Text and text properties (bold, center, and so on)
    * Time
    Granted, it does not explicitly say that the callout pointer
    direction will not be changed, but as it is not listed among the
    attributes that ARE changed, I believe that's a pretty decent hint.
    Personally, I believe the issue is one of simply becoming
    familiar with the way an application behaves. My guess is that it's
    not all that common that someone would want to change all the
    caption directions, hence the design. But it's just a guess on my
    part.
    Cheers... Rick

  • How do you set the default magnification for Acrobat.  All documents that I open enlarge to 174% and are too big.

    How do you set the default magnification for Acrobat.  All documents that I open enlarge to 174% and are too big.  I see how to change the size after the document is open by going to File/properties/initial view and saving this setting.  I want all documents to open at 100% when they are first opened.  Can I set this as a default view?

    Hey Kris,
    You might go to Edit> Preferences> Zoom
    Do this without opening any particular PDF so that it applies to the program itself and not just one document.
    Try this and then let me know.
    Regards,
    Anubha

  • The Cube should refers to all leaf levels of hierarchies of the Dimension

    Dear All,
    I'm trying to link a fact table to the month level of a time dimension and i got the following error
    VLD-0398: The Cube TIME_TEST_CUBE does not refer to leaf/lowest level DAY of the dimension SINGLE_HIR_TIME.
    The Cube should refers to all leaf levels of hierarchies of the Dimension.
    would you please help me to solve this problem
    Regards,
    Shaimaa

    I realized that this feature is allowed only for MOLAP dimensions but not for ROLAP
    which exactly the opposite of what is mensioned in
    Oracle® Warehouse Builder
    User's Guide
    10g Release 2 (10.2.0.2)
    B28223-03
    in page 116
    " For a cube that uses a relational implementation, you can refer to intermediate
    levels in a dimension. However, for cubes that use a multidimensional
    implementation, you can only reference the lowest level in the dimension. "

  • Dataloaderror for cube loading  :Encountered Before All Dimensions Selcted

    Hi All
    In my out line(ASO) i have the 10 dimensions but i have to load the data for 8 dimension so for this in the rule file i created 2 extra field by using data source properties and wen iam mapping in daata lod properties for that fields i checked the ignore field during the daata load and also i gavethe skiped no of rows in the header as 1 (without also i tried),,,but its still giving error: "Encountered Before All Dimensions Selected" ,its not loading plz it is very need full can any one help on this ,it would be appriciated.

    Glenn is correct -- you've got to point your data load rule at all dimensions.
    It sounds like your data source doesn't have all of the dimensions so you are trying to fake two in the header.
    That should work (although it would not be my first choice).
    However, it sounds as though you've either got your mapping wrong in the dimensions or the header.
    Have you double-triple checked the assignments of columns to dimensions? And that the content makes sense, i.e., Scenario is really Scenario and not Version -- that can trip you up.
    Regards,
    Cameron Lackpour

  • Quantity conversion check failed for one item; all qty lines deleted

    Hi IS Oil Experts,
    Iam using the BAPI "BAPI_GOODSMVT_CREATE_OIL" for posting goods movement. I filled the additional quantities and unit of measures also in the BAPI table, But when tried to execute, Iam getting the error, "Quantity conversion check failed for one item; all qty lines deleted"
    Please anybody tell me what is the error from end for resulting this message.
    Thanks in advance
    Prathib

    Dear you!
    I also get the issue that you meet. Can you help me to process it, Please/
    Best regards, Huy.

  • How to download repair of "missing WIA" for officejet J4550 All in one printer

    officejet J4550, all in one
    Problem:  message states "missing WIA"
    I'm missing my installation disk and would like to download the solution to repair/update/install the WIA.
    how to download repair of "missing WIA" for officejet J4550 All in one printer

    HI knewsomga,
    WIA is Windows Image Acquisition, it is a proprietary Microsoft driver model and application programming interface (API) for Microsoft Windows Me and later Windows operating systems that enables graphics software to communicate with imaging hardware such as scanners, digital cameras and Digital Video-equipment. - Source
     Please follow the instructions below.
    Please hold down the windows flag key and the R to open the Run box.
    Type services.msc and press Enter
    Locate Windows Image Acquisition (WIA)
    Right click and open Properties
    Stop the service from the General tab and then Start it again
    Verify that the Startup type is set to Automatic rather then manual
    Also, look for 'Shell Hardware Detection' in the list of services. If it is not enabled/started, make sure to enable/start the service, and make sure the Startup Type set as Automatically from its properties.
    Locate the 'Remote Procedure Call (RPC)' in the list of services. If it is not enabled/started, make sure to enable/start the service, and make sure the Startup Type set as Automatically as well.
    If the issue persist, the HP Print and Scan Dr might help, otherwise I suggest contacting Microsoft.
    Click here to download and run the utility > HP Print and Scan Doctor
    I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • List extended properties on all databases

    I need a script that lists/returns all extended properties in all the databases on a SQL Server 2008 Instance.
    For example the script below returns the extended property for a single database.
    SELECT objtype, objname, name, value
    FROM fn_listextendedproperty(default, default, default, default, default, default, default);
    However I need a script that returns the extended properties for all databases. Thanks.

    Hi,
    Try PowerShell like below to get the information:
    [System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMO') | out-null
    $s = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "computer\instance"
    $dbs = $s.Databases
    foreach ($db in $dbs)
    $ds=$db.ExecuteWithResults("SELECT objtype, objname, name, value FROM fn_listextendedproperty(default, default, default, default, default, default, default)")
    $table = $ds.Tables[0];
    foreach ($row in $table)
    Write-Host $row.Item("objtype") $row.Item("objname")$row.Item("name")$row.Item("value");
    Please check below articles for more information:
    http://www.mssqltips.com/sqlservertip/1759/retrieve-a-list-of-sql-server-databases-and-their-properties-using-powershell/
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ff5ae2d3-0923-4240-a532-2d879d9528a6/using-powershell-to-get-data-from-sql-database?forum=winserverpowershell
    Hope it helps.
    Tracy Cai
    TechNet Community Support

  • Re-install software for the C6280 all in one printer... get an error message "can't find file"

    need to re-install the software for the c6280 all in one printer. downloaded the latest install package from the HP web site. During the install process, I get an error message .. can't find  user/appdata/local/temp/7z256315/setup/.....setup/blocksysuser........
    the folder 7z256315 does not exist on the HD.
    I also get a message that it can't find PS_A10_02_software.msi.
    Windows 7 , C6280 all in one printer. Printer is connected to the router. The desktop computer is connected via an ethernet cable, the laptop/ipad/iphone/internet radio are connected via wireless to the router.
    hope you can help
    thanks
    charlie
    This question was solved.
    View Solution.

    Hi cberistain, 
    Follow the steps below, and let me know what happens?
    Step one: Clear temp directory
    Type %temp% in the run or search for programs and files field
    Highlight all the files in this folder, and then press the delete key to delete. If you get a message that the file is in use you will need to skip this file(s).
    Continue with Step 2 below
    Step two: Downloaded and extracted to your system:
    1. Download the full feature software and drivers
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-77039-1&cc=us&dlc=en&lc=en&...=
    2. Once the download is finished double click on the file to extract the software.
    3. When the installation window opens press the cancel button to stop the installation
    4. Type %temp% in the run or search for programs and files field
    5. Look for, and open the folder starting with 7z (Example: 7zS2356)
    6. Right click on the folder, and select Copy
    7. Close that window, and all your open windows, and then in the middle of the desktop right click your mouse, and select Paste. This will move the 7z folder to your desktop.
    8. Open the 7z folder you just copied to your desktop
    9. Open folder Util
    10. Open folder CCC
    11. Run the uninstall_L4
    12. When the uninstall has completed restart the computer
    13. Run Disk cleanup from Accessories\ System Tools folder under all programs
    14. Download and install the latest version of Adobe flash player
    http://www.adobe.com/support/flashplayer/downloads.html
     15. Open the 7z folder, and then double click on the Setup.exe file which will be toward the bottom of the open window. Follow the on screen instructions to reinstall your printer.
    Let me know if you are able to successfully install the software and driver, and are able to print & scan?
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

Maybe you are looking for

  • Can't see HDD on airport network

    Until recently my home network setup was organised like this: internet modem (Sierra aircard) with wireless turned off, connected by ethernet to Apple Time Capsule set up as a router. Wireless connection to various computers and to an Airport Extreme

  • Sharepoint 2013 Reporting services not fetching data via linked server

    We have a functional SharePoint 2013 farm in production with WFE (Server 1 , windows server 2012) and WFE ( Server 2 , windows server 2012) and SharePoint databases including report server databases on  (Server 3, which SQL Server 2012 on windows ser

  • Problem syncing ipod

    when i try to sync my ipod i get an error message saying it cannot be synced as the required file is already in use. can anyone help with this? thanks

  • Adjusted exposures in LR, why doesn't PS see changes

    I am completely stuck with LR! If anyone has any ideas please share! I have adjusted exposure and straightened images in LR then when I bring then into PS (using Edit in PS) it isn't carrying any of the exposures or adjustments etc over on the image.

  • Can CE(VC) consumer the Webservice published by PI sender agreement ?

    Is that any example ? The Visual Composer need to look up the service via the provider URL. can it support ?