What's wrong? 'Original document is in OLTP and therefore cannot be ...'

Dear Superman,
When I opened a service order and edited it, I got this message: 'Original document is in OLTP and therefore cannot be changed in CRM.'
The system status includes 'Document from OLTP'.
If I want to edit it, what should I do?
Edited by: Jie Chen on May 19, 2010 4:59 PM

Hi ,
The Scenario for replication of the documents is set as 'X' or else you can check note 541113 and by standard you cannot edit a document whose source is r/3.
But there is an workaround available which is as below:
In order to make it editable, you need to change the logical system of the Document in CRMD_ORDERADM_H, CRMD_ORDERADM_I and CRMD_ORDER_INDEX  tables, same as CRM system in debugging mode.
Regards
Sidd

Similar Messages

  • Why doesn't the original document I'm dragging and dropping from one folder to another move?

    Why doesn't the original document I'm dragging and dropping from one folder to another move?
    What's happening is the computer is creating a duplicte of the document and placing it in the new location with a new creation date.  The original document I wanted to drag and drop into a new location remains where it started as the "original" document and the new copy has this little arrow protruding up from the lower left of its icon.
    At first I thought it was an alias, but it's a copy of the document I thought I was dragging and dropping.
    What gives here?
    Steve

    That arrow indicates it is a linik to the original, though. This happens if you wish to drag files, for which you do not have permissions to do this operation, e.g. from Library or System folder. I am pretty sure you do not accomplish this operation from/to folders like Desktop or Documents; if so, there is a problem with your system.

  • I have an iPhone 6 and an iPad air and each time I try to download the IOS 8.1 update I get the message "software update failed. An error occurred downloading iOS 8." What is wrong? This problem is ridiculous and frankly annoying

    I have an iPhone 6 and an iPad air and each time I try to download the IOS 8.1 update I get the message "software update failed. An error occurred downloading iOS 8." What is wrong? This problem is ridiculous and frankly annoying. I have a brand new iphone 6 and a 8 month old iPad Air what is the problem

    Hi Wingzfan13,
    Thanks for the question. Based on what you stated, it seems like you can't update the iOS device. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    If you can't update or restore your iPhone, iPad, or iPod touch
    Resolve iOS update and restore errors in iTunes
    Thanks for using Apple Support Communities.
    Cheers,
    Mario

  • What is wrong? The "show my windows and tabs from last time" has not been working these past two or three days. It was fine before. Ive changed nothing except the last update from you. Thank you.

    What is wrong? The "show my windows and tabs from last time" has not been working these past two or three days. It was fine before. Ive changed nothing except the last update from you. Thank you.

    Make sure that you do not use "Clear Recent History" to clear the "Browsing History" when Firefox is closed because that prevails and prevents Firefox from opening tabs from the previous session.
    * https://support.mozilla.com/kb/Clear+Recent+History
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Session_Restore
    * http://kb.mozillazine.org/sessionstore.js
    If you use cleanup software like CCleaner then make sure that Session is unchecked in the settings for the Firefox application.

  • I changed my apple id from the one I used to originally sign up to iCloud and now cannot login to iCloud - do I need to change it back to access iCloud?

    I changed my apple id from the one I used to originally sign up to iCloud and now cannot login to iCloud - do I need to change it back to the original apple id in order to access iCloud?

    Gosh, this is full of great information and I need something a little bit deeper - and because I'm not a techy - can I explain...Apple ID changed a year ago from a work email to a personal email.  No longer have access to original email..... New email and Apple ID worked flawlessly until today - every 3 seconds Sign in to iCloud pops up.. with the old work email.  I enter the password - which is the same... and it says invalid. 
    I tried to delete the icloud, but you need the password and it says "find my phone" is on... i turn it off,  and it's the old email... and the password again doesn't work, of course. 
    I am left stratching my head... I sync my phone and my correct, up to date email is in the Apple ID sections...
    What am I doing wrong.. talk slow to me please, lol.

  • When I try to install my OS X Mountain Lion it says that my HD is locked and therefore cannot be installed. What can I do??

    When I try to install my OS X Mountain Lion it says that my HD is locked and therefore cannot be installed. What can I do??

    Welcome to Apple Communities
    http://support.apple.com/kb/DL1524

  • Wrong artwork is loaded on list and I cannot get rid of it

    For some reason some of the artwork that has loaded on to my itunes is incorredt. Incorrect artest, album, and artwork. Especially problematic with any "greatest hits" albums. I cannot delete it, remove it, replace it or anything. Any suggestions? Thanks, Glenda

    *some reason some of the artwork that has loaded on to my itunes is incorredt. ....... I cannot delete it, remove it, replace it or anything*
    What have you done so far to try and remove the artwork, have you tried any of these methods?
    Right click (control+click if using a one button mouse) on the file you want to remove the artwork from, choose Get Info then the Artwork tab, click on the image and press the delete button then OK. To remove from multiple items, highlight the adjacent tracks in your selection (click on the first in the list, hold down the shift key and click on the last), right click and choose Get Info, choose yes when you are asked if you want to edit multiple items, tick the box beside the small empty artwork window about halfway down on the right. (if the songs aren't adjacent to each other but spread through out the playlist or library hold down the Command (⌘) key and click on each of the songs you want to highlight).

  • Explain what is view points, document points, artView points and page points?

    Hello All,
    Could you please explain the terms like View points, Document points, ArtView points, page points?

    Hi Patterson,
    Thanks for your answer. but still, I think, I am in confusion..
    AIPageTiling page;
    ASErr error = sAIDocumentView->GetPageTiling(&page);
    if (!error)
    pageHeight = page.paperSize.v;
    pageWidth = page.paperSize.h;
    Here page.paperSize is size of paper, in points (given in docs).., so I think its page points.
    Now, I want to transform/translate an art (which is created using DuplicateArt() ) with some random x and y values.
    So, I used
    ASReal randomXTranslate = sAIMath->AIRealMul( sAIRandom->FloatRnd() , (AIReal) pageWidth );
    ASReal randomYTranslate = sAIMath->AIRealMul( sAIRandom->FloatRnd() , (AIReal) pageHeight );
    sAIMath->AIRealMatrixSetIdentity(&newArtTM);
    sAIMath->AIRealMatrixSetScale(&newArtTM, randomXTranslate, randomYTranslate);
    sAITransfromArt->TransformArt(newArt, &newArtTM, 1, kTransformObjects);
    but TransformArt( ) function should take x and y values in document points. Clearly what Im giving randomXTranslate and randomYTranslate are wrong(bcoz these are in page points)
    So, how can I convert page points into docs poins??

  • What is wrong with safari 5.0.6 and 10.5.8 - SLOW!!!

    Hi guys
    First post and that is because I have not had a problem with my Macbook Pro in 2 years since getting it.
    I have been reading here and there but my safari 5.0.6 is getting sluggish. It take longer for webpages to load up and any kind of video content such as YouTube etc is jerking. It doesn't load as quick and stops and starts every 8 secs or so.
    Facebook takes longer to load and even basic sites like BBC.
    I have tried the whole reset safari and cleared the cache plus changing DNS etc.
    Also created a new id and still just as slow.
    I am coming to the conclusion that there is something wrong at the Apple HQ and they need to release some patches to get things working again!
    Any comments or ideas welcome.
    Cheers!

    If Safari is getting very slow:
    (Presumably you regularly empty your Safari cache by deleting the following file:
    Home/Library/Caches/com.apple.Safari/cache.db
    and clear your History)
    Adding Open DNS codes to your Network Preferences, should give good results in terms of speed-up as well as added security, (including anti-phishing and redirects) (Full information about Open DNS is here: http://www.opendns.com/home/nobloat ) and further independent information can be read here:
    http://reviews.cnet.com/8301-13727_7-57338784-263/free-dnscrypt-tool-enhances-ma c-web-security/?tag=mncol;txt
    and here:
    http://www.macworld.com/article/1146064/troubleshootdns.html?t=234
    If you are using a single computer: Open System Preferences/Network. Double click on your connection type, or select it in the drop-down menu, and in the box marked 'DNS Servers' add the following two numbers:
    208.67.222.222
    208.67.220.220
    (You can also enter them if you click on Advanced and then DNS)
    Sometimes reversing the order of the DNS numbers can be beneficial in cases where there is a long delay before web pages start to load, and then suddenly load at normal speed:
    http://support.apple.com/kb/TS2296
    If your computer is part of a network:please refer to this page: http://www.opendns.com/start/best_practices/#your_network and follow the advice given.
    If you use a Router, make sure it has the latest firmware installed.
    One reason for a slowness in page loading may be the 'DNS Pre-fetching' feature of Safari 5.x as is described here:
    http://support.apple.com/kb/TS3408?viewlocale=en_US
    You can cancel DNS pre-fetching by going to Terminal and typing:
    defaults write com.apple.safari WebKitDNSPrefetchingEnabled -boolean false
    You have to restart Safari for it to take effect.
    If Safari seems to hang for ages:
    If you have a lot of tabs open and/or a lot of pages running Flash, Safari can sometimes 'hang', requiring a restart of Safari. This can often be inconvenient, and as it is rarely Safari itself that is hanging but merely one of its plug-ins, usually Flash, there is a way using Terminal to restart the plug-ins (without restarting Safari and losing your tabs) by quitting the WebPluginHost process:
    Open the Terminal from the Utilities folder in /Applications and type
    killall -9 WebKitPluginHost
    Note that this command kills all Safari plug-ins, not just Flash. All plug-ins should start back up when you reload the page.
    Then go back to Safari and refresh any pages that were using the Flash plug-in. This also fixes the Beachball of Death. Try this whenever Safari gets slow or freezes. The latest versions of Flash 10.1 onwards appear to have improved the situation somewhat, but haven't completed eliminated it.
    For this and other reasons Apple switched their websites to HTML5 in January 2011:
    http://www.appleinsider.com/articles/11/01/26/apple_revamps_its_public_website_u sing_html5.html

  • Hey Apple, what's wrong with these Li ion batteries and PMU?

    One of the reasons why we buy laptop is to use it for travel and work. I am not really happy with the fact that i had to reset the PMU twice in a month, and then have to recalibrate the battery again.
    What is this new Apple paradigm? we buy a laptop for roughly $2500 and it has to be calibrated and reset every month? When is apple going to provide a good answer to this problem?
    I don't buy a MacBook pro because i like playing with the hardware and software, and reading these Apple Discussions, i buy it because i need a working tool, that can work on battery for more than 4 hours for at least 2 years. If it is not the case, then Apple should take steps to replace the deficient part(s) (and please, don't crash my hard drive as it is quite valuable to me!-).
    I like apple products and i have quite a few at home and at work, but it needs to meet users' requirements!
    Thank you!
    MacBook pro 2.33Ghz Intel Core Duo Mac OS X (10.4.9)

    I have to concur with this statement. Having used Mac's for years I'm totally dissappointed with my MBP's reliability. I placed the order during the Job's keynote at Macworld SF last year and waited for weeks for it to arrive.
    I'm now on my third battery and have all sorts of start-up issues. Since the last update 10.4.9 my screen periodically goes dark (from bottom to top, like it's filling up with water) and a message telling me to restart -- I've never seen this on any Mac.
    My display will suddenly lose sync and go all fuzzy (not my second monitor, just the laptop display) for no reason. And, just to add insult to injury, some of the paint underneath my spacebar has started to peel off.
    Not happy with this machine at all and wish I'd stayed on my G4

  • EA4500 , What is wrong with u? 802.11n and wmm issus.

    Hi there.
    I just got this router . The wired part of the router running well ,But for the wirelss ,it's really killing.
    Even my old router can running at a spped at 150M when conncted to my laptop or my usb wifi card.
    but , both my wifi card and two laptops can only go 72mbps. when using 801.11 b/g/n mix mode.if i turn off wmm it can only do 54mbps.
    When 11n only mode is sellected and wmm turned off . none of my device can connect to EA4500 including apple tv ,iphone,pc... , 
    when 11n only with wmm on .all my PCs get a connecting speed at 72mbps.
    I had a scan of my wifi envirenment .It seems there are so many routers Aps around Me, that might be a problem but why my old router can do better than my Ea4500?

    I see. Now, set the security mode to WPA2/WPA Mixed Mode, switch the channel width to 20 mhz only, and set the channel to 1 or 6 or 11. To know what best channel to use. Download inSSIDer

  • What is wrong with my SQL Keeps Errroring out I cannot see where!  HELP

    SELECT
    PATIENT.NAMELAST,
    PATIENT.NAMEFIRST,
    PATIENT.NAMEINITIAL,
    PATIENT.GENDER,
    PATIENT.DOB,
    PATIENT.IDNO_0,
    ANALYT.CODE,
    CPT.CODE,
    TESTREQ.COLLECTED,
    ENTORDER.ENTORDERNO,
    TESTREQ.STATUS,
    TESTREQ.STATUSDATE,
    IT.INSCODE,
    ANALYT.DESCRIPTION,
    RPT_PTRESULT_PROF.VALUE
    FROM
    ((((((((PWLDBA.TESTREQ TESTREQ
    INNER JOIN PWLDBA.ENTORDER ENTORDER
    ON TESTREQ.ENTORDERKEY=ENTORDER.ENTORDERKEY)
    LEFT OUTER JOIN PWLDBA.TESTPRICE
    ON TESTREQ.TESTKEY=TESTPRICE.TESTKEY)
    INNER JOIN PWLDBA.RPT_PTRESULT_PROF)
    ON TESTREQ.TESTREQKEY=RPT_PTRESULT_PROF.TESTREQKEY)
    INNER JOIN PWLDBA.ANALYT
    ON RPT_PTRESULT_PROF.ANALYTKEY=ANALYT.ANALYTKEY)
    INNER JOIN PWLDBA.PATIENT
    ON ENTORDER.PATIENTKEY=PATIENT.PATIENTKEY)
    LEFT OUTER JOIN PWLDBA.IT
    ON PATIENT.ITKEY=IT.ITKEY)
    LEFT OUTER JOIN PWLDBA.CPTCHARGE
    ON TESTPRICE.BASE_CPTARRAYKEY=CPTCHARGE.CPTARRAYKEY)
    LEFT OUTER JOIN PWLDBA.CPT
    ON CPTCHARGE.CPTKEY=CPT.CPTKEY
    WHERE
    TESTREQ.STATUS='D'
    ORDER BY TESTREQ.STATUSDATE

    Always format SQL statement - then it is much easier to spot syntax errors (see comments I left in your code):
    SELECT  PATIENT.NAMELAST,
            PATIENT.NAMEFIRST,
            PATIENT.NAMEINITIAL,
            PATIENT.GENDER,
            PATIENT.DOB,
            PATIENT.IDNO_0,
            ANALYT.CODE,
            CPT.CODE,
            TESTREQ.COLLECTED,
            ENTORDER.ENTORDERNO,
            TESTREQ.STATUS,
            TESTREQ.STATUSDATE,
            IT.INSCODE,
            ANALYT.DESCRIPTION,
            RPT_PTRESULT_PROF.VALUE
      FROM  (
                                                    PWLDBA.TESTREQ TESTREQ
                                                INNER JOIN
                                                    PWLDBA.ENTORDER ENTORDER
                                                  ON TESTREQ.ENTORDERKEY=ENTORDER.ENTORDERKEY
                                           LEFT OUTER JOIN
                                               PWLDBA.TESTPRICE
                                             ON TESTREQ.TESTKEY=TESTPRICE.TESTKEY
                                      INNER JOIN
                                          PWLDBA.RPT_PTRESULT_PROF) -- unnecessary parenthesis
                                        ON TESTREQ.TESTREQKEY=RPT_PTRESULT_PROF.TESTREQKEY
                                 INNER JOIN
                                     PWLDBA.ANALYT
                                   ON RPT_PTRESULT_PROF.ANALYTKEY=ANALYT.ANALYTKEY
                            INNER JOIN
                                PWLDBA.PATIENT
                              ON ENTORDER.PATIENTKEY=PATIENT.PATIENTKEY
                       LEFT OUTER JOIN
                           PWLDBA.IT
                         ON PATIENT.ITKEY=IT.ITKEY
                  LEFT OUTER JOIN
                      PWLDBA.CPTCHARGE
                    ON TESTPRICE.BASE_CPTARRAYKEY=CPTCHARGE.CPTARRAYKEY
             LEFT OUTER JOIN
                 PWLDBA.CPT
               ON CPTCHARGE.CPTKEY=CPT.CPTKEY
            ) -- missing parenthesis
      WHERE TESTREQ.STATUS='D'
      ORDER BY TESTREQ.STATUSDATE
    /SY.

  • I had to restore my ipad but do not remember the original used name or password and now cannot start up the ipad. pl help

    could not restart my ipad after restoring it as I could not remember the original user name or password I had associated it with then.

    Try to reset your password at My Apple ID (appleid.apple.com) as described in this document:
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    What if I forget my Apple ID password?
    If you forget your password, you can reset it at My Apple ID (appleid.apple.com) or by contacting Apple Support and verifying your identity. Once your password has been reset, it will work normally with Find My iPhone and Activation Lock.
    If you forget your password and cannot reset it, you will lose access to your Apple ID and may be unable to use or reactivate your device. To help prevent this, visit My Apple ID periodically to review and update your account information.

  • ...link files no longer point to an original file and therefore cannot be

    repaired. This is, what DiskWarrior says about one HD of mine. How it happened, no clue, didn't do anything unusual. Now after reinstalling the system on this HD (somebody in a different discussion helped me to localize that BaseSystem.pkg in the Receipts Folder was empty) DiskWarrior still says the same. Have problems to connect to the internet from this disc and get the updates from 10.3 to 10.3.9. Safari doesn't work right.
    Any ideas ?
    Thanks
    bafomet

    A link file is a file that points to another file, kind of like an alias, except the link file points to a certain location whereas an alias will follow a file around. Although some links are important it is also possible it isn't and since the files have been moved around the links are broken. Somebody else may correct me but I'm guessing you can't repair those unless you know the files to which they were pointing. This would probably be something the OS or an applications set up rather than you so you can't really do it yourself (easily). The actually link files themselves are not critical but maybe what they do is.

  • I can not turn on my ipad and therefore cannot backup or reset from itunes what should i do

    My ipad is not turning on correctly and just freezes or keeps turning off and on. I have tried reset using home and power button but it does not help. dur to it not turnin on I can not backup or reset it via itunes. What should I do ? also if it does come on I slide the lock bar and it freezes, eventually turning off.

    Did you read this part at the very end of the article about restoring the iPad?
    Additional Information
    If your device is continually restarting, not responding, or showing the Apple logo with no progress bar or a stopped progress bar, place the device into recovery mode and try restoring again.
    Click on the link, read that article and see if that will work for you.

Maybe you are looking for

  • Business area ,plant and company code

    is the business area assigned to plants in configuration or is it only at company code?

  • Calendar and Contact Sync question

    I have been playing around with my droid 2 global for about a month now and just decided to see if I could get the contacts in my phone synced to my gmail. I have a lot of phone numbers in my phone but are not in my gmail account. The question is can

  • Registry workings?

    Hi, The inherited RMI server application has the following way of hosting multiple instances on the same host machine, and I wonder whether my alternative approach would be better. Currently the server app is started with a port number. The port numb

  • Executing the host application

    Hi, i developed a host application with OCF to communicate with my applet, everything is OK. now i wonder if i can execute the host application from an HTML page

  • Over head group

    hi guys, i created over head key, and over head group.  but in material master record it did not accepted to give that over head group.  what is the configuration it was required.  is it assaign costing sheet, if it is where over head key assaign to