Extraction of all available hierarchies from KDH3 in R/3 system

Hi,
As part of the cost center reporting, user wants to utilize the account group hierarchy which is available in R/3 using KDH3 transaction code.
It would be appreciated if you could provide some helpful information of how to pull the account group hierarchies into BW system.
Thanks,
Bobby.

Hi Paolo,
You gave me good idea of what I am supposed to do.
When I ran the ST05 on KDH3 and found that it is using class 0109 so I am assuming that I need to use the data source 0ACCOUNT_0109_HIER to pull the data into BW??
I am giving full points for your valuable response.
Thanks,
Bobby.

Similar Messages

  • Refresh available hierarchies from oltp / mark as relevant for BW in abap

    Hi All,
      I can't solve this problem: I am loading hierarchies from R/3 to BW via infopackage. I created the solution to use one infopackage to load more than 300 hierarchies. But before I can do that I have to open an Infopackege, press the button "Refresh available hierarchies from oltp" and then mark relevant hierarchies for BW.<br><br>
    Is it possible to do this in abap via function module / BAPI or somehow else? I'd like to implement the whole solution in process chain but I need to solve this before.<br><br>
    Thank you, Karol<br><br><br>
    P.S.: 10 points will be rewarded!

    Hello Karol,
    I am trying to implement the same, can you please forward me the process and the solution you implemented to resolve this.
    It will be greatly appreciated.
    Thanks
    Dharma.

  • Available hierarchies from OLTP

    hi,
    i've used button "Available hierarchies from OLTP" in InfoPackage to load some hierarchies into the SAP BI. But the some of hierarchies i cannot find in this list.
    How could i load full list of all hierarchies that is created in R3 system, cause only some of them are there now?
    thanks a lot!

    Which infoobject
    I normally see this in CO hierarchies where the hierarchy which is not desginated as a top node hierarchy is not available on the OLTP list (correctly!)

  • Automating "Available hierarchies from OLTP"

    Hi Gurus !!!
    I would like to automate the importing of hierarchies from R/3 via ABAP !!! Is it possible? More clearly: I want to do da same of button "Available hierarchies from OLTP" do when we click on it within the InfoPackage !!
    Who will save my skin?!?! :-D !!
    Regards

    Which infoobject
    I normally see this in CO hierarchies where the hierarchy which is not desginated as a top node hierarchy is not available on the OLTP list (correctly!)

  • All VF01 Invocie from SAP to 3rd Party System

    Dear Experts,
    I am trying to send customer invoice to an external system via PI with IDoc type INVOIC02. I have done the basic setting for the output type ZRD0 to transfer the document via. EDI.
    I have created a partner profile for Logical System u2013 SYSCLNT100 (LS) in WE20 and have given the outbound parameters with the message type INVOIC.
    These are the settings for my partner profile:
    part type: LS
    msg type: INVOIC
    Outbound Options: Receiver port: A000000050 (tRFC)
    Packet size: 1
    Transfer IDOC immediately
    basic type: INVOIC02
    Message Control: Application: V3
    Msg type: ZRD0
    Process Code: SD09
    When the output is manually triggered in VF01
    Goto  Header  Output
    I manual add ZRD0,
    Partner type - LS
    Partner u2013 SYSCLNT100 & Language - EN
    The system given error message u2018Maintain EDI partner profile for SYSCLNT100u2019
    When Condition Record is maintained in VV31
    Billing type - F2
    Partner u2013 SYSCLNT100 & Medium - 6
    In Billing VF01, the Condition Record is ignored with error message ''SYSCLNT100u2019 is not an EDI partneru2019
    We are sending the Invoice to 3rd party system and not the Customer (KU); hence we would like to maintain WE20 for the Logical System. All the Invoice's generated in the system should be sent to a fixed 3rd Party system, please advice
    With Regards,
    Karthik

    Hello Max,
    Yes, the partner LS for the output type is already maintained in NACE.
    With Regards,
    Karthik

  • Making member in BM showing all possible members from all levels

    When i import essbase model with drag and drop option i get one additional member called, for example, Times - Default. It shows all available members from all levels of its dimension.
    How can i create similar member in relational model?

    I doubt that is possible with relational data because, unlike essbase structure, relational data do not allow you to store alias at design time.
    If you spell the business requirement here, we may be able to tell you any alternative.

  • My auru script to show all available updates with versions and install

    So, I decided to hack together a little script that might be useful to someone else too.  I wanted to script that would show me all available updates, from from the official repos as well as from the aur.  I also wanted to see at a glance what the installed versions of each package and the new version to be installed are. 
    The output looks something like this:
    [shaun@shaun-asus-x202e ~]$ auru
    Available updates from core:
    vlc 2.1.2-2 2.1.2-3
    Available updates from AUR:
    ansible 1.4.3-1 1.4.4-1
    Would you like to install all updates without further prompting?
    y/n->
    Here's the code that I put into a dropbox shared file called arch_functions and source it from ~/.bashrc.   Replace the test_apacman function and associated commands with aur wrapper of choice.  Once this is in place, I simply run auru once a day on all my machines and I get all the information I need, and only press a y or n in order install all updates. 
    bold="\033[1m"
    endbold="\033[0m"
    test_apacman() {
    hash apacman 2>/dev/null || \
    #packer -S apacman --noedit --noconfirm
    #sudo pacman -S --needed --noconfirm base-devel jshon git curl
    hash wget 2>/dev/null || sudo pacman -S --needed --noconfirm wget
    origdir=$(pwd)
    cd ${HOME}
    mkdir -p ./tmpaur/
    cd ./tmpaur/
    wget https://aur.archlinux.org/packages/ap/apacman/apacman.tar.gz
    tar xfv apacman*
    cd apacman
    makepkg
    sudo pacman -U --needed --noconfirm apacman-*.pkg.tar.xz
    cd "$origdir"
    auru() {
    updatesavail=0
    ## check that dependencies are installed
    # expac
    hash expac || sudo pacman -S --needed --noconfirm expac
    # apacman
    test_apacman
    ### check core updates
    pacman -Syy
    echo -en "${bold}Available updates from core:${endbold}\n"
    pacmanupdates=$(sudo pacman -Qu)
    for pacmanupdate in "$pacmanupdates"
    do
    if [ "$pacmanupdate" == "" ]
    then
    echo "No core updates"
    else
    pkg=$(echo "$pacmanupdate" | awk '{print $1}')
    pkgvernow=$(echo "$pacmanupdate" | awk '{print $2}')
    pkgveravail=$(sudo pacman -Si ${pkg} | grep Version | awk '{print $3}')
    #echo -en "$pkg\t$pkgvernow\t$pkgveravail\n"
    printf '%-25s' "$pkg"
    printf '%-20s' "$pkgvernow"
    printf '%-20s\n' "$pkgveravail"
    updatesavail=$((updatesavail + 1))
    fi
    done
    ### check aur updates
    echo -en "${bold}Available updates from AUR:${endbold}\n"
    aurupdates=$(apacman --auronly --quickcheck)
    for aurupdate in "$aurupdates"
    do
    if [ "$aurupdate" == "" ]
    then
    echo "No AUR updates"
    else
    pkg="$aurupdate"
    pkgvernow=$(sudo pacman -Q ${pkg} | awk '{print $2}')
    pkgveravail=$(apacman -Ss ${pkg} | grep "aur/${pkg} " | awk '{print $2}')
    printf '%-25s' "$pkg"
    printf '%-20s' "$pkgvernow"
    printf '%-20s\n' "$pkgveravail"
    updatesavail=$((updatesavail + 1))
    fi
    done
    ### apply updates if any
    if [ $updatesavail -gt 0 ]
    then
    echo "Would you like to install all updates without further prompting?"
    read -p "y/n->" answer
    if [ "$answer" == "y" ]
    then
    sudo pacman -Su --noconfirm
    apacman -Su --auronly --noedit --noconfirm --needed
    fi
    fi
    Last edited by senorsmile (2014-01-20 04:41:14)

    For someone with a username like yours I would have expected better. I guess you are not a "tech guy" at all. After a while Apple improves the hardware, and updates iOS to take advantage of the features and speed of the newer hardware. Older devices are simply incapable of taking advantage of the newer features, because the hardware doesn't support it. There's a lot of advice posted in the forum from people who warn that you shouldn't upgrade an iPhone 4S to iOS 8, because it kills the performance. If that's true, imagine how iOS 8 must perform on an iPhone 4. 
    By your reasoning I should be able to run Windows 10 on a 1985 IBM PC. The only reason you can't is because Microsoft had a deal with hardware manufacturers to force people to get new computers.
    Or are you arguing that Apple should never improve hardware, because it will leave users of older phones in the lurch?

  • Extracting Hierarchies from ECC / R3

    Hi all,
    We have some custom reports now recreated in BI based on versions initially developed in R3.
    The R3 reports made extensive use of 'groups' for Cost Center, Cost Element, and Internal Orders, and few if any hierarchies were maintained in R3.
    Fortunately, BI7 has built in functionality to ETL user created 'Groups' on these R3 characteristics into hierarchies in BI.  However, there are a couple restrictions that we are wondering if there is a way to work around:
    1) only Top level nodes in R3 are available for extraction when configuring the InfoPackage - is there a way to select lower level nodes also?
    2) only one hierarchy can be loaded per infopackage - is there a way to select and load multiple (or even all) R3 hierarchies at once?
    Many thanks for any help you can offer!
    Darryl
    Edited by: Darryl Goveas on May 5, 2009 2:54 PM

    Darryl,
    This is the way BI works. You can only select one hierarchy in infopackage at a time. In selection it will show all the hierarchy available not the node name  in source system.
    Regards,
    Kams

  • I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don'

    I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don't want us to use Firefox.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; FNGP_SYS)

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • My Iphone was sync with Itunes on a computer then this computer broke down and i purchased another one. I was able to extract all the data from the old one. now how can i sync my phone with the new tunes without loosing any data?

    My Iphone was sync with Itunes on a computer then this computer broke down and i purchased another one. I was able to extract all the data from the old one. now how can i sync my phone with the new tunes without loosing any data?

    Yes, windows to Mac too.
    iTunes: How to move [or copy] your music [library] to a new computer [or another drive] - http://support.apple.com/kb/HT4527
    Quick answer if you use iTunes' default preferences settings:  Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive.  Open iTunes and immediately hold down the Option (alt) key (shift on Windows), then guide it to the new location of the library.
    Windows users see tip at: https://discussions.apple.com/message/18879381

  • I can no longer import raw files from my Panasonic Lumix LX5 into Aperture 3.3.2 - raw files from my other Canon cameras are fine. Am still running Lion - NOT Mountain Lion. Tried all available software updates - no joy. Any ideas please?

    I can no longer import raw files from my Panasonic Lumix LX5 into Aperture 3.3.2 - raw files from my other Canon cameras are fine. Am still running Lion (10.7.4) - NOT Mountain Lion. Tried all available software updates - all up to date apparently but still no joy. OS X Lion shows the LX5 as a supported file format. I dont want to have to upgrade to Mountain Lion just to see if this solves the problem. Any ideas please.

    Since when did this happen? Directly after you upgraded to Aperture 3.3.2?
    If it happened directly after the upgrade the problem may be, that the raw support for your camera got lost. For some posters it helped to register the raw support again, see this post by Alan Roseman:
    Aperture 3 preview of raw file greenish
    If this does not help, you may need to reinstall Lion to bring back the raw support.
    But if the problem occured independent of a new installation, ypu may have a problem with your camera or the card you are using. Have you tried to use a different card or to reformat the card in the camera?

  • HT1296 I synced my phone to my computer to get all my photos from my iphone to my computer and it put ALL my pictures from my computer onto my phone... how do I get them off? theres no delete option available on the phone

    I synced my phone to my computer to get all my photos from my iphone to my computer and it put ALL my pictures from my computer onto my phone... how do I get them off? theres no delete option available on the phone

    Do you mean to import photos from iphone to computer?  Is this what your doing http://support.apple.com/kb/HT4083.
    Looks like your syncing pics on your computer to your phone.  to remove it when your phone is sync to itunes, uncheck sync in the photos tab.

  • Can I Add all the fields from POOL to EXTRACT Structure in LBWE

    Dear Experts,
    Our Client is asking to add all the fields in the POOL Table to EXTRACT STRUCTURE in LBWE that is he wants to add all the fields from Right Hand Side Table to Left Hand Side Table in the Maintenance of LBWE of all the SD Data Sources. For few fields there is no data even though they are saying that in the nearer future we are going to use all most all fields.
    Like wise they are asking to add all the tables like VBAP, VBUP, VBAK, VBKD, VBUK, etc.,
    My Questions are:
    1.Is it advisable or recommended to add all the fields from POOL to Extract Structure because client desperately needs them.
    2.Is there any performance issue when we add the fields from POOL to Extract Structure at the time of extracting data from R/3 to BI.
    Regards,
    Sai Phani

    Hi Sai,
    1.Is it advisable or recommended to add all the fields from POOL to Extract Structure because client desperately needs them.
    we can add all the fields from the POOL to Extract Structure, if really your business requires to pull all the data.
    2.2.Is there any performance issue when we add the fields from POOL to Extract Structure at the time of extracting data from R/3 to BI.
    Ofcourse, there will be performance matters, because we have to extract maximum number fields data to BI side. If we have data for all the fields in R/3, we may face performance problems like load takes long time.
    Hope this helps.
    Veerendra.

  • I have deleted all my bookmarks from firefox sync by error on reintalling operating system. Is there any way to recover it? I have all bookmarks saved on "Firefox Home" on my iPod. Can I extract bookmarks from "Firefox Home" to my computer? Thanks

    I have deleted all my bookmarks from firefox sync by error on reintalling operating system. Is there any way to recover it? I have all bookmarks saved on "Firefox Home" on my iPod. Can I extract bookmarks from "Firefox Home" to my computer? Thanks

    Restore your backup.

  • Extracting all form fields from a fillable pdf

    Is there any way of extracting/exporting/copying all form fields from a pdf? Meaning, the wordings from all the fields so I can pass it along to another individual to use for cross referencing, since they are not able to see all the various form fields within the split screen?
    Thanks!!!

    The person that needs this is looking for the entire running list of all the fillable field names within the pdf. Any kind of document that I can deliver them in, I am willing to take suggestions.
    Right now, what I was thinking of doing was having the screen split between the pdf and the listing of field names in the sidebar and taking screen captures as I scroll down the pdf and corresponding field names in the sidebar until I got all pages.
    Is there an email address I could contact you at to discuss offline? I have an example I could send you but don't want posted online.
    Thanks!

Maybe you are looking for

  • TS2771 Ipods no longer connect via USB after using a USB 3.0 for the first time

    After trying to connect my Ipod Nano (2nd gen) and Ipod touch to my new computer that has USB 3.0 they both will no longer connect to anything via USB (ipod docks). Is this problem fixable? They still play music via the heaphones.

  • Problem with a Hebrew font (David)

    After upgrading to Firefox 13.0, some letters with fonetics written in the David font were replaced by a simple rectangle. Other fonts work just fine.

  • Container Managed Relationships

    Within Weblogic 8.1 is it possible to create a Bidirectional container managed relationship between Entity Beans via their LOCAL interfaces where they participate in a one to many relationship. If so... How?

  • Standard report for customer Debtors analysis

    Hi Everyone, Can anyone pls let me know if there is any standard report for customer Debtors analysis ..... Thanks, Srikanth.

  • Deleting Unused Assets

    I have been working on a site for over a year, and I have accumulated many images in the folder that I no longer need. I am looking for an easy way to find assets that are not being used and delete them in bulk. I have seen this feature in other web