Downloading Master Data

Dear All,
I am to download master data for MM. We might need 40 to 200 fields to download.
The area of concern is we do not know what is the volume of data ( might be 5,00,000+ ).
Please suggest a viable alternative to download the data since gui_download to excel sheet might not be a good option.

Excel can be limited to 64k lines depending on version.
If you need it externally, you option could be to export (WS_DOWNLOAD) as a tab delimited file.
WS_DOWNLOAD is only good when going to your local PC.
IF you want to go to an Application Server, you'll need to use something along these lines:
  CONSTANTS: c_tab TYPE x VALUE '09'.
  OPEN DATASET archfilname FOR OUTPUT IN TEXT MODE MESSAGE t_mesg.
  IF sy-subrc NE 0.
    MOVE 'X' TO t_error.
    MESSAGE e100(z0) WITH 'Error opening achrive file:' t_mesg.
    EXIT.
  ENDIF.
  LOOP AT it_out INTO out_rec.
    CONCATENATE
        out_rec-recnum
        out_rec-leadid
        out_rec-ltype
        out_rec-ltype_txt
        out_rec-status
        out_rec-status_txt
        out_rec-statdt
        out_rec-branch
        out_rec-brtextextd
        out_rec-fname
        out_rec-mname
        out_rec-lname
        out_rec-street
        out_rec-city
        out_rec-state
        out_rec-zip
        out_rec-telf1
        out_rec-telf2
        out_rec-telf3
        out_rec-telf3_ext
        out_rec-email
        out_rec-prefcont
        out_rec-prefcont_txt
        out_rec-ctype
        out_rec-ctype_txt
        out_rec-heard
        out_rec-heard_txt
        out_rec-heard_other_text
        out_rec-email_promo
        out_rec-email_promo_txt
        out_rec-creside
        out_rec-creside_txt
        out_rec-zown
        out_rec-zown_txt
        out_rec-bld_tm
        out_rec-bld_tm_txt
        out_rec-ownland
        out_rec-ownland_txt
        out_rec-spnum
        out_rec-cmt1
        out_rec-statseq
        out_rec-actseq
        out_rec-acttyp
        out_rec-acttyp_txt
        out_rec-actrst
        out_rec-actrst_txt
        out_rec-acmt
        out_rec-folseq
        out_rec-foltyp
        out_rec-foltyp_txt
        out_rec-fcmt
      INTO arch_rec
      SEPARATED BY c_tab.
    TRANSFER arch_rec TO archfilname.
  ENDLOOP.
  CLOSE DATASET archfilname.

