Getting attached message while rejecting posting run

Hi,
I am getting attached warning /error message while rejecting a posting run.
I am not sure what will be the effects If I proceed further by clicking on Ok button.
Can anyone help me in this ?
Regards
SG

Hi COFI
As stated in the error message - there is something wrong in the receipts. Now it depends how many items are there in the posting run. If there are just few you can probably go in each item individually and check what's wrong. Otherwise if there is a huge list in the posting run  due to which individual item cannot be analyzed, you have to reverse the posting run (Click Yes in the message). This will reverse the already posted documents and the status of the trip will be back to "To be settled mode". Then usual process starts (Settle, Transfer to FI etc).
SD

Similar Messages

  • Why does firefox stop loading then when i close it and try to open it up again I keep getting this message:Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system

    Firefox will just stop loading/ connecting to the internet. The gray circle will just continually move but it never turns green to load the pages. I know it's not my internet because my internet explorer works just fine while this is happening to firefox. So I close firefox and then try to re open it but I get the message: Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. So I wait a little bit then try and re open it and still get the same message. I then go into my windows task manager and try and end the firefox proccess but it won't end. So I restart my computer and firefox eventually starts acting up again.

    For possible causes of this error, and how to troubleshoot it see [[Firefox is already running but is not responding]].

  • Pop up error message while material posting

    Hia,
    how can i pop up error message while material posting based on user .
    thank u in advance

    Hi Ram
    Nobody is getting your requirement. Please explain your question.
    Thanks & Regards
    Kapil Nanda

  • Getting error message while opening PDF file.

    Hello Experts....
    I'm getting error message while opening the attached PDF file in mail.
    I'm Sending the payslip to mail which is converted into .PDF format.
    Where exactly the problem i m not getting.
    Please help....

    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid                    = rqident
            no_dialog                      = ' '
           DST_DEVICE                     = out_parms-pdest
          PDF_DESTINATION                =
           get_size_from_format           = out_parms-pdest
          IMPORTING
            pdf_bytecount                  = bytecount
           pdf_spoolid                    = pdfspoolid
          LIST_PAGECOUNT                 =
           btc_jobname                    = jobname
           btc_jobcount                   = jobcount
          TABLES
            pdf                            = out_tab
          EXCEPTIONS
            err_no_abap_spooljob           = 1
            err_no_spooljob                = 2
            err_no_permission              = 3
            err_conv_not_possible          = 4
            err_bad_destdevice             = 5
            user_cancelled                 = 6
            err_spoolerror                 = 7
            err_temseerror                 = 8
            err_btcjob_open_failed         = 9
            err_btcjob_submit_failed       = 10
            err_btcjob_close_failed        = 11.
      IF sy-subrc NE 0.
      ENDIF.
    *CALL FUNCTION 'BAPI_GET_PAYSLIP_PDF'
    EXPORTING
       employeenumber       = PERNR-PERNR
       sequencenumber       = '00001'
       payslipvariant       = 'PAYSLIP-PM'
    IMPORTING
      RETURN               =
      PAYSLIP              = PAYSLIP
      PDF_FSIZE            =
    ******************CONVERTING PAYSLIP(XSTRING) TO BINARY FORMAT******
    call function 'SCMS_XSTRING_TO_BINARY'
       exporting
         buffer                = payslip
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
       tables
         binary_tab            = OUT_TAB.
        check not ( out_tab[]  is initial ).
        refresh i_record.
        clear : i_record.
        call function 'QCE1_CONVERT'
          tables
            t_source_tab         = out_tab
            t_target_tab         = i_record
          exceptions
            convert_not_possible = 1
            others               = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
       do.
         i_record = it_attachment_long.
         append i_record.
         shift it_attachment_long left by 255 places.
         if it_attachment_long is initial.
           exit.
         endif.
       enddo.
        select single ltx into subject from t247
                   where mnr eq pn-begda+4(2)
                     and spras eq 'EN'.
        condense subject.
        concatenate 'Payslip for the month of' subject pn-begda+0(4)
                                  into subject separated by space.
        describe table lt_objbin lines l_att_lines.
        read table lt_objbin index l_att_lines.
        lv_document_data-doc_size = tab_lines * 255 .
        lv_document_data-obj_name = 'Payslip'.
        lv_document_data-obj_descr = subject.
    e-mail body
        clear lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = tab_lines.
        lt_objpack-doc_type = 'RAW'.
    LT_OBJPACK-doc_size = STRLEN( LT_OBJTXT ).
        append lt_objpack.
    For e-mail attachment
        lt_objhead = 'payslip.pdf'.
        append lt_objhead.
        lt_objbin[] = out_tab[]."i_record[].
        "describe table i_record lines l_att_lines.
        describe table out_tab lines l_att_lines.
    CLEAR LT_OBJPACK.
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_att_lines.
        lt_objpack-doc_type = 'PDF'.
        lt_objpack-obj_name = 'attachment'.
        lt_objpack-obj_descr = 'payslip'.
        lt_objpack-doc_size = ( l_att_lines - 1 ) * 255 + strlen( lt_objbin ).
        append lt_objpack.
    make recipient list
       " check user_mail_id is not initial.
        lt_reclist-receiver =  user_mail_id.
        lt_reclist-rec_type = 'U'.
        append lt_reclist.
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = lv_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          tables
            packing_list               = lt_objpack
            object_header              = lt_objhead
            contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
            receivers                  = lt_reclist
          exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
        if sy-subrc = 0.
          write:/ 'Mail sent to', 30 user_mail_id.
          write : sy-uline.
        else.
          write:/ 'Error encountered'.
        endif.
        clear : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
        refresh : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
       clear : filepath+3(17), pdffile, encryptpdf, batch_file.
        clear : out_tab, i_record, filetable.
        clear : user_mail_id, password.
      else.
        write : 'payslip not generated'.
      endif.
    end-of-selection.
    Please Check....

  • HT4993 I just installed my email accounts and I can receive, but I can't send.  I get the message "address rejected by the server."

    Hello,
    Just got my first iPhone, (the 4s and installed my email accounts, but wonder if I've done something wrong.  I have verified all incoming and outgoing servers, user names and passwords and they are all correct, but while I can receive email, I can't seem to send.  I keep getting the message "address rejected by server."  Can anyone help?  Thank you all for your time...

    You have to go through the out-going server entries again. Consult with your e-mail provider.

  • When I open Firefox I get the message "Firefox is already running but not responding . . .

    I am using Firefox 3.6.9 with Windows XP SP3. Almost every time I try to open Firefox I get the message:
    "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."
    I then must open Task Manager and find Firefox and stop the process.
    I run Firefox on 4 Windows machines and this is the only machine that I have this problem on.
    I have looked at the Mozilla Firefox KB and have tried to check on the items that could be causing the problem. I have update my Java in Firefox. I have un-installed Firefox leaving the Bookmark preferences, etc. on my machine, ran CCleaner to clean the Registry of remaining Firefox items and then re-installed Firefox - I still have the problem.
    I have installed Google Chrome to fix this problem but now I find that several of the websites and companies I do business with are not compatible with Chrome.
    How can I fix this problem? Why am I only having this issue on 1 of my 4 Windows machines?
    Thanks!
    Bill Artman

    For possible causes see [[Firefox is already running but is not responding]].

  • I am getting error message while attempting to upgrade the software to iOS 6.1.3

    Hi,
    Need help on this, i am getting error message while attempting to upgrade the software to iOS 6.1.3

    The Current iOS for the iPhone 4s is iOS 7
    How to update your iPhone, iPad, or iPod touch

  • "When I try to create a new file I am getting this message:  "While executing getDynamicContent in AddressURL.htm, a JavaScript error occured".... what should I do?  Thank you, Lisa

    "When I try to create a new file I am getting this message:  "While executing getDynamicContent in AddressURL.htm, a JavaScript error occured".... what should I do?  Thank you, Lisa

    Troubleshoot JavaScript errors | Dreamweaver CS4, CS5, CS5.5, CS6
    Start with steps #4, #12 and #10.
    Nancy O.

  • Even after uninstalling, reinstalling Firefox, the Firefox profile folder is empty, and I get the message "Firefox is still running and not responding close firefox...

    Even after uninstalling, reinstalling Firefox, the Firefox profile folder is empty, and I get the message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." I have followed all the directions I can find, on my computer and Firefox Support. Still, the same message comes up, and "firefox" is not shown in my Windows Task Manager.
    What can I do?

    Delete the profiles.ini file and let Firefox create a new default profile.
    * http://kb.mozillazine.org/profiles.ini_file
    * http://kb.mozillazine.org/Profile_folder_-_Firefox#Files_and_folders_outside_the_profile_folder

  • I play virtual city.. Now I get a message: Warning you're running low on disk space

    i play virtual city playground. now i get a message: Warning you're running low space

    Launch Disk Utility (Applications --> Utilities --> Disk Utility)
    1. Select your Macintosh HD from the left pane --> Verify Disk
    (If Problems, Select Repair)
    2. Select your Macintosh HD from the left pane --> Verify Permissions
    (If Problems, Select Repair)

  • Once I turn off the browser and then try to use it later, I get a message saying its already running but not responding. tells me to close it which I cant do since its already closed. Forces me to restart my computer

    Each time I start, use and close Firefox, when I try to use it the 2nd time, I get a message saying its already running but not responding. It Isn't. I have to restart my computer everytime I want to use Firefox.
    == This happened ==
    Every time Firefox opened
    == I downloaded the new version ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; x64; SV1; GTB6.4; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: '''[http://kb.mozillazine.org/Kill_application Kill Application]'''
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    '''[[Firefox hangs]]'''
    '''[http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit (Mozillazine article)]'''
    '''[[Firefox is already running but is not responding]]'''
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox SafeMode is a diagnostic mode that disables extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes before starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your extensions and then try to find which is causing it by enabling one at a time until the problem reappears. You have to close and restart Firefox after each change via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.

  • I always get the message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." on terying to run firefox

    When I try to run Firefox I get the message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."
    No copy of firefox is running as far as I can tell. Restart and restoring system to 10 days ago did not help.
    Uninstalling and downloading a new copy - but to not avail.

    See:
    * http://kb.mozillazine.org/Recovering_a_missing_profile
    * http://kb.mozillazine.org/Profile_in_use
    Do you still have a default profile?<br />
    If not then delete the file [http://kb.mozillazine.org/profiles.ini_file profiles.ini] to make Firefox create a new default profile.
    * C:\Documents and Settings\&lt;user&gt;\Application Data\Mozilla\Firefox\Profiles\&lt;profile&gt;\

  • Why do I get a message saying "You are running an operating system that InDesign no longer supports. Refer to the system requirements for a full list of supported platforms."? What does this mean?

    Why do I get a message saying "You are running an operating system that InDesign no longer supports. Refer to the system requirements for a full list of supported platforms."? What does this mean?

    It means that your machine does not meet the system requirements for InDesign.  Check the system requirements for InDesign against those of your machine to see where your machine comes up short.
    InDesign - http://helpx.adobe.com/indesign/system-requirements.html

  • Keep getting this message"Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." , but cannot view Firefox open window or close it. Have to always reboot system.

    Keep getting this message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." However, cannot view open window or close Firefox. Have to always reboot system to access the internet.

    For possible causes of this error, and how to troubleshoot it see [[Firefox is already running but is not responding]].

  • When I close the browser, firefox won't open again. I get the message "Firefox is still running, restart your computer." How do I fix this?

    When I close the Firefox browser by clicking on the X in the upper right-hand corner of the screen, the window closes. But when I want to open Firefox again, I cannot. Instead, I get a message, "Firefox is still running. Restart your computer." This happens a few times a week and is very disconcerting. How do I fix this problem?

    I will only close the browser by using your suggestion, File > Exit, from today on, and see what happens. Thank you for your expedient reply.

Maybe you are looking for

  • Help. Windows 7: The application was unable to start correctly (0xc0150002).

    I just got a new computer. Windows 7. Toshiba. Intel 13-3110M Processor. 6GB DDR3 Memory. 1TB 5400rpm Hard Drive. Intel HD Graphics 4000. 2.40 GHz. 64-bit operating system. I installed CS5 Creative Suite on it (which worked perfectly fine on my two p

  • Running 64 Bit and 32 bit CS5 simultaneously?

    I am delighted with my preliminary tests on CS5. However, one problem is that all my plugins (and Photoshop's own Lighting Effects) have disappeared. The solution is of course to run in 32 bit. To have close to close PS, go into Info to change its st

  • Performance optimization : query taking 7mints

    Hi All , Requirement : I need to improve the performance of  custom program ( Program taking more than 7 mints +dump).I checked in runtime analysis and below mention query taking more time . Please let me know the approach to minimize the  query time

  • Releasing procedure for P.O.

    hi sapgurus, here is the scenario, i have as issue ( for P.O value only) 1) if the value is < 2 lacks then one person  will release. 2) if the value is > 2 lacks then 2 persons will release

  • HT203521 24 hour calendar

    Calendar is now quite seamless, but for those used to a 24hour clock format, it's frustrating that Calendar persists with an am/pm format. Is it possible to use the 24 hour format in Calendar?