Import data without all display fields

When you import a lookup table all display fields must be mapped and must be a field in the import map. This isn't possible at every import map. For example: we only want to import the code, but "code" + "description" are the displayfields in de look-up table. The workaround is the field "description"  make not display during the import. This is possible in case of an once conversion import, but isn't possible in case of a regular import, because the fileds are permanent not display. This isn't acceptable for managing the data. How can we import the data without closing de displayfields temporary?
Thanks in advance,
Heleen

Hello:
You have to import the display fields, because they are the main matching/indexing resource for MDM. what you could do, is to map only nulls and therefore leave it blank. Afterwards don't use this df as matching field.
I hope this helps
Alejandro

Similar Messages

  • Import data without opening explorer built in Import visual button

    Hi
    How can I Import data without opening explorer. If I add Import button visual and click on it automatically opens explorer to chose exported file. But I already know location and name of  exported file so I don't want that explorer to appear.
    How can I do it?
    Thanks

    Hi I was thinking
    What about to have code for importing and exporting. for example:
    Import(DataName, location)
    Import(Collection1, "C:\User\Documents\Data\dataname")
    Export(DataName, location)
    Export(Collection1, "C:\User\Documents\Data\dataname")
    With this code we could easily add it into timerEnd behaviour and we could make automatic backup files
    Or
    We could add this into save button where we do editing of our collection and save it straight to backup file
    We could have the location and data name saved in local machine and call them in that import export code. This is exactly what I need if I want that data to be shared between multiple devices where all the data would be stored on server or
    shared folder
     And also for better user interface there should be a location picker (button visual) what would open explorer where we could chose the location instead of writing it down into an inputtext
    What do you thing about this? Would this work?

  • How to import data from all excel worksheet ?

    hi
    I want to import data from excel worksheet. There is a fm ALSM_EXCEL_TO_INTERNAL_TABLE but it read data only from "actual" sheet. How can I   
    read data from all exel spread sheets ?
    krzys

    Hi,
    check this code, this is gathered from one of the thread.
    report zole123.
    INCLUDE ole2incl.
    DATA:  count TYPE i,
           application TYPE ole2_object,
           workbook TYPE ole2_object,
           excel     TYPE ole2_object,
           sheet TYPE ole2_object,
           cells TYPE ole2_object.
    CONSTANTS: row_max TYPE i VALUE 256.
    DATA index TYPE i.
    DATA: BEGIN OF itab1 OCCURS 0, first_name(10), END OF itab1.
    DATA: BEGIN OF itab2 OCCURS 0, last_name(10), END OF itab2.
    DATA: BEGIN OF itab3 OCCURS 0, place(50), END OF itab3.
    *START-OF-SELECTION
    START-OF-SELECTION.
      APPEND: 'name1' TO itab1, 'surname1' TO itab2,
                                  'worli' TO itab3,
                'nam2' TO itab1, 'surname2' TO itab2,
                                  'chowpatty' TO itab3,
               'name3' TO itab1, 'surname3' TO itab2,
                                  'versova' TO itab3,
                'name4' TO itab1, 'surname4' TO itab2,
                                  'grant road' TO itab3,
                'name5' TO itab1, 'surname5' TO itab2,
                                  'gaon' TO itab3,
                'name6' TO itab1, 'surname6' TO itab2,
                                  'mahim' TO itab3.
    CREATE OBJECT application 'excel.application'.
    SET PROPERTY OF application 'visible' = 1.
    CALL METHOD OF application 'Workbooks' = workbook.
    CALL METHOD OF workbook 'Add'.
      CREATE OBJECT excel 'EXCEL.APPLICATION'.
      IF sy-subrc NE 0.
        WRITE: / 'No EXCEL creation possible'.
        STOP.
      ENDIF.
      SET PROPERTY OF excel 'DisplayAlerts' = 0.
      CALL METHOD OF excel 'WORKBOOKS' = workbook .
      SET PROPERTY OF excel 'VISIBLE' = 1.
    Create worksheet
      SET PROPERTY OF excel 'SheetsInNewWorkbook' = 1.
      CALL METHOD OF workbook 'ADD'.
    DO 3 TIMES.
        IF sy-index GT 1.
          CALL METHOD OF excel 'WORKSHEETS' = sheet.
          CALL METHOD OF sheet 'ADD'.
          FREE OBJECT sheet.
        ENDIF.
      ENDDO.
      count = 1.
      DO 3 TIMES.
        CALL METHOD OF excel 'WORKSHEETS' = sheet
          EXPORTING
            #1 = count.
       perform get_sheet_name using scnt sname.
        CASE count.
          WHEN '1'.
            SET PROPERTY OF sheet 'NAME' = 'firstName'.
            CALL METHOD OF sheet 'ACTIVATE'.
            " add header here
            LOOP AT itab1.
              index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name " for headings change the - 1 to + 1 to accomodate 2 extra lines
              CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
              SET PROPERTY OF cells 'Formula' = itab1-first_name.
              SET PROPERTY OF cells 'Value' = itab1-first_name.
            ENDLOOP.
          WHEN '2'.
            SET PROPERTY OF sheet 'NAME' = 'LastName'.
            CALL METHOD OF sheet 'ACTIVATE'.
    " add header here
            LOOP AT itab2.
              index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name " for headings change the - 1 to + 1 to accomodate 2 extra lines
              CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
              SET PROPERTY OF cells 'Formula' = itab2-last_name.
              SET PROPERTY OF cells 'Value' = itab2-last_name.
            ENDLOOP.
          WHEN '3'.
            SET PROPERTY OF sheet 'NAME' = 'place'.
            CALL METHOD OF sheet 'ACTIVATE'.
    " add header here
            LOOP AT itab3.
              index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name " for headings change the - 1 to + 1 to accomodate 2 extra lines
              CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
              SET PROPERTY OF cells 'Formula' = itab3-place.
              SET PROPERTY OF cells 'Value' = itab3-place.
            ENDLOOP.
        ENDCASE.
        count = count + 1.
      ENDDO.
    Save excel speadsheet to particular filename
      GET PROPERTY OF excel 'ActiveSheet' = sheet.
      CALL METHOD OF sheet 'SaveAs'
                       EXPORTING #1 = 'c:\temp\exceldoc1.xls'     "filename
                                 #2 = 1.                          "fileFormat
    Note: to make headings, change the -1 to +1 where specified in the above code and add the following where i have mentioned to add it
    index = row_max * ( sy-tabix - 1 ) + 1.
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'value' = header1.
    Reward for helpful answers
    Thanks
    Naveen khan

  • Datapump: importing data without execute grant command.

    Hi,
    maybe I'm missing so please help me.
    A customer gave us a dump.
    Before start to import the dump, I checked the ddl command and I found
    that inside the dump there are command like "grant dba to xxx" where
    xxx is the schema tha I shold import.
    This is unaccetable for us, and I'm sure (I know the customer) that
    this user doesn't need to be a DBA.
    There is a way to import the data in a way that I don't have to revoke
    all grants (like dba) after the import?
    Thanks in advance
    p.s.
    11g R2 Linux Redhat 64bit

    Wat if you just import in user level mode and also you can use the exclude option to exclude anything that you donot want to import

  • Import data into an UDF

    Hi experts,
    I know I can import data through DTW. but since it has fixed format of template. how can I import data into user-defined fields?
    Thanks...

    Hi Vic,
    Open the DTW, Log on to a company,
    Under the menu --> Advansed, click on the Maintain Interface.
    A window appears
    Select the Object from drop down field, Ex. oBusinessPartners,
    Click on the + Sign next to the expand the desired object.
    You can find all the Userdefined fields there in the tree view.
    Right click on parent node of the Tree and click on Create Template for the structure.
    A Save As window appears to save the new template,
    Give the path and save the file,
    Now the new Template contains all the Userdefined fields also.
    Regards
    Reno.

  • Error while importing data from XML file to a Oracle database

    I am getting the following error while importing data
    *** atg.xml.XMLFileException: No XML files were found for "/Dynamusic/config/dynamusic/songs-data.xml". 
    The files must be located  under the name "/Dynamusic/config/dyna
    *** java.io.FileNotFoundException: D:\MyApp\ATG\ATG10.0.3 (Access is denied)
    java.io.FileNotFoundException: D:\MyApp\ATG\ATG10.0.3 (Access is denied)
            at java.io.FileInputStream.open(Native Method)
            at java.io.FileInputStream.<init>(FileInputStream.java:120)
            at atg.adapter.gsa.xml.TemplateParser.importFiles(TemplateParser.java:6675)
            at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5795)
            at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5241)
    I have placed the FakeXADataSource and JTDataSource properties files as required. In fact I have been able to import data in all machines. Just this one machine is giving problems. I have also checked out the access rights. Can someone help me please?

    Confirm that you have access to D:\MyApp\ATG\ATG10.0.3 and existence of Dynamusic/config/dynamusic/songs-data.xm

  • 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.

  • Import Date Problem

    I recently installed iphoto 6. Previously when I imported photos they were automatically dated the date I imported them. Now the import date on all imports is January 1, 2003. It is a hastle to redate every roll I import. What can I do?
    G4   Mac OS X (10.3.9)  

    ouman
    Welcome to the apple discussions.
    Try deleting the com.apple.iPhoto.plist file from, Home / Library/ Preferences and re-start the Application.
    Regards
    TD

  • Crystal Reports Cross-Tab Report not showing all available fields

    I am running CR2008 against MS SQL Express.  I have several tables with fields and data in them and can create standard reports to show all the data in all the fields.  However, when I try to create a cross-tab report, only some of the fields appear for me to choose from.
    I created a standard report with all the fields I needed in my cross-tab report and ran a preview.  Everything was there.  I then added a cross-tab object, selected the tables only to find that fields that are in the main report are not showing up for selection in the cross-tab.

    UPDATE:  I exported the entire database from MS SQLExpress to MS Access and I am having the same issues, so it does not appear to be a problem with the database engine and, since the standard tabular reports show the fields, I am at a loss as to why they don't show up in the cross-tab or the Parameter fields.
    I am creating the cross-tab through the Cross-Tab wizard.  Is there maybe a bug in that?  Is there a way to create it otherwise?

  • Import Manager and Display Fields

    I've been using SRM-MDM 3.0 for a couple of months and 1 fundamental MDM design has always bothered me and I was hoping to get some resolve on this.
    The purpose of Display Field is 2 folds:
    1. Display the field in the Catalog Search UI for a lookup table: i.e. if both Supplier Name and ID are Display Fields, then in the Search UI, both fields are displayed to the end-user. If only Supplier ID was the display field, then in the UI only the ID is displayed.
    - From a usability pov, tables such as Supplier and Product Group should have the name or description fields displayed in the Search UI as the numeric values are meaningless to the end-users. 
    2. Display field ALSO affect what is the key used to import data into a table.  So if Supplier ID is the display field for Supplier table, then in Import Manager, the Supplier ID values are displayed and must be mapped to the source values.
    - From an importing pov, mapping values should always be an index-like field, such as Supplier ID or Product Group ID, or ISO, and usually never the actual name or description field.
    But SAP has tied the two together. So in order to display the name/description to the end-user, we must enable the name/description field as a Display Field.  But we also want to map based on the index/ID field, so we also enable the index/ID field as a Display Field.  Now in Import Manager, we have two Display Fields for a table (i.e. Supplier ID and Supplier Name for Supplier table) and I've noticed some issues with this:
    1. You import file must have BOTH values (index/ID and the name/description fields) in the source, in order to Automap.  If your source file only has 1 field, like in MECCM when extracting  ECC contract, ONLY the Supplier ID, or Category ID is extracted, Automap is not possible.  What is funny is that standard SAP extract program only extracts the ID fields, BUT the standard SAP repository has the name/description fields as the Display Field.  Automap is a must for tables like Product Group where hundreds of lines can make manual mapping a pain.
    2. I also noticed you cannot Add values to a table that has 2 Display Fields, you can only map to existing values.  The Add button is grayed out.
    With all that said, when you're replication ECC Contract Data using MECCM, for tables like Supplier and Product Group, what fields should be set as Display Fields, and if there are multiple Display Fields, what special setting needs to be done in Import Manager to enable automapping?  Even standard SAP Import Map (_MDMContractDataTransmission_ProductID) throws errors when multiple fields are set as Display Fields.
    I'm not familiar with the partitioning function, and I've seen PDF's about it, but don't really see how it could be helpful. I've also read someone suggesting changing the DF's before import, which I think is unacceptable, as this requires unloading/loading repositories everytime an import happens.
    Thanks for reading my paragraph and any input is greatly appreciated.
    Edited by: Derek Xu on Apr 30, 2009 6:50 PM

    Hi Derek,
    Thanks for writing your thoughts. I would like to provide some information on one of your points where in you have mentioned that :
    You import file must have BOTH values (index/ID and the name/description fields) in the source, in order to Automap. If your source file only has 1 field, like in MECCM when extracting ECC contract, ONLY the Supplier ID, or Category ID is extracted, Automap is not possible.
    I completely agree that if you have 2 fields in MDM repository and you are only importing only one of them, then you cannot use the Automap feature of Import Manager. So in your case, the description is not getting importing, so you cannot use Automap in that case.
    I had a very similar requirement in one of my project and we went with creation of a Import Value template. We created a template with all the possible values for all the look up tables in that and mapped it once in the Map. Hence, next time, the Map was used to automatically Map the source and Destination values for all the look up tables.
    SAP-MDM Automatic Import Requirement u2013 Creation of a Value Mapping Template:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80ad0cff-19ef-2b10-54b7-d4c7eb4390dd
    Please read the above article and hope its useful. You can go for this approach in your case if suitable.
    I have mentioned examples of descriptions and their respective fields in the article.
    Hope it helps.
    Thanks and Regards
    Nitin jain

  • Displayed changed data without refresh

    Dear Expert,
    I am using CL_ALV_GRID to let the user input some code in one filed then the it's text display in another field automatically.But I meet a problem , to display the changed data I have to use method 'refresh'. This method will refresh all the data, but user only want to display the changed data.
    Is there any way to realize this kind of requirement ?

    Hi expert,
    Here data will be displayed on layout.After displaying the data first we need to modify the record after that selected that record
    and press the CUSTOME REFRESH button only selected row is changed  in internal table after that using set_table_for_fist_display using that method wt ever the modified the data in itab that data will display.
    claSS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
    MOVE 'REFRESH' TO ls_toolbar-function.
        MOVE icon_refresh  TO ls_toolbar-icon.
        MOVE 'REFRESH SCREEN'(140) TO ls_toolbar-quickinfo.
       MOVE 'DELETE DATA'(120) TO ls_toolbar-quickinfo.
        MOVE 'REFRESH'(140) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        APPEND ls_toolbar TO e_object->mt_toolbar.
        CLEAR ls_toolbar.
    ENDMETHOD.
    ENDCLASS.
    METHOD handle_user_command.
      CASE e_ucomm.
        WHEN 'REFRESH'.
          CALL METHOD r_grid->get_selected_rows
              IMPORTING
                 ET_INDEX_ROWS =
                 et_row_no     = it_rows.
          LOOP AT it_rows INTO wa_rows.
    MODIFY DBTAB FROM TABLE ITAB INDEX WA_ROWS-INDEX.
    ENDLOOP.
    CALL METHOD r_grid->set_table_for_first_display
            EXPORTING
              is_layout       = gs_layout "&see below
            CHANGING
              it_fieldcatalog = gt_fieldcat
              it_outtab       = ITAB.
    ENDMETHOD.
    STARTOFSELECTION.
    CREATE OBJECT r_container
        EXPORTING
          container_name              = 'CONTAINER_1'
    CREATE OBJECT r_grid
        EXPORTING
          i_parent          = r_container
    SET HANDLER event_receiver1->handle_user_command FOR r_grid.
      SET HANDLER event_receiver1->handle_toolbar FOR r_grid.
    Regards
    MURALII

  • Data with "," overflows to the next field when importing data with DTW

    Dear all,
    When I tried to import data with DTW, for the data that includes ",", the data after "," all jumps into the next field after import.
    E.g. Column A(memo): bank, United state
           Column B(project code): blank
           Result in SBO: Memo field : bank
                                  Project code: United state
    I  have tried 2 ways.
    1. Save the file as csv, and adding double quote(") at the beginning and ending of the data. However, it didn't work. It didn't work with single quote as well.
    2. Save the file as txt, without amending the data at all.
    It worked, however, in SBO, double quote is auto added, it becomes "bank, United state".
    Please kindly advise how to handle such case.
    Thank you.
    Regards,
    Julie

    Hi,
    Check this if it is useful :
    Upload of BP Data using DTW
    Rgds,
    Jitin

  • Address Book field names changing for "imported" data

    I'm migrating from a thousand year old Palm Pilot that has served me so well to an iPhone. So it's time to get my contacts into OSX Address Book.
    I have tried moving the data a couple of ways - exporting vCards and text files from the Palm Desktop software.
    I did extensive editing of the text file in MS Excel to get the data into good order.
    I have set up a template in the Address Book preferences to create fields that I want/need. Some are generic default field names, some have custom names. eg. I want to see a field called "Bus. Phone" not one called "work". Call me picky.
    I get the same basic result no matter if I import the vCard file or a text file - The names of the fields just show up with very generic names in the imported data. I should note that creating a NEW record seems to use the field names that I have specified in the preferences.
    Also, when importing the text file, Address Book asks me to assign the field names for certain fields (while it seems smart enough to know what labels to use for other fields all on it's own). However, the Field Names available in the drop down menu ARE NOT the ones that I have set up in the prefs. I seem limited to the generic default field names only.
    Can anybody tell me how to get the field names to be what I want them to be for address data that is being imported like this?
    Thanks for any suggestions - this has been driving me crazy as it would seem to me to be a pretty basic process. (I mean, the Address Book has this import functionality and custom field name functionality built in so it should work right?!)
    Allen

    No sooner do I ask than I notice that other people have asked the same question. In one of the reply's I saw mention of a product called "Abee".
    I tracked it down and it did the job for me! Custom Field names live on!
    It's at:
    http://www.sillybit.com/abee/

  • Importing from external hard-drive without all the clutter

    greetings...i need to import my saved iphoto library from my external hard-drive back to my new computer's iphoto library...how can i best do this without bringing along all the clutter (copies or originals i don't want)...i dropped my entire saved library into my computer's library but ended up with thousands of versions i do not want (i just want the versions i last had-complete with typed information or labeling)...certainly one doesnt' have to go through the whole imported library and delete all the copies and originals they no longer want (that would take a week!)
    thanks,
    here's what i see on my external hard-drive:
    (what should i drag over?)
    AlbumData.xml
    Data (Folder)
    Dir.data
    iPhoto.ipspot
    iPhotoLock.data
    iPod Photo Cache (Folder)
    Library.data
    Library.iPhoto
    Library6.iPhoto
    Modified (Folder)
    Originals (Folder)
    Thumb32Segment.data
    Thumb64Segment.data
    ThumbJPGSegment.data

    (what should i drag over?)
    All of it, as a unit.
    To restore an iPhoto Library drag the iPhoto Library Folder to the Pictures Folder and start iPhoto. There's no importing involved.
    All of the "clutter" is necessary for running iPhoto. If you don't want it, use a different app.
    It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss
    Regards
    TD

  • Custom field in Account Master Data Tcode BCA_CN_ACCT_03 - Display Account

    Hi all,
    I want to add a custom field in Basic Data tab of display account screen : Tcode BCA_CN_ACCT_03. 
    Please give step-by-step solution.
    Points assured!
    Jogdand M B
    Edited by: Jogdand M B on May 19, 2008 5:36 PM

    Solved by myself
    I write here the response because I didn't found it anywhere:
    When you are adding a custom field to MAKT table you have to add it to appending structres SKTEXT and DMAKT too because the standard uses them to read/write the data to MAKT. It's easy to do but hard to find out

Maybe you are looking for

  • Azure TechNet Guru News: October Winners Announced

    All the votes are in!  And below are the results for the TechNet Guru Awards, October 2014 !!!! For a full list of winners, see the full blog post, as runners up had to be removed from this post to fit the forum max length restrictions.  BizTalk Tech

  • MacBook pro does not start. How can I back to Mac OS X Lion?

    I have a MacBook Pro. On my MacBook i made three partition, then I installed window 8. After that I started windos and try to delete third partition by Administrator tool from windows operating system. After that my MacBook does not start. How can I

  • Getting Start and End Date of Current Year?

    Hi Folks, How do I get the start of the year and end of the year in Java ? If I say : Calendar cal = Calendar.getInstance(); int day = cal.get(Calendar.DATE); int month = cal.get(Calendar.MONTH); int year = cal.get(Calendar.YEAR); System.out.println(

  • Playing movies using VLC on external display

    My Macbook Pro is connected to my TV through the DVI port. There is a side-by-side arrangement, not mirror displays. Everything is working perfectly, sound and video. Sometimes I try to use VLC to play a movie on the TV screen, while I do work on my

  • Access I/O Ports from RT without an FPGA VI

    I am having only one VI in RT but no VI for FPGA. So, How could I access the input Output Ports without using the FPGA VI. I am using the FPGA Interface Mode.  Thank you.