Unable to Save RFQ and PO.

Hi Experts,
I am facing a very serious problem in saving the documents.
Whenever I create PO or RFQ and Save it.
It gets Saved and with the document number.
But if I go to document display in ME23N or ME43 and the enter the document number created. the system gives the message.
"Document XXX does not exist"
Whats the reason this is happening.
Please give me your valuable inputs.
Thanks and warm regards,
Sheetal Hirde

Hi
Some times the Puircahse orders are nit updated in the data base tables as the updates are terminated , before Updating
goto SM13, there you can see the updates terminated & their logs.Click on one of the Updates terminated with transaction ME21N.
Double click on the line , you will see alist of Function modules, click on the function module in red, here click on the log to see more details on the reason for update termination.
in the dump anlysis you can see the reason for dump.
Act as per the dump anlaysis. usuall reasons for the dump is any new changes to the ME21N  program or number range error .
Check the number ranges for the Document types of the PO & Table EKKO.
The last number of the Document type in EKKO & the Current number of the Document type in number range customizing should be equal.
Check the same. If they are not equal, make them equal & try creating  again.
If the problem is not due to Number ranges. Please take help of ABAPER for Dump Anlaysis
Thanks & Regards
Kishore

Similar Messages

  • Unable to save paragraph and character styles

    I noticed an issue popping up for me in CS6 yesterday. I thought it was originally because of Fireworks saved PSD but an effort re-create the file from scratch in PS I'm coming across the same issue. In PS when I have a large amount of text layers and create a paragraph or character style, when I have ANY layer/group in my document locked I'm unable to save any paragraph or layer styles. Regardless of the layer or group being locked and regardless of what layer is highlighted I'm unable to save styles / any settings / name etc. The error I get for character styles for example is:
    "Could not complete the Modify Named Character Style command because a specified layer is locked."
    I did notice that in the Fireworks created PSD that without any layer even being locked I'd still get an error. It may be that this other document got some bad mojo from the Fireworks PSD. When creating a test doc and only creating a couple text layers and a bunch of empty groups and layers I'm unable to reproduce this. It appears to happen to me when I have a slew of text layers.
    Has anyone else experienced this and figured out a more solid workaround?

    If you want to add the styles to an already created document:
    1) Create you Character style containing only the character color
    2) Find and Replace, searching for text with red color and replace formatting with the new character style. (Don't type anything in the text part of the Find and Replace dialog)
    3) Create and apply your paragraph style to all. The text with the Character Style applied will stay red.

  • Unable to save from and to an external hard drive

    Just started to use Mac.
    I work with an external hard drive and when I edit files like Microsoft PowerPoint, I cannot save at all as I do not have the permission to do so.

    Most likely your external drive has a NTFS file system.
    You can check this by option+clicking on the hard drive icon, selecting "get info" and looking on the information for the Format field. If it says NTFS then that's your case. If not then there is some problem with the application.
    In case the hard drive is NTFS format then you can save your work on your computer only, you won't be able to save, delete or modify anything on that hard drive unless you format it with a FAT or HFS filesystem. To do this backup the data of your external drive, go to Aplications, Utilities, Disk Utility, select the drive on the list, click on the erase tab, select FAT on the Format drop down list and click erase. Copy all your files back to your external drive and you will be able to save, edit and delete files on it.
    In case that the drive is not the problem (FAT, FAT32 or HFS filesystem) then go to Applications, Utilities, Disk Utility, select the drive and click on Repair Disk Permissions. That should solve most problems.
    Hope this helps
    Cheers

  • Unable to save calculated and restricted keyfigures

    hi all,
               I am facing a strange problem where in , even though i try to save a calculated or a restricted key figure with a unique name the system throws a warning saying "the name already exists" and wouldn't allow me to  save the CKF or RKF.
    Any pointers to slove this problem would be appreciated.

    Hi
    Yes , If you create the restricted or calculated keyfigure and save it with the Technical name
    then you cannot use it again though you try to create in other info provider.
    You can create the RKF or CKF with the Technical name only once, You cannot use the same
    Technical name again to create RKF or CKF on other data providers.
    Regards
    M.A

  • Unable to save the ALV layout variant and display of selection screen on F4

    Hi All,
    The end user wants to directly select the layout variant (SLIS_VARI). I have used the following code to display the layout variant on selection screen. But, I am unable to save the variant on ALV. Whenever I am trying to select the layout variants (by doing F4 on selection screen) its displaying "No Layout found".
    Following is the code for displaying layout variant:
    PARAMETERS: p_var TYPE slis_vari.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_var.
      PERFORM f4_variant CHANGING p_var.
    FORM f4_variant  CHANGING c_variant TYPE slis_vari.
      DATA: ls_variant TYPE disvariant,
                l_exit     TYPE char1.
      ls_variant-report = sy-repid.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = ls_variant
          i_save     = 'A'
        IMPORTING
          e_exit     = l_exit
          es_variant = ls_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF l_exit EQ space.
          c_variant = ls_variant-variant.
        ENDIF.
      ENDIF.
    ENDFORM.                    " f4_variant
    and following is the code for displaying the ALV:
    FORM edition_alv.
      ws_variant2 = ls_variant.
    * Call ALV editor in list mode
      IF p_list = 'X'.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program      = ws_extract1-report
            i_callback_user_command = ws_user_command
            is_layout               = ws_layout
            it_fieldcat             = wt_fieldcat
            it_sort                 = wt_sort
            i_save                  = 'A'
            is_variant              = ws_variant2
            it_events               = wt_events[]
          TABLES
            t_outtab                = wt_edition.
    * Call ALV editor in grid mode
      ELSE.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program      = ws_extract1-report
            i_callback_user_command = ws_user_command
            it_fieldcat             = wt_fieldcat
            it_sort                 = wt_sort
            i_save                  = 'A'
            is_variant              = ws_variant2
            it_events               = wt_events[]
          TABLES
            t_outtab                = wt_edition.
      ENDIF.
    ENDFORM.  
    I am not sure whats going wrong, but I am unable to save variants.
    Please help.
    Thanks,
    Vishal.

    The F4 will display you the existing layouts only. So you need to save the layout first & then execute the report again & check if you are getting F4 values for that field.
    The Layout needs to get stored with variant.
    Regards,
    Mahesh

  • Microsoft Office 2004 (Word) unable to save files  I have been running Office 2004 on my Intel iMac with Snow Leopard for some time and all of a sudden I cannot save a document. Word just stopped responding and I have to force quit. I can open Word and cr

    Microsoft Office 2004 (Word) unable to save files
    I have been running Office 2004 on my Intel iMac with Snow Leopard for some time and all of a sudden I cannot save a document. Word just stopped responding and I have to force quit. I can open Word and create a new document but I cannot save it. I reinstalled Word but that didn’t help. Then went to the Internet and found at least one other Mac user having the same problem which it suggests is caused by a recent Mac Security Update:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2004-macword/word-2004-wil l-not-open-or-save-documents/b04eb870-9b0d-4f3b-bb47-b122301e36f6
    So I check for a new Mac Security Update and sure enough there was one. I downloaded it and now Word seems to be working, as it should. I can both open and save files. The only problem remaining is that when I open Word I get the following error message “An unexpected error occurred while trying to load the Microsoft Framework library”. I contacted Apple but they were unable to help.
    How can I get rid of this error message?

    Look, I realize you might have to get your machine working, so this is how you revert back.
    Restore proceedure to pre-Security Update 2012-001 v 1.0 & v 1.1
    #1 Backup your personal data off the machine.
    Backup files off the computer (not to TimeMachine). If you don't have a external drive, get one and connect to the USB/Firewire port and simply drag and drop copy your User folder to the external drive, it will copy all your files. It's best to have two backups of your data off the machine when trying to restore.
    Disconnect all drives now to prevent any mistakes from occuring.
    #2 Reinstall OS X 10.6 from disk
    Get out your 10.6 install disk and make sure it's clean and polished (very soft cloth and a bit of rubbing alcohol, no scratches) If your disk is borked, you'll have to order a new one from Apple with your serial number.
    Hold c boot off the 10.6 disk (wired keyboard, internal optical drive), use Disk Utility First Aid to >Repair Disk  of your internal drive  (do not format or erase!!), Quit DU and simply re-install 10.6.
    Note: Simply reinstalling 10.6 version from disk (without erasing the drive) only replaces 10.6.8 with 10.6.x and bundled Apple programs, won't touch your files (backup anyway)  or most programs, unless they installed a kext file into OS X itself. (only a few on average do this)
    #3 Update to 10.6.8 without Security Update 2012-001 v1.0 or v1.1
    Reboot and log in, update to 10.6.8 via Software Update, but EXCLUDE THE Security Update 2012-001 by checkinig the details and unchecking the blue check box.
    #4 Reinstall any non-working third party programs
    When you reboot, make sure to reinstall any programs that require kext files installed into OS X, you'll know, they won't work when you launch them or hang for some reason as they are missing the part they installed into OS X.
    If for some freakish reason you get gray screen at any time when booting (possible it might occur when you reinstall older programs), hold the shift key down while booting (Safe Mode, disables kext files) and update your installed third party software so it's compatible with 10.6.8.
    https://support.apple.com/kb/TS2570
    That's it really.

  • HT1329 My old computer crashed and I had to get a new one.  I was unable to save anything from the old computer.  Is there anyway to get my music from my Ipod to my new computer without having to start over with the old cd's again

    My old computer crashed and I had to get a new one.  I was unable to save anything from the old computer.  Is there anyway to get my music from my Ipod to my new computer without having to start over with the old cd's again

    Hello cheech07,
    The following article contains directions that can help get you back on track with iTunes. I'd recommend picking up at 'Part 5' of the 'External drive' section.
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Cheers,
    Allen

  • I am puzzled by iMac(Intel ?).  I am running an iMac 24 and use Mac:Office 2008.  After having downloaded my Os X LION upgrade, I am suddenly unable to SAVE (and thus alter) my Excel quotations.  This is a major issue for a salesman.  Can anybody help me

    I am puzzled by the meaning of iMac (Intel) as I use an iMac 2 period.  I am running Mac : Office 2004 and do all my quotations in Excel.  After upgrading to OS X LION,  I am suddenly unable to SAVE my spreadsheets.  As a salesman whose quotations need frequent updating,  my situation is perilous to say the least.  Can anyone help me ?

    Office for Mac 2004 is NOT compatible with Lion. It must be upgraded to Office for Mac 2008 or 2011, once you have upgraded the files will be accessable. Office for Mac 2004 is written for old PPC (Power PC) based machines. Beginning with Lion support for PPC based apps has been dropped.

  • My Ipod5 wont turn on and it has been telling me for the past 15 weeks that it is unable to save anything to the cloud. Is there any way that I can get my photos back?

    So basically, my Ipod5 was working normally earlier today but then the screen just randomly went black and I cant get it to turn on. The problem though, is that for the past 15 weeks, it has been telling me that it is unable to save anything to the cloud due to a lack of space. I don't really care about anything other than my pictures and I'm wondering if there is any way for me to get them back even if my Ipod doesn't work?

    Likely not but
    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable              
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar

  • Unable to save display settings and Multiple Monitors

    Have Windows 7 RTM installed on my laptop and was working great with extending to my monitor. I took my laptop home and hooked it up to my tv and it was fine. Now when I bring it back to work I cannot get the monitor to work. Only the display on the laptop is working. Windows can detect the monitor, but I try to enable the monitor and when I select Apply I get an error message "Unable to save display settings". I am a local administrator on the laptop. How can I extend to my monitor!
    Thanks

    Hi,
    Error message " Unable to save display settings" mainly indicates that you try to extend or duplicate the desktop to the two external monitors in addition to the laptop screen. Generally, laptop supports only two displays at one time due to hardware limitation. I
    suspect that the issue occurs because the laptop remembers both configuration for your extended monitor and TV. To extend your monitor, you need to clear the multiple configuration for your laptop and then extend your display by changing your display
    settings. To do this, please take the following steps:
    Step 1. Delete registry key.
    ==================
    1)Press Win + R to open a run box.
    2)In the Run box, type regedit, and then click OK.
    3)Locate the following registry subkey:
    HKEY_CURRENT_USER\Software\Microsoft\MobilePC\TMM
    4)Right-click the subkey that you located in step 2. Then, click Delete.
    5)When you are prompted to confirm the delete operation, click Yes.
    6)On the File menu, click Exit to exit Registry Editor.
    7)Log off the computer. Then, log on to the computer.
    Step 2. Extend your display by changing display settings.
    ====================================
    1)Open Screen Resolution by clicking the Start button , clicking Control Panel, and then, under Appearance and Personalization, clicking Adjust screen resolution.
    2)Click the drop-down list next to Multiple displays, click Extend these displays, and then click OK.
    References:
    KB 973782
    Best Regards
    Dale Qiao
    This registry key does not exist in my Laptop and it still won't work.  I have an Asus N53S
    which has both Intel HD Graphics 3000 and an NVidia GeForce GT 540M.  It appears that the limitation is actually there is no D-Sub / HDMI  / Internal Monitor option like there is in Windows Display.

  • While composing email, keep getting "Unable to save as a draft" every 30 seconds. I've disable auto save and it didn't help.How can I stop this message?

    While composing email, keep getting "Unable to save as a draft" every 30 seconds. I've disable auto save and it didn't help.How can I stop this message?

    Mike,
    Thank you for taking the time to look at my app. This is my last major stumbling block that I have to resolve for this and other forms in the app.
    Actually, I did use the Form Wizard for Auto DML to originally create the form. It was great. It created most of the Buttons, Items and Validations automatically (basically most of the page). I just needed to create some Processes and Computations. Two of which were the Processes to update the 'create_dt' and 'created_by' fields and 'update_dt' and 'updated_by' fields. The Create process updates the fields just fine.
    However, my problem seems to be that the Hidden 'create_dt' and 'created_by' fields aren't picking up the values from a record that is being editted. Then when I attempt to save the record those fields are NULL, causing the DB NOT NULL constraint to throw an exception for those fields. In the back of my mind I seem to remember seeing some post stating something to the effect that the information in fields with a Source Type of Database Column is just displayed and does not affect Session State items.
    Even with that, I am still wondering just why the 'created_by' Page Item shows the value that is in the DB record being updated, but the 'create_dt" does not (as can be seen in my first posting). It is the 'create_dt' Page Item (:P205_CREATE_DT) not having the DB records 'create_dt' info in it that appears to be the problem.
    Thanks,
    Tom

  • Otally unable to save a download. Unable to run a download and used up all the faq suggestions

    I am unable to save or run a download. The reason being ' unable to read source code' Contact server administrator. I have used up all the suggestions in faq's and am able to download using explorer

    I'm a designer not a code-geek and people like me need an easy way to grab screenshots. Codelines in developer tool is not an option! And the F1-option mentioned above does not work...
    Please, please give us the screen grab add-ons back!!!
    Or you have to implement a "right-click" feature within FF for screengrabbing...
    If not I'll have to downgrade my FF.
    (By the way - I've deselected the automatic upgrade option! Never again will I accept an auto upgrade!)

  • Since updating to OS X Yosemite, I am unable to save files into another computer or server. I have to save it on my desktop and then drag it into the server. How do i correct this?

    Since updating to OS X Yosemite, I am unable to save files into another computer or server. I have to save it on my desktop and then drag it into the server. How do i correct this?

    Ok this worked to solve the error.
    Use cmd prompt in windows 7 or 8 and run as admin:
    sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc config mrxsmb20 start= disabled
    No need for all that power shell nonsense as shown elsewhere for windows 8.
    That's it. Also force smb2 disabling on the apple side for good measure.
    With the above I was able to network mavericks and windows 8.1 pro flawlessly. He issues I had before where I could not read video, ISO and audio files (but could open documents and pictures from the windows machine connected to an apple network share folder went away.

  • Lost my book marks and unable to save we bookmarks

    Lost my bookmarks and unable to save any new  bookmarks. I don't know why this happened. Any help

    1. Try a reset. Hold the Sleep and Home button down (together) for about 10 seconds until you see the Apple logo
    2. Settings>Safari>Clear History, Cookies and Data

  • Pdf printing gets a black screen, and unable to save

    When saving a pdf (saving as), I get a message "unable to save as ...", when printing, it print all black pages...
    The file is OK, as I am able to perform both operations from IE running in parallel...

    Hi..
    Open the Finder. From your Finder menu bar top of your screen click Go > Go to Folder
    Type this exactly as you see it here:   /Library/Internet Plug-Ins
    Click Go
    Move the Adobe PDF Browser plugin  (or just PDF Browser plugin) to the Trash.
    Quit then relaunch Safari to test.

Maybe you are looking for

  • Pros / Cons of Running APEX on separate server

    Seeking feedback/thoughts on this general question. I am maintaining an APEX application that utilizes multiple schemas all residing in the same database as APEX. I am wondering what might be the pros / cons of putting APEX in a separate database and

  • Employee Rate schedule project to project

    Dear Dina, During approved cost budget preparation i am taking the named resources and the employee rate schedule serve the rate to me...For some of the projects if we need to go for the different rate schedule like mark up % (hike value)...project t

  • Error Limit for Datastores

    I have a datastore on which I intend to put some static validations. I will be putting this datastore in a package for datastore checking and want to set an error limit for the the number of validation errors which occur. Can this be set somewhere? M

  • IStore and TCA

    Hope this is the right place to post this question. We are currently running Oracle 11i (11.5.10r2). We currently are using iStore, one of the requirements we have today is to have a single user account with a relationship to multiple customers (thes

  • Recording Your Voice

    Is there a program on my macbook that will let me record audio using the built in mic? I want to use it for my college notes for studying... THANX!