How to download hierarchy from production system & recreate it development.

Hi Gurus,
I am working on a requirement where the updated hierarchy is present in production system & I have to create the same hierarchy with the same data in development system.
Could you please suggest me the best way to download the same hierarchy in a file from production & create it in development system with the same data.
Thanks & Regards
Mayank Tyagi

it is solved now!!!!!
Thanks alott....

Similar Messages

  • How to download hierarchy from BW

    Hi,
    i want to use a customer hierarchy from a SAP BW system in a local system.
    Is there a way to download it?
    Regards,
    Mehmet Dinc.

    Hi
    Have you checked this doc?
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0403a990-0201-0010-38b3-e1fc442848cb
    Also check these previous thresds
    Re: Selection for loading hierarchies into BW
    Re: Hierarchy Loading from R/3 to BW
    Regards,
    R.Ravi

  • Download employee from productive to development

    Hi all,
    Could you please explain me how could I download an employee from productive system to development system (master data,  clusters, etc) ? Thanks in advance!
    Regards

    Hi,
    If you want to download employees , try these SAP notes - 550055,312090.
    Also please visit this forum.
    Re: Employee download from HR
    Thanks

  • Is it possible to Delete BP's from production system

    Hi All,
    Is it possible to delete old BP numbers from production system?
    if yes please let me know the procedure and impact on the system.
    if no please let me know ,how to prevent user from entering old BP number into order.
    Thanks in advance for your help.
    Regards,
    Shaik

    Hi Shaik,
    You can delete the BP using transaction BUPA_DEL.
    Just enter the number of the BP you want to delete and then execute.
    Make sure that all the checkboxes on the selecton screen are clear.
    In case the BP has dependencies and deletion is not alowed, you will get an error message informing you of the same.
    Best Regards,
    Rishu.

  • Importing Program from Production System to DEV and QAS.

    Hi All,
    I have 3 Systems in my Landscape.
    DEV-> QAS-> PRD
    One of my Z program is running in the Production system.
    This Z program is got deleted in the DEV and QAS.
    How can I import the Program from Production System to QAS and DEV.
    Regards,
    Viji.

    hi Vijaya laxmi,
    you can goto Production system ---> SE38/ SA38 and copy the program and create the same in program using SE38 in Development system  and then transport it to Quality system.
    You can also Re-Import the Request from Production to Dev system.
    Thanks,
    Nelson
    Edited by: Nelson karunakar on Sep 18, 2008 7:15 AM

  • How to download songs from ITunes Japan and France?

    How to download songs from ITunes Japan and France with a credit card and address based in the US? The system appears to not allow downloads in that fashion. Please let me know if you have any details

    This question is asked literally dozens of time a week in these forums, & I will answer, again. In order to purchase from any specific country's store, you will have to meet one of the following criteria:
    1) Have a credit card from that country with a billing address in that country.
    2) You may use an iTunes gift card purchased in that country, but the billing address rule still applies.
    This rules are mandated by the record companies not Apple. The record companies do not care for cross-border sales.
    As a new poster, just a suggestion, it might save you a little time if you use the "search" function in the upper right corner to see if your question has been asked previously. That way you don't have to wait on someone to come along to help you.

  • How to download data from abap-ouput to excel sheet with logo

    how to download data from abap-ouput to excel sheet with standard logo
    Edited by: Harish Kasyap on Nov 18, 2008 8:19 AM
    Edited by: Harish Kasyap on Nov 18, 2008 8:20 AM

    For saving the report you can goto System -> List -> Save -> Local File -> Location where you want to save in your presentation server.
    You can also give a option in your selection screen to save the file to Presentation server using FM GUI_DOWNLOAD.
    Hope it helps.
    Thanks,
    Jayant.

  • I have been using my Apple ID in India and recently i moved to Spain and now i can not see my indian apps.it says my apple ID is valid for only spanish store.how to download apps from Indian store being in Spain.

    I have been using my Apple ID in India and recently i moved to Spain and now i can not see my indian apps.it says my apple ID is valid for only spanish store.how to download apps from Indian store being in Spain.

    Did you try to change the location  in Settings/iTunes & AppStore/AppleID -> view Apple ID, log in ->Country/Region -> India?

  • How to download file from application server

    Hi Experts,
                  I developed report and execute in background mode. for this i used Open dataset transfer and close dataset . i got the requried output . But in this case user want downloaded file on presentation server so can anyone tell me How to download file from application server?
    i know it is possible through Tcode CG3Y. but i want code in program.

    This code will download a file to your Client package by package, so it will also work for huge files.
    *& Report  ZBI_DOWNLOAD_APPSERVER_FILE
    REPORT  zbi_download_appserver_file.
    PARAMETERS: lv_as_fn TYPE sapb-sappfad
    DEFAULT '/usr/sap/WBP/DVEBMGS00/work/ZBSPL_R01.CSV'.
    PARAMETERS: lv_cl_fn TYPE string
    DEFAULT 'C:\Users\atsvioli\Desktop\Budget Backups\ZBSPL_R01.CSV'.
    START-OF-SELECTION.
      CONSTANTS blocksize TYPE i VALUE 524287.
      CONSTANTS packagesize TYPE i VALUE 8.
      TYPES ty_datablock(blocksize) TYPE x.
      DATA lv_fil TYPE epsf-epsfilnam.
      DATA lv_dir TYPE epsf-epsdirnam.
      DATA ls_data TYPE ty_datablock.
      DATA lt_data TYPE STANDARD TABLE OF ty_datablock.
      DATA lv_block_len TYPE i.
      DATA lv_package_len TYPE i.
      DATA lv_subrc TYPE sy-subrc.
      DATA lv_msgv1 LIKE sy-msgv1.
      DATA lv_processed_so_far TYPE p.
      DATA lv_append TYPE c.
      DATA lv_status TYPE string.
      DATA lv_filesize TYPE p.
      DATA lv_percent TYPE i.
      "Determine size
      SPLIT lv_as_fn AT '/' INTO lv_dir lv_fil.
      CALL FUNCTION 'EPS_GET_FILE_ATTRIBUTES'
        EXPORTING
          file_name      = lv_fil
          dir_name       = lv_dir
        IMPORTING
          file_size_long = lv_filesize.
      "Open the file on application server
      OPEN DATASET lv_as_fn FOR INPUT IN BINARY MODE MESSAGE lv_msgv1.
      IF sy-subrc <> 0.
        MESSAGE e048(cms) WITH lv_as_fn lv_msgv1 RAISING file_read_error.
        EXIT.
      ENDIF.
      lv_processed_so_far = 0.
      DO.
        REFRESH lt_data.
        lv_package_len = 0.
        DO packagesize TIMES.
          CLEAR ls_data.
          CLEAR lv_block_len.
          READ DATASET lv_as_fn INTO ls_data MAXIMUM LENGTH blocksize LENGTH lv_block_len.
          lv_subrc = sy-subrc.
          IF lv_block_len > 0.
            lv_package_len = lv_package_len + lv_block_len.
            APPEND ls_data TO lt_data.
          ENDIF.
          "End of file
          IF lv_subrc <> 0.
            EXIT.
          ENDIF.
        ENDDO.
        IF lv_package_len > 0.
          "Put file to client
          IF lv_processed_so_far = 0.
            lv_append = ' '.
          ELSE.
            lv_append = 'X'.
          ENDIF.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize         = lv_package_len
              filename             = lv_cl_fn
              filetype             = 'BIN'
              append               = lv_append
              show_transfer_status = abap_false
            TABLES
              data_tab             = lt_data.
          lv_processed_so_far = lv_processed_so_far + lv_package_len.
          "Status display
          lv_percent = lv_processed_so_far * 100 / lv_filesize.
          lv_status = |{ lv_percent }% - { lv_processed_so_far } bytes downloaded of { lv_filesize }|.
          CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
            EXPORTING          "percentage = lv_percent - will make it fash
              text = lv_status.
        ENDIF.
        "End of file
        IF lv_subrc <> 0.
          EXIT.
        ENDIF.
      ENDDO.
      "Close the file on application server
      CLOSE DATASET lv_as_fn.

  • How  to transfer data from one system to another by datamart please give de

    how  to transfer data from one system to another by datamart please give details

    Hi Deba,
    Find the below SAP help doc which may help u...
    http://help.sap.com/saphelp_nw70/helpdata/en/12/43074208ae2a38e10000000a1550b0/frameset.htm
    Also find the below threads...
    Loading data from one cube to another cube.
    data copy from infocube to infocube in two different BW systems
    Delta when loading from ODS to ODS
    reg datamart
    Data mart flag
    Regards,
    KK.

  • How to download data from a an external hard drive ?j

    How to download data from an external hd ?

    You need to copy the data onto your computer and transfer it via that (either via iTunes, or if the app that you want to transfer the data to supports, via wifi). Like the previous reply said, you can't do it directly without a computer being involved.

  • How to download pics from Verizon cell phone to ipad2?

    How to download pics from Verizon cell phone to ipad2?

    Is it an iPhone ? If it is and you don't want to go via your computer and iTunes, then the camera connection kit can connect the iPhone to the iPad and can copy photos to the iPad. Also there are photo transfer apps such as Simple Transfer which can copy photos between iOS devices via your wifi network.
    If it's not an iPhone then you probably need to go via your computer and sync them via iTunes, or if there aren't that many photos and your phone supports it you can email them to yourself

  • How to download recordings from HD LCD TV to iMac G5?

    anyone know how to download recordings from a HD on a LG LCD TV to an apple computer? thx.
    iMac G5   Mac OS X (10.4.9)  

    Based on the specs, the only OUTPUTS on your TV are a composite video out+analog stereo out and a TOSLINK digital audio out.
    In order to connect it to your Mac to capture video from the TV, you will need one of the following -
    1 - an analog-digital converter like the Canopus ADVC-110 or
    2 - a miniDV camcorder that supports analog-digital passthrough (most do)
    In both cases you would connect the composite video/analog stereo outputs from your TV to the converter or camcorder; and then connect the converter or camcorder to your Mac via Firewire.

  • TS1538 how to download files from laptop to ipad air

    how to download files from laptop to ipad air

    Sync them via iTunes as you would with any other iDevice.

  • Anyone know how to download video from a JVC HD Hard Disk Camcorder to iMovie?

    Just got my first iMac computer and cannot figure how to download movies from my JVC camcorder, it only wants to back up to PC or use Everio program for PC.  Would appreciate any feedback on how to overcome this issue.

    See > Apple - iLife '11 Help - iMovie '11 Supported Cameras
    For more on iMovie, see > Apple - Support - iMovie

