Problem about execute import button

This is mdm 5.5 sp4.
First, i did field mapping and value mapping in mdm import manager. Then i clicked 'execute import' button. The importing was successful.
After that, I added new fields in ‘destination fields’ of ‘field mapping’ panel via ‘add’ button, and finished new filed mapping and value mapping. Then I activated the ‘import status’ tab, but found the ‘execute import’ was gray. I couldn’t click the button to import new fields and values. What’s wrong? What should I do?
Thank u in advance.

hi,
if the execute import  was gray:
these may be the causes.
1. check the field mapping, and value mapping
2. Redo the Record mathcing step.
3. when you click on the import status tab, if execure import icon is grey, in import status, you will find the remarks( like, partcicualr field is not mapped -- etc.)
do the process again, you can able to see execute import icon.
hope this may help you,
Regards,
Srinivas

Similar Messages

  • Execute import button disabled

    Hi,
    I am trying import some xml file into siple table through import manager. I did the maping of the columns, I chose the column for matching. Now I am in the Import Status tab, I can see "Choose import action" under Action (I dont have the english version, so the text in english could be a little bit different) but the "Execute import" button is still disabled. Can anybody help me solve this problem?
    Thanks
    Ivo

    Hi Lvo,
    Did you select impot action [Skip, Create, Update (Null fields only), Update (All Mapped fields), Replace] from the "Match record" tab?
    Hope this would be the problem. Please check
    Thanks,
    Arun prabhu S

  • EXECUTE IMPORT button is not activated.

    Hi Experts,
    I am importing some records to MDM using MDM-Import Manager ...
    i have done the Field Mapping then Value Mapping and Match Record Strategy...
    here in the Status i even see that 20 out of 20 Fields are Mapped and 20 out of 20 Values are Mapped.
    but the EXECUTE IMPORT button is not activated ..... Please help .. ....
    i am using Execl file for doing it .. as a Source ....
    regards,
    Jay Sawant.

    Hi Jay,
    Just try removing the matching field or field combinations as you have used and Select them again.
    Sometime resetting the matching field tab the import action is enabled.
    Also check if you have selected the correct Import action like Create for new records and Update or Replace for existing records.
    Check on these two areas matching field and import action.
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • Problem about execute commond on platform?

    i try to execute commond on window platform (the same problem as on solaris) via
    exec(String commond) method of Runtime, which return the type of Process; but fail as error message 1):
    how can i execute the commond (ex:dir,date,...) and let it return its result as running commond in commond prompt line (like dos mode,etc.)
    thanks in advice,
    1)
    ava.io.IOException: CreateProcess: dir error=2
         at java.lang.Win32Process.create(Native Method)
         at java.lang.Win32Process.<init>(Win32Process.java:66)
         at java.lang.Runtime.execInternal(Native Method)
         at java.lang.Runtime.exec(Runtime.java:551)
         at java.lang.Runtime.exec(Runtime.java:418)java.io.IOException: CreateProcess: dir error=2
         at java.lang.Runtime.exec(Runtime.java:361)
         at java.lang.Runtime.exec(Runtime.java:325)
         at RunCommond.RunCmd.execCmd(RunCmd.java:21)
         at RunCommond.RunCmd.main(RunCmd.java:50)

    The commands dir and date are internal commands in Windows. You can't run the "dir program" -- it's just a command in the shell program. You have to start the shell and tell it to execute its dir command:
    cmd /c dir (on Win NT/2000/XP)
    command /c dir (on Windows 95/98/Me)

  • Problem about execute mapping in plsql!

    hello forum:
    i've builded a mapping within owb92,and i want it can be called
    through a schedule program(from third party),i hope the way i call it
    like a command line,so the schedule program can deal with it or the
    way of call the mapping can be wrapped in a procedure.
    any suggestion appreciated.

    Edwin's suggestion should work, where you basically call SQL from that scheduler. You can also call the mapping.main if that is easier. That looks like this (mapping is called cities_cd_map in design):
    declare
    out1 varchar2(100);
    begin
    cities_cd_map.main( p_status => out1
    , P_MAX_NO_OF_ERRORS => 50
    , P_COMMIT_FREQUENCY => 1000
    , P_OPERATING_MODE => 'SET_BASED'
    , P_BULK_SIZE => 50
    , P_AUDIT_LEVEL => 'STATISTICS'
    , P_PURGE_GROUP => 'WB'
    , DATE_IN => SYSDATE
    , USER_IN => 'Me'
    dbms_output.put_line('Result = '||out1);
    end;
    You can also use the API in OWB to run the mapping (and process flow etc), using something like this (mapping name in this case is MYMAP in design):
    declare
    out1 number;
    begin
    out1 := wb_rt_api_exec.run_task( P_LOCATION_NAME => 'TGT_LOCATION'
    , P_TASK_TYPE => 'PLSQLMAP'
    , P_TASK_NAME => 'MYMAP'
    , P_OEM_FRIENDLY => 1 -- Anything but 0 will get a good EM status
    dbms_output.put_line('Result = '||out1);
    end;
    Hope this helps,
    JP

  • Problem about Executing Unix command in java

    Hi All,
    Does someone know why the following codes didn't run correctly?
    String cmd = "tar cvf 123.tar *.*";
    try
    Runtime rt = Runtime.getRuntime();
    rt.exec(cmd);
    catch (Exception ex)
    ex.printStackTrace();
    Thanks.

    Because "*" is interpreted by the shell--bash, zsh, ksh, sh, csh, tcsh...
    The shell turns *.java into a.java b.java. The tar program never sees the *.
    You don't typcially have these shells when you invoke a command like that, so the tar program sees the * you pass and takes is as a file name. It's like adding quotes or a backslash in a terminal window:$ tar cvf foo.tar '*.java' So either use the File and FileFilter classes to get a list of the files you want to pass and send that to Runtime.exec, or Runtime.exec a shell and pass tar as its command.
    For bash, I think what you'd pass to Runtime.exec would be something like sh -c tar cvf foo.tar *.java but check the man page for your shell to find out the details of how to invoke it in non-interactive mode and pass it a command.

  • Having a problem with "open" and "import" buttons!

    Hello all,
    I am having some trouble with a basic function in Logic. When I go to "file" and select "import," the window of options appears. However, when I select a file and click the "import" button, literally nothing happens. I have had a similar problem, when I go to the "file" menu and select "open." A window will appear for me to browse to the logic file I want to open, but when I click "open," nothing happens. However, if I manually go to the file and double-click it, then the file will open. The drop-down is set to "All logic document types," though I have tried "all Logic songs" with the same problem. Please help!
    Best,
    Jon

    you know whats funny, this project has to do with arrays of objects and not inheritance. We learned inheritance last week but the lab we are doing which is this, is for arrays of objects. sorry for the confusion lol. so you can completely ignore this, it actually has it in big bold letters at the top of the web page for the lab.

  • The Problem is about Standard Back Button Function in Report Program

    The Problem is about Standard Back Button Function in the Report Program.
           In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
           My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program.  Thanks .

    This problem is solution.I call screen using T-code and submit report In PAI,at last return to PAI.That is OK.

  • The Problem is about Standard Back Button Function in the Report Program.

    The Problem is about Standard Back Button Function in the Report Program.
    In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
    My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program. Thanks .

    Hi,
    You can define your own PF-STATUS and in that assign the function code for BACK button anything except 'BACK'.
    The code would somewhat look like this:
    SET PF-STATUS 'TEST'.
    write : itab-col1,
               itab-col2.
    in the PF-STATUS 'TEST', assign the function code to BACK button as 'BCK'.
    Now in your program you can use the event AT USER-COMMAND.
    In this you can handle the functionality of BACK button.
    Hope this helps.
    Regards,
    Himanshu

  • Home Sharing Problem: Import Button & "Show" Dropdown menu are missing?

    Hi Everyone,
    My wife and I are both running iTunes on Macbook Pros and we are both logged into eachother's iTunes libraries through Home Sharing accounts. However, the Import button on the bottom has disappeared, so has the "Show" dropdown menu that is typically to the left of the Import button on the bottom of the screen when you are in the other person's Music Library. The Show dropdown memu typically displays the options: All and Not in Library. We can play and listen to each other's music, however we can't Import songs. Can anyone help me troubleshoot this problem??
    Thanks,
    Patrick

    To clarify as I have this problem repeatedly here is the description and the cure.
    Sharing is enabled in the sharing tab.  Other computers can see this computers library but cannot import.  The icon for the home sharing doesn't show the "house" - it just shows some musical notes.
    This means that home sharing is not enabled.  JUST SHARING.
    In Itunes 11 use: File/Menu/Home Sharing/Turn on Home sharing.
    But you are not done.
    When home sharing shows up now in the left panel - click it. The right panel will present a sign on for your apple ID.  Sign on and enable home sharing.
    Then you will be able to import form the target computer again.
    It gets disabled with OS upgrades and sometimes with iTunes updates.

  • Hello! Why at me in new мозиле, the old kind has remained! I about the top button Firefox! As I do not establish, all turns out in an old kind! Please help to solve a problem! Thankful in advance!

    Hello! Why at me in new мозиле, the old kind has remained! I about the top button Firefox! As I do not establish, all turns out in an old kind! Please help to solve a problem! Thankful in advance!

    Hello! Why at me in new мозиле, the old kind has remained! I about the top button Firefox! As I do not establish, all turns out in an old kind! Please help to solve a problem! Thankful in advance!

  • While trying to restore os x and erase content, some problem about voice software came up and the computer asked me to restart and try again by clicking restart button. When I did this, the machine went to a gray start up screen and will not progress.

    While trying to restore os x and erase content on my MacBook pro, some problem about voice software came up and the computer asked me to restart and try again by clicking restart button. When I did this, the machine went to a gray start up screen with an apple and will not progress. I've waited more than 30 minutes and tried restarting again by holding the power button. Also, restore cd 1 will not eject so the computer will no longer move past the gray screen with spinning circle. Restore CDs had never beeused and were still in packaging in the original box. Ran hardware test just to check, and it came back as normal. Now what? I live nowhere near a genius bar :(

    computer asked me to restart and try again by clicking restart button.
    That's called a kernel panic...
    Since the install disc won't eject, try starting up while holding down the C key. If the Mac won't boot while holding down the C key, try ejecting disc by either holding down the mouse while starting up or holding down the Eject key while starting up.
    Try booting from your install disc so you can run Disk Utility in case the startup disk needs repairing.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your startup disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. Make sure there is always 15% free space.
    What is a kernel panic
    Mac OS X Kernel Panic FAQ
    Resolving Kernel Panics

  • İ have just got ios 5.1 for ipad but i have really important problems about charge,how could i get ios 5.0.1 without loosing my items,documents,i can't sync because my computer has problems also,thanks

    İ have just got ios 5.1 for ipad but i have really important problems about charge,how could i get ios 5.0.1 without loosing my items,documents,i can't sync because my computer has problems also,thanks

    Settings>general>reset>reset network settings
    Settings>general>reset>reset all setting

  • I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting, but the password from the old computer in when waking the computer from sleep.

    I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting the new computer, but the password from the old computer in when waking the computer from sleep. I want to use my iCloud password on both computers consistently. How can I fix this?

    The only other place to change a password for the computer login is in Users & Groups preferences. But I don't really know enough here to fix your problem. You can try fixing the keychain:
    iCloud- Frequently asked questions about iCloud Keychain
    Tutorial: Resolving Keychain Issues
    If you can't access your keychain, or forget your password If you can't get into your keychain file because you've forgotten your password or the keychain file appears to be corrupt, there are a couple of options.
    First, if you've forgotten your password, you can use the "Keychain First Aid" utility to make the keychain password the same as the login password. This can be accomplished via the following process:
      1. Open Keychain Access (located in Applications/Utilities)
      2. Go to the "Keychain Access" menu and select "Preferences"
      3. Click the "First Aid" tab
      4. Make sure the "Synchronize login keychain password" box is checked
      5. Close the Preferences window
      6. Go to the "Keychain Access" menu and select "Keychain First Aid"
      7. Enter your username and password
      8. Click the "Repair" button
    The second option is to completely delete your keychain then recreate it. This routine is useful if your keychain appears to be corrupt or otherwise inaccessible. This can be accomplished as follows:
      1. Launch Keychain Access (located in Applications/Utilities)
      2. Click "Show Keychains" in the lower-left corner of the window.
      3. Select the problematic keychain from the left-hand pane.
      4. Navigate to the "File" menu and select "Delete Keychain '(name of keychain)'"
      5. Check all options for deletion and press "OK"
      6. Create a new keychain by going to the "File" menu, then "New" and selecting
          "New Keychain"
      7. You can now make this keychain your default if you desire by selecting it, then
          going to the "File" menu and selecting "Make '(name of keychain)' Default"
    Login as root and perform repair In some cases, problems with keychains can only be resolved when logged in as the root user.
    First, you want to enable the root user:
      1. OS X Mountain Lion: Enable and disable the root user
      2. OS X Lion: Enable and disable the root user
      3. Mac OS X 10.6: Enabling the root user
      4. Enabling and using the "root" user in Mac OS X
    After enabling the root user, and logging in under this account, again open Keychain Access. First attempt repairs using Keychain First Aid, and failing that, delete then recreate the keychain as described above while logged in as root.
    Persistently asked for stored passwords If you are persistently asked for passwords in various applications that you have specified should be remembered in a keychain, your "login" keychain may not be active for one reason or another.
    Navigate to ~/Library/Keychains/ (this is the Library folder inside your user's home folder). Find the file named "login.keychain" and double-click it.
    Failing that, select the "login" keychain within the Keychain Access application and make sure it is the default keychain by going to the "File" menu and selecting "Make 'Login' Default"
    Turn off Keychain synchronization in applications having problems If specific applications are experiencing issues when accessing password-protected material, the Keychain may be to blame.
    The above comes from an article published on MacFixit.com.

  • Problem in executing JFCunit test case

    Hi all,
    I have problem in executing a simple test case that checks for input blank fields entered.
    Below is the code for the test class that i am trying to run, but i am unable to execute it. Please can anyone try to resolve this.
    package unittest.com.erp;
    import junit.extensions.TestSetup;
    import junit.extensions.jfcunit.*;
    import junit.extensions.jfcunit.finder.*;
    import junit.extensions.jfcunit.eventdata.*;
    import junit.framework.Test;
    import junit.framework.TestSuite;
    import junit.textui.TestRunner;
    import com.erp.client.swing.ClientLoginDialog;
    import com.erp.client.swing.workspace.ClientWorkspaceFrame;
    import com.erp.client.swing.workspace.data.LoginResults;
    import javax.swing.*;
    public class LoginScreenTest
        extends JFCTestCase {
      private ClientLoginDialog loginScreen = null;
      private JButton login = null;
      private JButton cancel = null;
      private JTextField username = null;
      private JTextField password = null;
      private JFCTestHelper helper = null;
      LoginResults loginSuccess = null;
      ClientWorkspaceFrame workspaceFrame = null;
      public LoginScreenTest() {
      public LoginScreenTest(String name) {
        super(name);
      public static Test suite() {
        return new StartApp(new TestSuite(LoginScreenTest.class));
      private static class StartApp
          extends TestSetup {
         * Construct the test decorator, which starts the application     *
         * @param test
         *          Test case.
        public StartApp(final Test test) {
          super(test);
         * Start the LoginScreenTestapplication.
        public void setUp() {
          new Thread(new Runnable() {
            public void run() {
              try {
                new LoginScreenTest().setUp();
              } catch (Exception e) {
          }).start();
          try {
            Thread.currentThread().sleep(10000);
          } catch (InterruptedException ex) {
         * Tear down the LoginScreenTest application.
        public void tearDown() {
      protected void setUp()
          throws Exception {
        super.setUp(); // Choose the text Helper
        setHelper(new JFCTestHelper()); // Uses the AWT Event Queue.
        // setHelper( new RobotTestHelper( ) ); // Uses the OS Event Queue.
        ClientWorkspaceFrame workspaceFrame = ClientWorkspaceFrame.getHandle();
        // loginScreen = new ClientLoginDialog( "LoginScreenTest: " + getName());
        loginSuccess = ClientLoginDialog.login();
        loginScreen = ClientLoginDialog.login(new JFrame(), true);
        if (loginSuccess != null && loginSuccess.isSuccess()) {
          workspaceFrame.initFrame();
          workspaceFrame.loggedInUser = loginSuccess.getName();
          workspaceFrame.loggedInFullUserName = loginSuccess.getFullLoginUserName();
          workspaceFrame.loggedInUserPassword = loginSuccess.getPassword();
          workspaceFrame.setVisible(true);
          workspaceFrame.validate();
            flushAWT();
      protected void tearDown()
          throws Exception {
        login = null;
        cancel = null;
        username = null;
        password = null;
        loginScreen = null;
        flushAWT();
        // getHelper.cleanUp( this );
        super.tearDown();
      public void testInitialState() {
        NamedComponentFinder finder = new NamedComponentFinder(JButton.class, "Cancel");
        finder.setName("Cancel");
        JButton exitButton = (JButton) finder.find(loginScreen, 0);
        assertNotNull("Could not find the Exit button", exitButton);
        NamedComponentFinder finder1 = new NamedComponentFinder(JButton.class, "Login");
        finder1.setName("Login");
        JButton enterButton = (JButton) finder1.find(loginScreen, 0);
        assertNotNull("Could not find the Enter button", enterButton);
        getHelper().enterClickAndLeave(new MouseEventData(this, enterButton));
        assertEquals("", workspaceFrame.loggedInUser);
        assertEquals("", workspaceFrame.loggedInUserPassword);
      public static void main(final String[] args) {
        TestRunner.run(LoginScreenTest.suite());
    Thanks & Regards,
    VishalMessage was edited by:
    vishal_vj
    Message was edited by:
    vishal_vj
    Message was edited by:
    vishal_vj
    Message was edited by:
    vishal_vj

    hi All,
    can any one guide me how to run the test casese in JFCunit ? as when i tried to run thru command prompt its not recognising the main class at all.
    Now i m trying with eclipse problem here is that it is showing error to this line of code
    DialogFinder dFinder = new DialogFinder(loginScreen);
    error is constructor is undefined?
    So looking for some solution.
    with regards
    kin

Maybe you are looking for