Loading Hierarchy from one info object to another

Hello friends,
I have Profit Center Managerial Hierarchy which is connected to R3 QAS.  It is in the infoobject 0PROFIT_CTR.  I want to load the same Hierarchy from 0PROFIT_CTR to BCS info object 0BCS_PRCTR.  Is there  any way to do it.
Thanks
Jose

Hi Jose,
It's easier to load a new IO from the same datasource in R/3, not from 0PROFIT_CTR.
Best regards,
Eugene

Similar Messages

  • How to lod Hierarchy from one info object to anothe info object

    Dear Friends,
    I am facing one problem with the loading of hierarchy from one object to another.
    Please find my scenario below.
    We are having 0material with hierarchy.This hierarchy is loading from R/3.We have to load this hierarchy to anothe object by replacing the nodes.So can you guys please suggest how to achieve this.Please let me know if you people are required additional information.
    Thanks in advance.
    Regards
    Madhu

    Hi Madhu,
    By default, you cant use a transformation to load data into the Hierarchy Master data.
    I havent tried it myself, but for you to explore, I'll suggest the below idea.
    Write an ABAP program to download the hierarchy table data from 0material into a flat file.
    Create flat file datasource to upload hierarchy to the other infoobject.
    Put both of them in a process chain and execute one after another.
    Hope this helps. Pls let us know.
    Regards,
    Bijesh

  • Move child movie clip from one parent object to another

    Hi everyone,
    I am somewhat new to AS3, and I'm having a hard time working out the most appropriate way to move a child movieclip between parent objects.
    I'm creating a board-game type game wherein I've dynamically created an array of 'Square' movieclips, with no visual elements, which are arranged in a 10x10 rectangle on the stage. I then dynamically add the appropriate types of piece movieclips to the various squares with the addChild() method. In general, a square should only have one child piece at a time.
    All of this works well for setting up the play area, but now I'm having an issue with moving a piece from one square to another. I want to have the user click a square with a piece on it, then click the destination square to move the piece. I have the logic for determining where a user can move any given piece to, but I don't know how to actually move the piece.
    The pieces are all different class objects that extend both a base class I call Piece as well as the MovieClip class. The main issue is that when dynamically adding the various pieces to the squares, I don't provide them a unique name to access them later. I don't bother with unique names because I have no way of knowing which piece instance will be in a given square, so using getChildByName(name:String) isn't very useful.
    So I can think of two routes that I can take: Making a getter/setter for the Square class that manages a private Piece property (as well as the adding and removing of the child piece to/from the parent square), or using getChildAt(index:int) to try to access the child piece.
    I want to go with the first route as it seems to be the most maintainable to me. My problem is that I can't work out how to manage empty squares in this scenario. My instinct is to null to private _piece property of one square once I've moved the child piece instance to another square... but I'm fairly certain that the private property is a reference type, and nulling it out will null the actual piece object even after it's changed parents.
    I'm sorry for the long description. I'm hoping that my lack of experience with as3 it what's causing my trouble, and that someone more well versed will know of the best way to handle this. Maybe I'm overthinking everything.
    If something isn't clear, please feel free to ask me for clarification. I would appeciate any help that anyone may be able to offer.
    Thanks!
    - Scott

    for a square with a child, you can use:
    whateversquare.getChildAt(0);  // to reference whateversquare's only child.  although, if there are graphics in whateversquare, you may need to use getChildAt(1)
    or, if you want to use a square class getter/setter, what's the problem?  an empty square will return null.

  • Loading data from one master data to another

    Hi
          I have scenario where i have to load a master data (ZMATERIAL) which is exactly a copy of another Master Data (0material) ..Is it possible to load the data from 0MATERIAL to ZMATERIAL (Both are in BW side ) ...if yes please tell me the procedures.
    Regards
    Siva

    Hello Siva,
    be carefull what you ask for
    The created data source of 0MATERIAL will not be harmfull to your system It is just a data structure which you use to create an update rule between 0MATERIAL and ZMATERIAL.But are you sure that is what you want ? In this case you always have to load data to 0MATERIAL first and to ZMATERIAL after that.
    Perhaps it would be easier to use infosource 0MATERIAL_ATTR for ZMATERIAL too. 0MATERIAL_TEXT on the other hand is a pure Text Infosource and you have to decide to use it on 0MATERIAL or ZMATERIAL. You could create a new Datasource in the source system to provide you wih the Material Master data text.
    Hope this helps.
    Kind regards,
    Jürgen

  • Loading Data from one Cube into another Cube

    Hi Guys,
    I am trying to load data from one cube A to another cube B. Cube A has data around 200,000 records. I generate export datasource on Cube A. Replicated the datasource and created InfoSource and activated it.
    I created update rules for Cube B selecting Source as Cube A. I do have a start routine to duplicate records in Cube A. Now when I schedule load,
    It stops at Processing Datapacket and says no data. Is there something wrong with the update routine or is there any other way to load form cube to cube in a simpler way?
    Thanks in advance

    This is the start routine to duplicate records in two currencies.
    DATA: datew   TYPE /bi0/oidateto,
          datew2  TYPE rsgeneral-chavl,
          fweek   TYPE rsgeneral-chavl,
          prodhier TYPE /bi0/oiprod_hier,
          market  TYPE /bic/oima_seg,
          segment TYPE /bic/oizsegment.
    DATA: BEGIN OF S_DATA_PACK OCCURS 0.
            INCLUDE STRUCTURE /BIC/CS8ZSDREV.
    DATA: END OF S_DATA_PACK.
    S_DATA_PACK[] = DATA_PACKAGE[].
      REFRESH DATA_PACKAGE.
      LOOP AT S_DATA_PACK.
        move-corresponding s_data_pack to DATA_PACKAGE.
        if DATA_PACKAGE-loc_currcy = 'EUR'.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalloc.
          DATA_PACKAGE-CURRENCY = 'EUR'.
          APPEND DATA_PACKAGE.
        else.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
        endif.
      ENDLOOP.
    This is to load Quantity field
    RESULT = COMM_STRUCTURE-BILL_QTY.
    This is to load Value field
    RESULT = COMM_STRUCTURE-NETVAL_INV.
    UNIT = COMM_STRUCTURE-currency.

  • How to load from one BW System to another BW System

    Hi Guys,
    I want to load the BW data from  PAX(BW-Production System) to PRX (BW-DCC-System) .Is there any steps to load it from One BW System to another BW System.
    Any doc available to do the loading from One BW System to another BW System.
    Pl mail to [email protected]
    Send me the steps .
    Points will be assigned.
    Thanks,
    Chinna

    Hi Chinna,
    Loading from one BW system 2 another primarily involves loading data from one infocube to another in other BW system.
    U can create export data sources from infocubes ( rt. clk on infocube n then select  ) and then use these datasources to load data into the infocubes of othar system in usual way.
    Try this out.
    Hope it helps,
    Manish

  • Using FDM to transfer data from one HFM app to another

    We are facing a project in which we need to load data from one HFM app to another. There're some mapping going so it was advised that FDM be used.
    However, the HFM extract files contain all data on the rows. While for the FDM multiload, the data from different periods need to be layed out on the columns. Also, we have multiple scenarios/years of data to handle. What would be the best approach? Has anyone had similar experience to load data from one HFM app to another using FDM? Thanks!

    It appears that this is some kind of migration project due to the scope of the data contained in the single file? If so whatever you do is like ly to be trow away once the migration of data is completed.
    You have a couple of options:
    1) Get the data extracted from HFM in multiple files instead of one bulk file, broken down by scanario,year & period
    2) Take the single data dump file produced by FDM and manipulate it yourself to get the data in a more usuable format for processing through FDM.
    Option 2 could be achieved via any ETL tool or a custom file parsing script. What may be more attractive to you and allow you to fully leverage your investment in FDM is that you could use the PULL adapter that ships as part of the FDM adapter suite to perform this transformation exercise. The PULL adapter takes a flat file input and allows you to use all the in built functionality of FDM to transform it and output a modified flat file (or series of flat files). You could use it to produce multioload files or a series of files broken down by scenario,year,period.
    Whatever you do I would suggest that break the single data file down into smaller chunks as this will help with the iterative debugging process you will inevitably have to undetake whislt migrating the data to the new application.

  • How load data from One Infoobject to Another Infoobject?

    Hi GuRUS
    Any body has succeded in loading data from One Infoobject to Another Infoobject?
    Pls Let me kNow
    Regards
    Durai

    Hi Durai,
    Create export datasource on the info-object and then load the data to the other info-object.
    Check this link also:
    Re: How load data from Infoobject to another Infoobject?
    Bye
    Dinesh

  • Keynote 6.5 Loses Ability to Copy and Paste Master Objects (Titles, Body) From One Master Slide to Another

    This is just a major pain point that I hope is fixed as soon as possible.
    In all Keynote 6 versions of the past (and 5), you were able to do the following:
    1) Copy a Title or Body object (with proper formatting) from one Master Slide to another.
    1a) The slide you would paste it into would have had to have been deleted/unchecked.
    2) The pasted Title and Body objects would then assume the role of the Master's Title and Body Boxes
    Now:
    Instead of assuming the role of the Master Slides Title and Body Boxes, they are simply text box objects. If you were to check "Title" or "Body", the old objects (with probably improper formatting) would still be that slide.

    Below is the EtreCheck report. If Needed I am willing to make a screencast of the problem.
    Problem description:
    copying and pasting elements on masterpages in Keynote doesn’t work.
    EtreCheck version: 2.1.8 (121)
    Report generated 9 februari 2015 17:56:13 CET
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (Retina, 15-inch, Late 2013) (Technical Specifications)
        MacBook Pro - model: MacBookPro11,3
        1 2.3 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Not upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n/ac
        Battery Health: Normal - Cycle count 235
    Video Information: ℹ️
        Intel Iris Pro
        NVIDIA GeForce GT 750M - VRAM: 2048 MB
            Color LCD spdisplays_2880x1800Retina
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 5:43:37
    Disk Information: ℹ️
        APPLE SSD SM0512F disk0 : (500,28 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 400.00 GB (133.37 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 99.42 GB (49.66 GB free)
    USB Information: ℹ️
        Apple Internal Memory Card Reader
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.7) [Click for support]
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [not loaded]    com.splashtop.driver.SRXDisplayCard (1.6 - SDK 10.7) [Click for support]
        [not loaded]    com.splashtop.driver.SRXFrameBufferConnector (1.6 - SDK 10.7) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [not loaded]    com.splashtop.streamer-for-root.plist [Click for support]
        [running]    com.splashtop.streamer-for-user.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist [Click for support]
        [running]    com.splashtop.streamer-daemon.plist [Click for support]
        [loaded]    com.splashtop.streamer-srioframebuffer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    net.telestream.InstallToLibrary.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Programma  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Programma  (/Applications/Dropbox.app)
        Google Drive    Programma  (/Applications/Google Drive.app)
    Internet Plug-ins: ℹ️
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        EPPEX Plugin: Version: 4.1.0.0 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        QuickTime Plugin: Version: 7.7.3
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
        Picasa: Version: 1.0 - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        LastPass
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        SwitchResX  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             6%    WindowServer
             1%    fontd
             0%    Google Drive
             0%    SystemUIServer
             0%    Core Sync
    Top Processes by Memory: ℹ️
        1.20 GB    Adobe Photoshop CC 2014
        1.08 GB    Adobe InDesign CC 2014
        515 MB    Finder
        429 MB    firefox
        241 MB    WindowServer
    Virtual Memory Information: ℹ️
        5.82 GB    Free RAM
        7.91 GB    Active RAM
        2.02 GB    Inactive RAM
        1.42 GB    Wired RAM
        2.71 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 9, 2015, 12:33:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Splashtop Streamer_2015-02-09-123336_[redacted].crash
        Feb 9, 2015, 12:12:22 PM    Self test - passed
        Feb 9, 2015, 11:57:53 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Splashtop Streamer_2015-02-09-115753_[redacted].crash
        Feb 9, 2015, 09:48:33 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Splashtop Streamer_2015-02-09-094833_[redacted].crash

  • How do move itunes info (musice etc) from one apple ID to another apple ID?

    ow do move itunes info (musice etc) from one apple ID to another apple ID?

    Click here and request assistance.
    (80562)

  • While Loading Master data from BW Info Object

    Hi,
    What is the difference between the two options
    "set filters by Attributes AND Hierarchies" and
    "set filters by Attributes OR Hierarchies"
    when we load master data attributes/texts from BW Info Object.
    can someone please explain in detail with example.
    Thanks,
    Rishi

    Hi Rishi,
    While looking at your question -
    What is the difference between the two options
    "set filters by Attributes AND Hierarchies" and
    "set filters by Attributes OR Hierarchies"
    when we load master data attributes/texts from BW Info Object.
    can someone please explain in detail with example.
    This is not what you are explaining in second post.
    Kindly close old threads properly if your queries are resolved , so that it will helps other.
    Shrikant 

  • How to pass a "object" as a prameter from one java class to another java

    hi experts, I want to know "How to pass and get object as a parameter from one java class to another java class". I tried follwoing code just check it and give suggetions..
    import Budget.src.qrybean;
    public class ConfirmBillPDF extends HttpServlet
    qrybean db = new qrybean();
    SimplePDFTable pdfTable = new SimplePDFTable();
    pdfTable.simplePDFTableShow("2010","2011","1","2","1","131","102");
    }Here i want to pass db with simplePDFTableShow method. simplePDFTableShow is in another java class. So how can i do this.
    And also i want to know, how this obj will get.
    please help me.
    Edited by: andy_surya on Jul 14, 2010 7:51 AM

    Hi andy_surya
    what is this i am not understand
    pdfTable.simplePDFTableShow("2010","2011","1","2","1","131","102");but i am try to solve your problem try this
    qrybean db = new qrybean();
    SimplePDFTable pdfTable = new SimplePDFTable();
    pdfTable.simplePDFTableShow(db);and access like this in SimplePDFtable class update your method
    simplePDFTable(qrybean tempDB)
    // write your code
    }

  • Load data from one Application to another in BPC NW 7.5

    Hi
    I have a requirement to load data from One application to another application.
    eg. HR Plannning to CostCenter Planning.
    I am aware of a method to load data using transformation file mapping source and target dimensions and run DM package and this works fine.
    However, the challenge is if i try to automate this process then i will have to hardcode the application tech name and save as variant to use that in process chain. Now, if i hardcode the tech name of the application then it might happen that during full optimization the tech name might change and the automation load will fail.
    so how to handle this situation? any standard practices available?
    appreciate your inputs/thoughts.
    Regards.

    Hi,
    Exactly. The main problem is that there is no statement to transfer the data. Please take a look at the below link from help.sap:
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/f4/33f0bbc46c4a53860f1410f20ffb8b/content.htm
    Since the structure of both the applications is same, you dont require add_dim or rename_dim, etc. However, you definitely need the when statement.
    If you want to transfer all the records, then you can have something like
    *WHEN ACCOUNT
    *IS *
        *REC(EXPRESSION = %VALUE%)
    *ENDWHEN
    Hope this helps.

  • Change object from one transport request to another

    Hi,
    I have a requirement wherein i need to change the object from one transport request to another. The thing is that i have saved
    one in one transport request and when i am trying to transport it , it is not allowing me to transport as this transport request
    contains some inactive object. I have also tried to delete that object from this transport request and put in another one
    but when i tried to do that i was only allowing me to create sub task within the same request .
    Kindly suggest me
    Thanks
    Parag

    Hi,
    you can either just delete the object from the object item list of the first transport request (just click away all warnings and hints). Then put it into a new request, lock it and transport it. You might ned to overtake the responsibility for the first request but with the appropriate authorization this should be no issue.
    Other solution is using a transport of copies. This will tell you the object is locked in another request when you release it but still allow to transport it.
    In all solutions you have to be sure that transporting the object without all other stuff in the request is possible as the objects are independent from each other. Otherwise you will not be able to import the request in the destination system.
    Rgds.
    Roman

  • How do you transfer contacts and other info from one gmail address to another?

    Somebody screwed up my gmail so I created another account which does synch with my android phone which the other does not. But I lost all my contacts from the phone. The contacts still exist but they are on the old gmail account which does not synch with my cellphone. How do I transfer my addresses and phone numbers from one gmail address to another?

    That is a question for Gmail support.
    https://support.google.com/mail/?hl=en

Maybe you are looking for