Similar Messages

  • Downloading Master data from R/3 to CRM

    Hi all,
    Inorder to download Master data from R/3 to CRM, first we need to download all relavent customizing and condition objects, is this is the correct procedure. Pls anyone clarify this.
    If we make any changes to the data in R/3 which is already downloaded to CRM, will those changes replicate in CRM, inorder to replicate those changes in CRM what are the necessary things to be done.
    please anyone clarify on this
    Thanks In advance
    Phani Kumar TN

    Hi Phani -
    You will need to download all the condition and customizing objects which are relavant for the data you are replicating. Else you will get errors.
    Ans to 2nd part of your Q - you can do this by doing a delta load.
    I have some documents which u may find useful for this. Let me know where I can e-mail that.
    Cheers,
    Aarthi.

  • How to download master data of vendor to Excel

    Dear All,
    how to download master data of vendor to Excel?

    Hi Expert,
    To download Vendor Master Data:
    Go to T-Code: SE16 and provide LFA1 for General Data and LFB1 for Company Code Data..
    and Press Enter, then provide the Vendor Range and Press Execute Button.
    Select Menu -- Edit --- Download then select Spread sheet provide the path to save the download file and provide file name and press OK...
    Go to the provided path, which may find your Vendor Master Data in Excel format...
    Regards,
    GK
    SAP

  • Download master data

    I have one question. How can I down load the master data in to a file.
    I have an object called ZCOURSENAME and we loaded data from the file into this object. and some how we deleted the file. now we want to download that data into a file and load the new data.
    thanks

    Here is my issue.
    In our BW system, the Object has two fields name and number. and there are 7000 records in our system and some of them, number fields are blank. and now they send a new file which has some new records and also number field is not blank. So first thing I need to download the data which is already in BW. So incase, there is something going wrong, then I can reload it.
    I have one more question for this. My new file has around 9000 records on it. and I want to load that data in BW. for loading that, what I have to do? do I have to delete the master data and load the file or just load the file, then it will overwrite it? please advice me

  • Request Download for Master Data from ECC to CRM resulting in "Wait" Status in R3AR3

    Hi All,
    I have created request download in R3AR2 transaction to download master data for a particular Business Partner from ECC to CRM.
    But after I execute the request in R3AR4 transaction and check its status in R3AR3 transaction, it always states as "Wait".
    Please help me as to how to resolve this issue.
    Thanks in advance,
    Shubham

    Hi Shubham,
    Please check the queues in SMQ2 and what status they are showing?.
    Thanks,
    Faisal

  • How to load master data in sap bpc 7.0

    Hi ,
      how to load master data in sap bpc 7.0?plz give me the steps also?
    Thank u

    Hello Devi,
    There are three ways you can load Master Data in BPC
    1) Copy and paste.
    Download master data in flat file .Copy the  master data and paste in members of dimension after that process the dimension.
    2) Using SISS Pakage - load Flat File into BPC-Cube
    3) Using SQL Command.
    Thanks.
    With regards,
    Anand Kumar

  • GL account master data download

    Hi Experts,
    I want to download the GL account master data from Quality(testing) system and i want to upload the same into Development system via LSMW as the number of GL account master data is more.  Can anybody tell me how can i download the gl account master data? so that my uploading work will be easy.
    Thanks in advance

    Hi,
    Go to path : Accounting -->Financial Accounting -->General Ledger -->Master Records -->G/L Accounts -->Collective Processing -->OB_GLACC11 - Chart of Accounts Data / OB_GLACC12 - Company Code Data  / OB_GLACC13 - Descriptions click on OB_GLACC11 or OB_GLACC12
    And enter  give company code and Execute (F8) click on Select all records click on Print button  and click on List > Save / send>File an select Spreadsheet and enter and save the excel sheet and upload through LSMW
    Thanks,
    Raviteja

  • HR Master data download error

    Dear all,
    I am trying to download HR Master data  using FM gui_download.
    In case of downaloading all staff data, I am getting incorrect no
    of records in xls file though  no of records internal table is accurate.
    Also some of the records values are corrupt or incorrupt values.
    As analysed ,   when any value in a record ends with '#' as mentioned below, It is already considered as TAB separtion,thus
    ends with incorrect values in certain records
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          FILENAME              = fname
          filetype              = 'ASC'
          WRITE_FIELD_SEPARATOR = 'X'
        TABLES
          DATA_TAB              = table.
    When I try with ' '( space ) as the separator  in this FM , number of records are correct ,but not spread across in respective columns. I need to download in xls file with tab separation....
    I appreciate your suggestion on this ....
    Thanks
    - MK

    Hi Rob,
    I   have replaced those tab values with place before moving to function module.
    still, I am getting the number of records to be less than what is in internal table in xls download.
    There are records with  genuine errors,  which can be  corrected.Still it is supposed to give atlease number of records to be accurate one.
    Has anyone come across such issue while downloading master records
    I appreciate ur help.
    Thanks
    - M

  • Download material master data

    Hi,
    I want to download the material master data in to csv file.
    is there any standard program available?Please guide me.
    Regards,
    suresh

    Hi Suresh,
    If you are looking for entries in table MARA (material master table) or MARC then you probably don't need any report rather use se12 and there is option for exporting the content of the table in a CSV file..
    Please let me know if my understanding is right.
    Thanks
    Ajay

  • I have downloaded the latest version of icloud control panel to a PC with Windows 7. My "master" data is always on my PC. With other synch software I always select "One Way Outlook to Device". I synched icloud with Outlook and it has trashed my Outlook

    I have downloaded the latest version of icloud control panel to a PC with Windows 7. My "master" data is always on my PC. With other synch software I always select "One Way Outlook to Device". I synched icloud with Outlook and it has trashed my Outlook with duplicate contacts. Is there a solution. Is there selective synchronisation available?

    Make sure you don't have any notes that have no content or subject or this can prevent syncing with Outlook.  If you do, delete them.
    If you don't, try unchecking "Mail,Contacts,Calendars & Tasks with Outlook" on the iCloud control panel for Windows, choose Delete at the prompt (the data will still be in iCloud), restart your PC, then go back and check this setting again.  (Your iCloud data will reappear in Outlook after a brief delay as it redownloads.)
    Then create a new note on one of your iOS devices and see if it appears in the Notes folder in Outlook mail after a few minutes.

  • Link To Download the documentation for Oracle Master Data Management

    Hi,
    I require to make a hierarchy for Processes in Master Data management.
    Where do you suggest will I get the user guides for all the Softwares in MDM.?
    Thanks,
    Aeron

    Looks like product related question - not a question about the download service which is the topic of this forum.
    MDM suite has a range of products so you need to be more specific when looking.
    You might want to post in a relevant forum category, if one exists for your specific product, such as:
    https://forums.oracle.com/forums/category.jspa?categoryID=157
    Please do not hijack someone's thread ({thread:id=2354806}) - instead start a new one
    Likely place to look for download (which should include documentation) in this case is edelivery.oracle.com.
    Some docs are also available from:
    http://docs.oracle.com/cd/E18727_01/nav/scm.htm
    Edit:
    some additions to docs and other thread
    Edited by: orafad on Mar 21, 2012 11:30 AM
    Edited by: orafad on Mar 21, 2012 11:32 AM
    Edited by: orafad on Mar 21, 2012 11:34 AM

  • Download of the master data of cost centres

    Hi Friends,
    How to download the master data of cost centres from
    SAP where these cost centres are not on the accrual generator.
    Could you please let me know the procedure.
    Regards,
    K

    Hi Krishna,
    You can take download of following two tabels.
    CSKS & CSKT
    Regards,
    Abhijit

  • Downloading  the master data from database

    Is there any standard report or function module or bapi's for downloading the following master data from the database.
    1. Masterial master
    2. Vendor master
    3. Customer master
    4. For J1ID
    regds
    prabhu

    hi,
    I checked as per my knowledge there is no BAPI for these requirement.
    regards
    prabhu

  • Huge master data download

    Hi everybody,
    I want to download about 5 lakhs of master data records into excel or txt file.If I do in normal procedure by going in maintain->menu->export->...then its giving dump due to huge data.
    If there is any alternative or function module that can work plz let me know
    Thanks in advance

    hi,
    follow these links.
    Use of function module 'sapgui_progress_indicator'
    in session and call tansaction methods, which is better . why?

  • Download HR Master Data - PU12?

    Hi,
    We are designing an outbound interface from SAP HR, to publish master data, but only some infotypes.
    Regarding implementation, someone suggested Interface Toolbox (tr. PU12), however, when I did a brief analysis in the system it seemed to be quite complex, or at least not so straight forward.
    Do you guys know where can I find a clear description about the steps and effort needed? Or other solutions to retrieve the data.
    Thanks in advance,
    Luí

    hi
    good
    go through this link which ll give you brief idea abou the PU12
    http://help.sap.com/saphelp_45b/helpdata/en/35/b0ea5187a62488e10000009b38f9b7/content.htm
    THANKS
    MRUTYUN^

