Error message in FB60

Hi Gurus,
I am posting a vendor invoice using FB60. When I click on Post I get the following error message.
Tax code A0 does not appear in any G/L account item. No matter what tax code I use, I get this message.
Kindly let me know what can be done regarding this.
Thanks,
Sagar

Hi Sagar,
Please check your GL Master data, In Control data tab tax category needs to changed as " * ".
Hope this helps.
Raja.A

Similar Messages

  • Error Message "No batch input data for screen SAPMF05A 0700" for FV60&FB60

    Dear All,
      I doing a BDC Upload program for Create Vendor Invoice and Park using FV60 ,But i can't upload successfully by Batch Input method and i am gettin the Error Message "No batch input data for screen SAPMF05A 0700'.I tried using FB60 and got the same error message. When i do in the direct method i can able to do it ,But can't park the document successfully and can do it untill sumilate only.
    How to overcome this issue and if you already encounter this kind of problem please advice me.
    Thanks in Advance.
    Deesanth

    Hi,
      Below is my recording.
        perform bdc_dynpro      using 'SAPMF05A'     '1100'.
        perform bdc_field       using 'INVFO-ACCNT'  gwa_inv_up-lifnr.
        perform bdc_field       using 'INVFO-BLDAT'  gwa_inv_up-bldat.
        perform bdc_field       using 'INVFO-XBLNR'  gwa_inv_up-xblnr.
        perform bdc_field       using 'INVFO-BUDAT'  gwa_inv_up-budat.
        perform bdc_field       using 'INVFO-MONAT'  '9'.
        perform bdc_field       using 'INVFO-BLART'  gwa_inv_up-blart.
        perform bdc_field       using 'INVFO-WRBTR'  gwa_inv_up-dmbtr.
        perform bdc_field       using 'INVFO-WAERS'  gwa_inv_up-waers.
        perform bdc_field       using 'INVFO-XMWST'  gwa_inv_up-xmwst.
        perform bdc_field       using 'INVFO-MWSKZ'  'P0'.
        perform bdc_field       using 'INVFO-SGTXT'  gwa_inv_up-sgtxt.
        perform bdc_dynpro      using 'SAPMF05A'     '1100'.
        perform bdc_field       using 'BDC_OKCODE'   '=PAYM'.
        perform bdc_field       using 'INVFO-GSBER'  gwa_inv_up-gsber.
        perform bdc_dynpro      using 'SAPMF05A'     '1100'.
        perform bdc_field       using 'BDC_OKCODE'   '=BS'.
        perform bdc_field       using 'INVFO-ZLSCH'  gwa_inv_up-zlsch.
        cnt = 1.
        cnt1 = 1.
        clear gwa_inv_line.
        loop at gt_inv_up  into gwa_inv_line  where indic = 'D'
                                       and count = gwa_inv_up-count.
          if cnt1 gt 1.
            concatenate 'ACGL_ITEM-MARKSP(' cnt ')' into fld.
            perform bdc_field using fld 'X'.
            perform bdc_dynpro using 'SAPMF05A' '1100'.
            perform bdc_field using 'BDC_OKCODE' '=0005'.
          endif.
          concatenate 'ACGL_ITEM-HKONT(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-lifnr.
          concatenate 'ACGL_ITEM-SHKZG(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-shkzg.
          concatenate 'ACGL_ITEM-WRBTR(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-dmbtr.
          concatenate 'ACGL_ITEM-MWSKZ(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-mwskz.
          concatenate 'ACGL_ITEM-SGTXT(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-sgtxt.
          concatenate 'ACGL_ITEM-GSBER(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-gsber.
          concatenate 'ACGL_ITEM-KOSTL(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-kostl.
          concatenate 'ACGL_ITEM-PROJK(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-posid.
          concatenate 'ACGL_ITEM-FISTL(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-fistl.
          concatenate 'ACGL_ITEM-FIPOS(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-fipos.
          concatenate 'ACGL_ITEM-GEBER(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-geber.
          perform bdc_field       using 'BDC_CURSOR' fld.
          cnt1 = cnt1 + 1.
        endloop.
        perform bdc_dynpro using 'SAPMF05A' '1100'.
        perform bdc_field  using 'BDC_OKCODE' '=BS'.
        perform bdc_dynpro      using 'SAPMSSY0' '0120'.
        perform bdc_field       using 'BDC_OKCODE' '=BP'.
        call transaction 'FB60' using gt_bdcdata mode 'N' pdate 'S'
                                        messages into gt_bdc_messages.
    Thanks,
    Deesanth

  • BADI or Userexit for MIRO and FB60 for displaying an error message

    Hello,
    Could you please let me know the BADI or User Exit validation Bank House field and displaying an error message in MIRO and FB60?
    Thanks,
    Md

    Hi,
    you can try with badi MRM_HEADER_CHECK.
    in method HEADERDATA_CHECK you can do something like:
    IF sy-tcode = 'FB60' OR sy-tcode = 'MIRO'.
      IF I_RBKPV-HBKID = 'WHATEVER'.
    * for the message in MIRO you can use this fm
        DATA: gt_errtab0    TYPE TABLE OF mrm_errprot,
              gs_errtab0    TYPE mrm_errprot.
                CLEAR gs_errtab0.
                gs_errtab0-msgty = 'E'.
                gs_errtab0-msgid = 'ZXX'.
                gs_errtab0-msgno = '030'.
                gs_errtab0-source = 'Q'.
                APPEND gs_errtab0 TO gt_errtab0.
                CALL FUNCTION 'MRM_PROT_FILL'
                  TABLES
                    t_errprot = gt_errtab0.
      ENDIF.
    ENDIF.
    Best regards.

  • Error message "no accounting transaction variant assigned for FB60//GL"

    Hi Friends,
      I created a new document type for GL postings in ECC 6.0. I tried to post a document for this document in FB60.. It displays the error message "no accounting transaction variant assigned for FB60//GL". Can anyone help me solve this problem.
    Thanks
    Ramya

    You need to do the settings as follows:
    Go to extended document splitting- define business transaction variant
    Here u need to do series of settings.
    Pl check your settings here

  • Error Message Posting a Non-PO Vendor Invoice

    The instance is ECC 6.0.
    While trying to post a non-PO vendor invoice, I am getting the below error message:
    "RKEAK-FIELD(12) is not an input field
    Parked document could not be posted 00 S 347 RKEAK-FIELD"
    Does anyone ever bumped into the same error message or have an idea what is generating the error?
    The issue started happening after one of the accounts in posting (Vendor Discounts) which is a CE was changed to post to Profitability Segment in OKB9. This error was not faced earlier when the account was posting to Cost Centers.
    We are using new GL and Doc Splitting functionality.

    Thanks for your reply.
    I checked the note and it says the affected release are 3.0 D to 3.1G. But we are on ECC 6.0. Moreover, as per the note this is an issue with Tcode FB01, but I am using tcode FB60 for creating the non-PO invoice...
    Please let me know your thoughts...

  • Display error message in EXIT_SAPLMRMP_010

    Dear expert,
    Our requirment is that:
    We want to display a  modal dialog screen for user input some other detail data when click 'Post' in MIRO, and update these data to a an add-on table. There will be a 'CHECK' button on the dialog box for checking the data which user input. 
    We found the customer function EXIT_SAPLMRMP_010 can do the job. we create our dialog screen, and call it in EXIT_SAPLMRMP_010.
    We write some code like " MESSAGE 'xx is a required field' type 'E' '' in PAI modoule of dialog screen.
    but when the program reach the code  'Message  XX',   no any error message pop-up, the modal dialog screen automatically closed and back to MIRO screen. the error message can be found when click button 'MESSAGE' on MIRO screen.
    it seems that the sytem prevent the error messages raised, and collect them into the "message box" of MIRO screen.
    But the we want to display the error message directly in the dialog window or pop-up the message without dialog window close.
    is there any one how to do that?
    thanks very much

    Hi,
    have a look at this thread:
    BADI or Userexit for MIRO and FB60 for displaying an error message
    You can try something with fm 'MRM_PROT_FILL'.
    In this way the "messages" button of the status bar will show a red traffic light indicating that you have error messages.
    Best regards.
    Edited by: Pablo Casamayor on Aug 19, 2009 8:35 AM

  • Permitted payee error message while posting an invoice

    HI,
       I already define permitted payee in the vendor master record.But when i am creating an invoice through FB60, in the payment segment we are having an option to select payee. When i am clicking F4, then it is giving me an error message stating that-
    No alternative payer/payee defined
    Message no. F5747
    Can anybody help me out in this. Points will be awarded.
    Thanks and regards,
    Shree.

    HI,
       I already define permitted payee in the vendor master record.But when i am creating an invoice through FB60, in the payment segment we are having an option to select payee. When i am clicking F4, then it is giving me an error message stating that-
    No alternative payer/payee defined
    Message no. F5747
    Furthur to this, when i am entering manually this number there, then it is giving me an error that
    Payee 7109 is not defined for account 1023861 in company code 3000.
    I am creating an invoice for company coe 4000 and the paying company code for this is 3000 while making payment throgh F110. But i see that this account exist only for the company code 4000 and not for the 3000.
    Main account is 1023231 and
    Permitted payee is 7109.
    Can anybody help me out in this. Points will be awarded.
    Thanks and regards,
    Shree.

  • Error message 7Q321

    hi expert
    when i do entry in  FI  transaction code is FB60 ( Enter Vendor Invoice ) for vendor invoice that time one error is appear error is .
    with holding tax amount exceeds the customer/vendor line item amount 001. and error message no is 7Q321.
    how to solve this problem and all setting is done for with holding tax.
    then how to solve this problem
    thanks in advance
    pravarshan.

    HI,
    >>>Refer Note 513204..
    Regards,
    Chintan Joshi

  • Error Message:error message 25003001 not assigned to cc 3000

    Hello All,
    I am getting the above error message while posting in FB60. I used the cost center is 25003001 in company code 3000. Actually the cost center belongs to cocd 2500. Please let me know the reason. many thanks, Bob

    Hi
    You have answered your question already.
    Change the assignment for cost center 25003001 in KS02 to company code 3000.

  • Error: Message no. FF 802

    I have set the currency ratio using OBBS, but when I try to have data entry using FB60, the following error message happens:
    An exchange rate type is not defined for country ID
    Message no. FF 802
    May I know that what settings needed by me?

    I got some hint from this website, but could anyone enlighten me what should I do?
    Thanks in advance.
    ========
    <b>Question:</b>
    I just did a customising for tax and it could not seem to post. I have an error message "An exchange rate type is not defined for country XX".
    But when I did a posting without taxes, even in foreign currency, it works. I suppose I must assign exchange type "M" for tax posting somewhere but I could not seem to find it.
    Could someone kindly point me to how this problem could be resolved?
    Many thanks in advance.
    <b>Answer:</b>
    exchange rates are not created by country.
    the problem is your tax indicator. It is not defined for the country where your company is.
    http://www.jt77.com/financials/finan-05353.html
    ========

  • Windows Vista: Ipod Error Message, no longer read by PCs

    Hello,
    I have a 5th generation black ipod video with 30GB of memory.
    The other day I hooked it up to my laptop (Toshiba, 4 months old) that it's been functioning on with no problems whatsoever. This weird error message flashed twice about it not being able to sync because of some software problem.
    Eversince then, the only thing I can charge my ipod on is the family treadmill in the basement (~_~) as no other computer in the house recognizes it. I can't even charge it through the wall sockets, either.
    I have changed the ipod cord, still no luck. I've also reset the device about 3 or 4 times and uninstalled, restarted the laptop then reinstalled itunes. I would like to reset it back to factory settings but that's impossible as computers/laptops don't pick it up. I live very far from a Mac store...
    What's a girl to do? I can't live without my Busta Rhymes and Wu-Tang Clan!
    Any advice would be greatly appreciated! Thanks!

    you have to update Vista go to this site and up-date http://windowsupdate.microsoft.com

  • Error message into a Variable.

    Dear users,
    I have a rather usual (unusual from the weekend beers for me though!!) query which I can't figure out a proper way to implement.
    My requirement is like this:
    I have a message class in which I want to define a text 'Employee number & not found'.
    I want to use this in the program, but not to raise this error. Instead, I want to move this error message with the Employee number into a Character(200) variable.
    So instead of using MESSAGE e0xx(messageclass) USING employee number, I would like to move the error text into a variable which looks like:
    lv_text = e0xx(messageclass) USING '1234'   which stores the text 'Employee number 1234 not found' in lv_text.
    How would I acheive it??
    Thanks, V!

    Try tis way
    message e999(00) with i_emp-empno into lv_text.
    press f1 in message will provide you more details

  • IPod seen by windows, not by iTunes+ weird error message

    I have a first generation 2GB iPod nano and i use windows xp. I can't load any music because iTunes doesn't see my iPod and an error message pops up that reads like this: "iTunes: iTunes.exe corrupt file. The file or directory \iPod_Control\iTunes is corrupt and unredable. Please run the checkdisk utility." I've tried everything, reinstalling iTunes, different versions, reinstalling OS, resetting iPod, even on another computer, same problem. Other than that, the iPod works normally, it's just lacking music..
    and why is there no email adress from apple for service qustions? 10x

    I still don't get it, how can I put it in disk mode if I CANNOT see the iPod in iTunes..?
    Did you read the document i linked you to? here's another link to it:
    Putting iPod into Disk Mode
    whereabouts in that procedure in that document (that you get to by clicking that link) does it say that you have to connect it to iTunes to put it into disk mode?
    ... never mind ... i guess you've fixed it anyway ...

  • Error message iPod cannot update b/c all of the playlists no longer exist

    Hello. I have been getting this error message. "Songs on the iPod "MAR(the name of my iPod)" cannot update because all of the playlists selecting for updating no longer exist." And my playlists are still on the left side in my iTunes. They do exist. I have a feeling ths might have to do with the fact that on vacation the person I was visiting gave me a gift of putting all of his music that would fit into the external hard drive part of my iPod, and for the past week or so I have been putting that music onto my 40 GB portable hard drive at home. I suspect I took a vital folder out of my iPod by accident. Right now I have the folder iPod_control if I open my iPod up in My Computer. Am I missing something? Right now my iPod is empty because iTunes made a composite playlist last week and I deleted it thinking I could get my real playlists back. Can you help me, or reccomend a site/someone who can? Thank you.
    PC   Windows XP  

    hiya!
    And my playlists are still on the left side in my iTunes. They do exist.
    let's just doublecheck this. folks get this message if they have "automatically update selected playlists only" selected in their itunes "ipod" preferences tab. so bring up that tab ("edit > preferences", click "ipod" while the ipod is showing up in the source list), and do a playlist by playlist crosscheck of the playlists selected in that tab, and the playlists showing up in the itunes sourcelist.
    is there any playlist selected in the preferences tab that isn't showing up in the sourcelist?
    love, b

  • Windows Blue Screen Error Message Appears As Soon As IPod Connected

    Everytime I connect my IPod to my computer, I get the Windows Blue Screen error message. Thought it was the cable, so plugged cable in by itself. No problem. Uninstalled IPod and ITunes software and then plugged in IPod, still got the Blue Screen. The Blue Screen says something about "recent plugged in device problem". It is not the cable, it must be the IPod. Did not have this problem when I bought it. Tried it on labtop and get the same error message. I can't do updater or anything that requires me to plug the IPod into a computer because the Blue Screen appears immediately. When I unplug, the Blue Screen remains and locks up the computer so I have to restart each time. I have tried everything I can think of. Please help.

    Hi Mike thank you for replying,
    I am not able to start the computer in safe mode, safe mode with networking, last good known configuration etc, Each time it quickly blue screens and restarts about two secs into the process.
    I was unable to try a clean OS install from the disk as it gave the blue screen error shown in the original post. The same thing happened when I tried to use the repair option on the XP home disc. So i can't get into the computer at all to start diagnosing the fault, the only clue I have is the error message, and after searching the internet I haven't found much enlightenment from that yet.
    If you can help me out or suggest where to search it would be much appreciated.
    Thx