Maybe you are looking for

  • SAP BW 3.5 Query Cache - no data for queries

    Dear experts, we do have a problem with the SAP BW Query Cache (BW 3.5). Sometimes the problem arise that after the queries have been pre-calculated using web templates there are no figures available when running a web-report, or when doing a drilldo

  • Error when installing oracle 10g on OEL4..(oracle enterprise linux )

    Hi everyone, i am getting this error when i run ./runInstaller [oracle@localhost database]$ ./runInstaller ./runInstaller: line 52: /root/Desktop/10201_database_linux32/database/install/.oui: Permission denied But it has all the permissions (read,wri

  • Ipod shuffle on windows oke on MBP not?

    My ipod shuffle, works well on my old windows pc. On my MBP however it won't recognize the ipod shuffle. It doesn't pop-up in itunes.  Both pc's have 10.3.1.55 of itunes. I have a second ipod shuffle and everything goes as you wood expected. Who know

  • Error in installation of Central Instance in Windows Cluster with Oracle

    Hi! If I try to continue with the installation of Central Instance of Cluster I get the following error: The java load in database <sid>/<server> has already been configured.  Solution: remove the schema and load it with a new load before you run thi

  • Performance issue related to Wrapper and variable value retrievel

    If I have a array of int(primitive array) and on the other hand if I have an array of it's corresponding Wrapper class , while dealing is there is any performance difference betwen these 2 cases . If in my code I am doing to conversion from primitive