Update exisiting remote in MDM!!

Hi All,
Is there any way to update the exisitng remote key. I have a scenario in which I need to re-import the existing record in data manager. The record  has already a remote key.I would like to change/update this remote key value, without a different value.
Is there any way to do this?
Thanks in advance for your help.
Regards,
Ravi

Hi Ravi,
So I would like to replace the dummy value of the remote key generated with the external value entered. Is there a workaround for this?
I would say here when you are syndicating records for this particular account groups it should not be syndicated with that remote system. Create a New Remote System Say (Dummy system) in Console. Set this qualifed Range for all such Particular account groups for which you want alphanumeric key. Now after syndicating records out of MDM. when you right click on record and see Edit Key Mapping.
You will find details as below:
RemoteSystem Key
Dummy system 1234
During PI, you will do message mapping where you map to target System Say ABC if it has source structure (file out of MDM through Syndicator) as ABC or Dummy system with target structure ABC. Here you will give condition if either of this Remote system (ABC or Dummy system {should be replaced with ABC}) comes then PI should map it to Target system ABC.
On the other hand,  when you actually re-import this record with alphanumeric key that time select remote system as actual target system say ABC not dummy system. So after this when you will see Edit Key mapping you will have two records for this particular record.
RemoteSystem Key
Dummy system 1234
ABC 123BDF45YU (Alphanumeric) with required target system.
So either you can delete remote system (Dummy system) & remote key (1234) manually using data manager or keep it there which will not effect or independent of remote system ABC and your purpose of that existing remote system(ABC) with Alphanumeric key will be served.
Regards,
Mandeep Saini