Maybe you are looking for

  • Write to file(AVI) synchronizate data

    I receive a USB Camera signal and a CAN(Control Area Network) signal. I like two signal parallel displaying and write to file (one or more) and after read. I practise IMAQ AVI Write Frame.vi with DATA. I receive USB Camera signal around 15fps (but th

  • Can't send emails from a btinternet address unless connected to a WiFi network

    I am a UK user with an iPhone 5 and Vodafone as my ISP.  After installing IOS 7 both gmail and btinternet addresses continued to work well until I upgraded to IOS 7.0.2 since when while I have been able to receive emails with a btinternet address I c

  • How to create stepper motor signal (myRIO)?

    Hi there, I'm fairly new to LabVIEW, and I'm trying to run a small stepper motor with ULN2003 based driver board (one of these) with a myRIO. I have gone through a few examples in the project guide to get a feel for things, but I can't figure out how

  • Problem with screen re-draw in full screen mode on secondary screen.

    Hello all, using dual monitors , when I enter full screen mode (no window container) on the secondary screen (not the palette screen) panning the image using the hand tool, the screen has a delayed redraw of the image. It is "re-tiling" the image lik

  • SAP MDM 5.5 System Copy

    Hello we receive from the business a request to do an refresh of our SAP MDM 5.5 QA system with the MDM 5.5 Production system. But I didnu2019t find any informationu2019s about this process on SAP MarketPlace neither in Googleu2026.. Does anybody kno