Maybe you are looking for

  • Data values on Bar Chart in a BI Publisher report (11g)

    I have a bar chart that I created via the layout editor in BI Publisher 11g, and I'm displaying the data values on the chart. That part works great. However, we're noticing that the chart adds zeros to the end of the data values depending on the leng

  • OEL5.4 Install on Windows 7 Virtual PC?

    Environment: Windows 7 x64, OEL5.4 x86, Windows Virtual PC, Lenovo laptop W500 I installed from OEL5.4 DVD iso image and immediately had trouble w/ the graphical mode. I tried 'resolution=1024x768' option but it didn't help. So I installed w/ the 'te

  • Problem with merged help

    argggh. ok. i (thought i) followed peter grainge's merged help on a simple merged webhelp project, but am having a devil of a time producing the desired result, and updating the published files to show what's been merged (e.g., the child projects). t

  • ABAP Debugger

    Hello. It is a pleasure to write my first message here. I recently got out of school and found a new job in ABAP so I am a real beginner in ABAP. I would like to say that I speak french and my english is fairly good but not perfect so sorry for the m

  • Codec for Quicktime

    I exported a Quicktime Movie from Final Cut Pro. It was shot at DVCPOR HD 1080p24 23.98. Quicktime says it doesn't have the appropriate software to play it. What do I do to be able to play it? Is there a free codec to download or something?