Similar Messages

  • Updates for Remote Desktop via App Store Software Update

    Hello, and Happy Thanksgiving. On a computer running Mavericks, I installed Apple Remote Desktop 3.5 from the disk (not from the App Store.) On it's first startup, I was greeted with the message "The Remote Desktop Administrator software must be upgraded on this computer." I downloaded and installed the 3.7 update manually from http://support.apple.com/kb/dl1565. However, I view this as a "Band-Aid", and not a fix. How would I recieve future updates for Remote Desktop from Software Update within the Mac App Store?

    Hi ya.. just to let everyone know Apple UK Senior Tech support are aware of this error message that we are all getting as from today and are on the case....

  • Updating Keynote remotely?

    I'm thinking of using Keynote to run a community bulletin board system on a cable channel. Here's the problem: Is there any way I can add slides to Keynote without taking it down? I'd like to update it remotely and not see the channel do down for the duration of the update. Any ideas?
    Thanks everyone!

    Welcome to the discussions, oddhandle.
    Unfortunately, Keynote reads the entire file for display when it's opened. Even if you change the file information, Keynote doesn't read it so what's being displayed wouldn't change.

  • I updated vietmobile remote files app. this app is broken on iOS 5.1.1 I do not have a backup of the previous version of the (paid) app, how can I roll back to the previous version? Is there a repository of previous versions? Am I boned?

    I updated vietmobile remote files app. this app is broken on iOS 5.1.1 I do not have a backup of the previous version of the (paid) app, how can I roll back to the previous version? Is there a repository of previous versions? Am I boned?
    Seems silly to not allow a rollback from a file repository of previous app versions.

    >All apps are tied to the account that downloaded it, so to be able to sync back the previous version you would need to still have your copy of that version
    I'm not sure I follow, I have not sync'd the ipad with my computer. I just saw an update in the app store and took it.
    I tried to del and install the app from the purchased tab in the app store, that reinstalled v2.1 of the app. This also fails to launch.
    I have made two service requests to the developer, no response at this time.
    Is there somewhere I can download and install Remote Files version 2 file? I can only find the new version 2.1 in the app store.

  • Update openquery remote table with join

    Hi All,
    I have a problem with OPENQUERY update on remote table. I've googled for days, and can't solve the problem.
    Here is the problem:
    Local server MS SQL 2005.
    Remote server: MySQL.
    The linked server is communicating through MySQL ODBC 5.1
    I created the following code for update (tried many other version too, this is the last one):
    update openquery(Remoteserver,'select products_id, products_price, products_last_modified, products_stock from products1')
    set
    products_price=A.products_price,
    products_stock=A.products_stock,
    products_last_modified=getdate()
    FROM
    (select * from vi_products_update) AS A INNER JOIN
    openquery(octopus, 'select products_id from products1')AS B
    ON A.products_id=B.products_id
    When I run the query the columns are updated with the same value, for each record. It looks the value is the first which match the criteria. Each (remote and local) table has as primary key products_id. In this example I used as result set for local a view, but I have the same result if I use a table.
    the products_last_modified column is updated in order, and if I update for e.g. the products_price with a constant that is ok too. The problem should be somewhere with join, but I can' get it where.
    THX for any help
    ab

    Hi
    Did you ever solve this problem
    I have the same issue trying to update many rown in a MySQL table from SQL2005 using the syntax below,
    UPDATE
    openquery(DEV,'select id, `desc` from todLocationGroups')
    SET [desc] = V.Destination_Group FROM
    (select * from VTM_TOD_Rate) as V inner join
    openquery(DEV,'select id, `desc` from todLocationGroups') as K
    ON K.id = V.TOD_LG_ID
    but i get this error
    OLE DB provider "MSDASQL" for linked server "KAYOTE_DEV" returned message "Row cannot be located for updating. Some values may have been changed since it was last read.".
    Msg 7343, Level 16, State 4, Line 1
    The OLE DB provider "MSDASQL" for linked server "KAYOTE_DEV" could not UPDATE table "[MSDASQL]". The rowset was using optimistic concurrency and the value of a column has been changed after the containing row was last fetched or resynchronized.

  • Updating A Remote Database Copy

    I have a SqlExpress DB on my server.  I have a remote copy for security/backup reasons.  Because the DB file(and .bak file) is about 2 Gb, it take a while to copy the whole thing to the remote machine.  I believe there is a way to use the log file to simply update my remote copy ratherr than copying whole files, but I don't know what this process is called to research it.  I have Brust's book on Sql Programming, but I have not found what I am looking for in there.  Can anyone tell me where I should be looking and what this process is called?
    thanks,
    Steve

    You have several options.  You can create your full backup of your target database and restore the backup to the instance of sql express.  If you are restoring an instance of sql 2005 to sql express you can specify WITH STANDBY.  This leaves the database in read only mode, which means it is a viable option for a reporting source.  If you are running different versions than WITH STANDBY is not an option for you and you must restore WITH RECOVERY or WITH NO RECOVERY. 
    Code Snippet
    RESTORE DATABASE databasename
    FROM DISK = 'c:\path.bak'
    WITH STANDBY = 'c:\standby.txt'
    Now you can schedule the restoration of the log backups and/or differential backups.  Since sql express does not ship with sql server agent you can either do this using the version of sql that you are restoring by using a linked server and distributed query or you can create a batch file and schedule this with Task Scheduler using sqlcmd. 
    Code Snippet
    RESTORE LOG databasename
    FROM DISK = 'c:\path.trn
    WITH STANDBY = 'c:\standby.txt'
    This creates a "warm" stand by for you along with a reporting solution.  I utilize this method with our regular backup routine that provides the ability to remove load on our production servers by utilizing the backup as a reporting solution along with populating our data warehouse.  The regularly scheduled backups sit on separate physical drives outside of the production server so the disk I/O of the restoration is is also transparent to the production environment.
    The same process can be implemented using log shipping for sql editions of workgroup or greater.  Log shipping provides a very similar process, but it is configured through a wizard, and in sql 2005 is actually an ssis package.
    I utilize a clr function that returns the most recent t-log file and path to restore  each hour.  If this code interests you let me know and I will post it.

  • To update my remote oracle server through e mail

    hai,
    i want to update my remote oracle server through e mail which should run automatically for every 3 hours(for example)
    both(remote and local) are oracle 8.1.7 running in windows 2000 server
    Please let me know how to go about....
    help me in this context...
    urs
    srini

    Sri
    you can do with some SMTP programming like that one available in VisuaBasic. you can read the mail from an inbox
    from a mail account of an SMTP SERVER. Then you may try to update the remote database.
    Well i have mentioned VB as i heard it long back from my GURUJI that it is possible thru SMTP programming in VB
    using the socket controls etc,.
    Please check it out in some visuabasic forum sites and ask some VB Gurus.
    Thanks
    Prakash
    [email protected]

  • Update ipad remotely

    I just purchased an ipad1 w/Wifi & 3G and was hoping to update it remotely by adding PDF files to it from a different location 500 miles away.  Anyone have any suggestions. I'd like it show the PDF files in folders on the Ipad and upload additional PDF files to the folders. 
    Thank you,
    Arlene

    If you have MobileMe you could do so, if not try downloading DropBox on your computer and download the DropBox app for your iPad. Or you could also use Google Docs!

  • Software Updates for Remote PXI System/DAQ-mx Self Test

    1) In MAX, I'm attempting to run the Labview Realtime Software Installation Wizard. When I select the software for install, I get an error "Cannot Process Install because other Dependencies are required: Labview RT 7.1.1". What should I do to correct the problem? I'm trying to update both DAQMx and Traditional DAQ from 7.2 to 7.3. The wizard actually indicates that the remote system only has 7.2, and that it sees that 7.3 is available.
    2) Also in MAX in the Remote System Tree, I get an error when trying to perform a self test on my PXI-6025 card, or when I attempt to reset it. The error code is 88705. I noticed on another post that there might be the need to perform a repair of the installation. This was done for both DAQMx and Tranditional DAQ, neither of which fixed the problem.
    3) In MAX I have used the Tools>>Traditional NI-DAQ Configuration>>Remote DAQ Configuration to configure my PXI-6025 DAQ channels, accessory, device #, etc. I then proceed to run a Analog Input VI on the remote system by correctly targeting it and selecting i.e. channel 0. No errors occur. However when I try and select "Browse" under the channel control, the "Select Names" window pops up empty. I would assume that this window would pop up with the DAQ channel names assigned during the channel configuration of the PX-6025??? Whats missing here?
    Thanks
    Pete.

    Hi Pete,
    I'm assuming you are using LabVIEW RT 7.1, since that is a requirement for using DAQmx. Here are my responses for your three issues:
    1) You are correct in assuming you can upgrade the DAQ drivers in the manner you outlined, normally that works fine. However, as the following KnowledgeBase points out, the list of dependencies vary for different installs.
    http://digital.ni.com/public.nsf/websearch/F5D80FBE806B4B9D86256F0F005630CF?OpenDocument
    Do you have LabVIEW RT 7.1.1 installed, which appears to be the required dependency? If not, you may download this from ni.com>>Drivers and Updates
    http://digital.ni.com/softlib.nsf/MainPage?ReadForm&node=132010_US
    If so, but the problem persists, please post all versions of your software so I can determine where the incompatibility lies.
    2) After we take care of upgrading the DAQ drivers, let's see if the 88705 error goes away, it might take care of it.
    3) Again, all the steps you described are correct. It might be that all these problems are related and due to a bad install of NI-DAQ.
    When a number of software issues like this arise all at once, it might be best to just re-format the controller and perform a fresh install of everything. Often times that will correct the erroneous behavior.
    Regards,
    Jeff M.
    Applications Engineering
    National Instruments

  • 10.4.11 update and remote window sizing

    Very odd problem has popped up this evening:
    I upgraded a user's G5 iMac from 10.4.10 to 10.4.11, everything seems fine except for using remote control software such as ARD 3.2.1 and Timbuktu 8.7.
    When I first attempted to log into the machine after the update using Timbuktu, the machine was responding extremely slow and I figured out why. The window was not sizing correctly. It was off by about 3 horizontal pixel lines. So whenever you moved the cursor, it had to redraw the screen over and over as it attempted to resize inside the window. I turned off fit to window and it did the same thing. Basically making the machine unusable in a remote setting. I updated to Timbuktu 8.7 from 8.6, but this did not fix the problem.
    So I used the ARD machine to log in remotely. Oddly, I had the exact same problem. The response time was much better and I could do a little more, but still it was sluggish as it shifted the desktop back and forth as it attempted to redraw the screen any time I shifted the mouse up or down.
    Has anyone else had any problems with using ARD and the 10.4.11 update? I am using ARD Admin 3.2 and client 3.2.1
    Thanks,
    G

    I did try one thing: I logged off and back in as the "remote" user - the user account I had setup when I installed ARD on all the machines. When I do that, it works fine. Log back in as the main user, screen does the wacky scaling thing. Are there any particular prefs or files that control this that reside in the user's folder?

  • Updating a remote web application

              Hi all.
              We are developing a web application in team.
              We develop on Windows, but the web application runs under unix/linux.
              The unix machine has an Admin server and a Managed server (same machine).
              The web application we are developing is already deployed to the target server
              and (of course) we have a directory on the Admin Server where all the components
              are stored. The web application is in exploded format (no war - no hidden peace
              message here :) ).
              We'd like to run - locally on our windows machine - the command line "java ...
              weblogic.deploy ..." to update the Web Application as a result of a build script.
              We found that the "source" paramenter confuses us: shall we give the "remote"
              path (i.e. /var/wlhome/applications/<app name>") as given to WL Admin when we
              CONFIGURED a new web application from the console or should we give a LOCAL direcotry
              name? (i.e. D:\DEVEL\<app name>)
              Giving a remote (i.e. on the unix machine) path we have the following:
              D:\DEVEL\groc>java -classpath lib/weblogic.jar weblogic.deploy -host <managed
              host machine> -port <managed host port> update <password> <appname> /var/wlhome/applications/groc
              Bad URL or file name: /var/wlhome/applications/groc
              Giving a local (i.e. on the windows machine) path:
              D:\DEVEL\groc>java -classpath lib/weblogic.jar weblogic.deploy -host <managed
              host machine> -port <managed host port> update <admin system password> groc /var/wlhome/applications/groc
              Weblogic says: "Done updating groc with ./config/svildomain/.wlstaging/groc
              But when reloading the web application, changes (done to the LOCAL files) are
              not reflected in the output.
              Am I missing something? (Should the local weblogic.jar be the same service pack
              level as the ManagedServer?)
              Thanks in advance
              ALX
              

    Hi,
    Azure RemoteApp is used for deploying the front end of your application, so in the case of a web app you would publish IE/Firefox/Chrome and have the backend components (website, Azure SQL Database, services, etc.) running in Azure or on-premises connected
    via VNet.
    -TP

  • Template Update on Remote Server - How To?

    When I make a change to my template, I get the popup window
    that allows me to update the entire site or just files connected to
    a template. But, that just updates files on my local computer.
    I'm accessing the template file on the remote server and have
    that open on my desktop. But, the template update just applies to
    my local files.
    So, how do I get the template to update to all related files
    on my remote server?

    That would be correct. Templates have no function on the
    server. Never
    have.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Ken Binney" <[email protected]> wrote
    in message
    news:e5id72$gv1$[email protected]..
    >I don't use templates, but I am under the impression that
    your template is
    >NOT uploaded to server, but remains on your local
    machine.
    >
    > When you update your child pages from the revised
    template, you then
    > upload only the updated child pages to the server.
    >
    >
    >
    > "feezle" <[email protected]> wrote in
    message
    > news:e5iamm$e5e$[email protected]..
    >> When I make a change to my template, I get the popup
    window that allows
    >> me to
    >> update the entire site or just files connected to a
    template. But, that
    >> just
    >> updates files on my local computer.
    >>
    >> I'm accessing the template file on the remote server
    and have that open
    >> on my
    >> desktop. But, the template update just applies to my
    local files.
    >>
    >> So, how do I get the template to update to all
    related files on my remote
    >> server?
    >>
    >
    >

  • Update Mac remote desk top to 8.0.12

    i'm new to this I have remote desk top installed on my macbook and when I click on the icon i get the " what's new in 8.0.01" my question is how do i get the new release. 

    Hi,
    You can follow below link and update to latest version 8.0.12.
    https://itunes.apple.com/in/app/microsoft-remote-desktop/id715768417?mt=12
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Problems updateing a record on mdm

    Hi All,
    I am developing a solution in Web Dynpro to update the text of a product in mdm  5 sp6 using mdm api.
    I have no compilation errors neither runtime errors.
    I run the command to modify a record but nothing is changing in mdm.
    Can you helpme with it ? i have urgence in this solution.
    here is my code:
    Record rec = materialDao.searchMaterial(matSearchDTO);
    ConnectionAccessor conn = control.getConnection();
    //Fazer checkout do registro
    try {
         JoinCheckoutRecordsCommand outCmd = new JoinCheckoutRecordsCommand(conn);
         outCmd.setSession(control.getUserSession());
         outCmd.setTableId(tableIdTProdutos);
         outCmd.addRecordId(rec.getId());
         outCmd.execute();
    } catch (Exception e) {
         //nao fazer nada pois o registro ja esta com checkout
    //ALTERAR OS DADOS
    if (multiTextoCurto != null)
         rec.setFieldValue(fieldIdTextoCurto, multiTextoCurto);
    if (multiTextoLongo != null)
         rec.setFieldValue(fieldIdTextoLongo, multiTextoLongo);
    if (mdmUnidadeBasica != null)
         rec.setFieldValue(fieldIdUnidadeBasica, mdmUnidadeBasica);
    if (mdmUnidadePeso != null)
         rec.setFieldValue(fieldIdUnidadePeso, mdmUnidadePeso);
    if (mdmUnidadeVolume != null)
         rec.setFieldValue(fieldIdUnidadeVolume, mdmUnidadeVolume);
    if (mdmPesoBruto != null)
         rec.setFieldValue(fieldIdPesoBruto, mdmPesoBruto);
    if (mdmPesoLiquido != null)
         rec.setFieldValue(fieldIdPesoLiquido, mdmPesoLiquido);
    if (mdmVolume != null)
         rec.setFieldValue(fieldIdVolume, mdmVolume);
    if (mdmDadoComplementario != null)
         rec.setFieldValue(fieldIdDadoCoplementario, mdmDadoComplementario);
    //Modificar o registro
    ModifyRecordCommand cmd = new ModifyRecordCommand(conn);
    cmd.setRecord(rec);
    cmd.setSession(control.getUserSession());
    cmd.setModifyAnyway(true);
    cmd.execute();

    Diego, if this is the actual code, you have suppressed the exceptions by keeping the catch block empty.
    Also keep your modify command statement in try / catch.
    I would personaly test it by adding following steps:
    Print the connection parameter, make sure connection is successful
    Print the old values or one of the old values and the new value of a field to make sure you are sending the proper values.
    Put a systemout/reportsuccess after execute and / or to make sure execute is done properly.
    If everything is fine, just verify the update stamp of the record to verify if the record is getting updated or not. If the update stamp is not updated, that means the command never got executed properly.
    Regards,
    Nitin

  • SAP PRD(Production):  update prd remote system?

    Hello All
    is here is anyone who can explain me how to update the mobile prd if the error message says?
    Remote system contain different prd that you are providing.
    and the popup message will show the prd it should be
    i am really hoping that someone will help me.
    Many thanks in advance.
    Edited by: HarjinderS on May 12, 2011 5:48 PM

    Hi Chandhra,
    Please follow below approach
    Node 1: ASCS + CI
    Node 2: DB + ERS + APP
    ASCS also holds enqueue process hence ERS is not needed on Node 1.
    Following file systems should be shared across both the nodes
    /usr/sap/trans
    /sapmnt/<SID>
    Following instance should be installed with virtual host
    DB instance
    ASCS instance
    Following instance should be installed with physical host
    CI instance
    APP server
    ERS
    When node1 fails
    ASCS will move to node 2. Node 2 will have DB+ ASCS + APP . Rest other instance should be down
    When Node 2 fails
    DB will move to Node1. Node 1 will have DB+ASCS+ CI. Rest other instances should be down.
    Refer SAP installation guide and relevant notes for planning the installation.
    Hope this helps.
    Regards,
    Deepak Kori

Maybe you are looking for