FI doc post (IDoc FIDCCP02 - One Time Vendor entry)

I am posting an FI document and entering a one time vendor. In segment E1FISEG, field HKONT I enter 'ONETIME' (one time vendor). In segment E1FISEC, I enter the one time vendor info. When I create the IDoc, I get error 'No account specified in item 0000000001'. Any idea where this account comes from? It works fine when I create an FI doc with a one time vendor using trans FB01 manually.

Hi Ray,
what's about struc. E1FINBU
and field E1FINBU-LIFNR ?
i think you do'nt fill E1FISEG-HKONT for vendor-line!
regards Andreas

Similar Messages

  • Posting to One time Vendor with SPL GL indicator

    Hi Experts,
    I want to post to a one time vendor using a special GL indicator.
    Standard SAP does not allow this.
    Is this possible through some round about way  without a very big z development.
    if not then is there any other way out.
    Regards,

    Hi trivedy
    You can post with Spl G/l to one time vendorsalso. What you have to do is that, create a Spl G/l for One time vendors. (i.e) In T.Code OBYR, create a Spl G/l for One time vendors and enter the recon a/c for One time vendors specified in One Time Vendors master data ad try to post. Hope this helps.
    Regards
    Rajaram

  • Spl G/L posting to one time vendor not allowed

    Hi Gurus,
    I have a one time vendor and want to post special G/L posting for it.
    Is there a way of doing this? I have used the account grp CPD.
    I am also getting the error below:
    <b>spl G/L posting to one time vendor not allowed</b>
    Regards
    Karan

    Hi Karan,
    As rightly said by Madhu Spl G/l posting to one time vendor is not allowed in SAP
    Iam pasting the contents of SAP Note regarding this.
    Kamal
    29.03.2007 Page 1 of 1
    SAP Note Number 19638 - Special G/L transactions on one-time
    accounts
    Note Language: English Version: 2 Validity: Valid from 11.12.1996
    Summary
    Symptom
    Special G/L transactions, such as down payments, are not supported for
    one-time accounts. One-time accounts should be used for one-time
    transactions. For down payment, bill of exchange management or similar
    transactions for a customer or vendor, you can assume that this is not a
    one-time transaction. To post this type of accounting transactions in FI,
    you have to create a master record for the business partner.
    Additional key words
    Cause and prerequisites
    Conception of the one-time accounts.
    Solution
    Do not use one-time accounts if you want to post special G/L transactions.
    Source code corrections
    Header Data
    Release Status: Released for Customer
    Released on: 10.12.1996 23:00:00
    Priority: Recommendations/additional info
    Category: Consulting
    Main Component FI Financial Accounting
    The SAP Note is release-independent
    Related Notes
    Number Short Text
    867348 Preventing down payment request for one-time customers
    814038 SAPF103: you cannot post to one-time accounts (F5265)

  • RFBIBL00 and One time Vendor (BSEC)

    I was hoping to use RFBIBL00 to post FI documents. The requirements include entering one time vendors (BSEC). RFBIBL00 does not include a structure for BSEC. I wanted to use RFBIBL00 instead of IDocs to simplify the error maintenance for the user. Since RFBIBL00 does not include structure BSEC, I will have to use the the IDOC FIDDC1/FIDCCP02. Any other alternatives as far as simplifying the error maintenance?

    Hello,
    I'm not sure to understand your requirement, but there is a BAPI for posting GL.
    BAPI_ACC_GL_POSTING_POST
    Have fun
    Frédéric

  • Error message in case of One time vendor in MIR7 and MIR4.

    Hi,
    We have a requirement where we need to give a warning message when an invoice document is parked in case if it is a One time vendor and bank details are missing. It should be an error message if user is trying to save it as completed or posting the document. We have already found a BADI INVOICE_UPDATE method CHANGE_AT_SAVE for giving error / warning message but we also want the same to be appeared in the popup coming when we press Messages button in MIR4 screen same way as standard messages are shown. I know that there is a table T_ERRPROT which need to be populated in order to show the messages in the popup window but could not find any appropriate user exit or badi to populate this table. Any suggestion or solutions are welcomed.
    Thanks and Regards,
    Jaideep,

    Hi,
    in badi HEADERDATA_CHECK you have available as input parameter I_RBKPV.
    do something like:
    * If there is any error do not allow posting
        DATA: gt_errtab    TYPE TABLE OF mrm_errprot,
              gs_errtab    TYPE mrm_errprot.
        CONSTANTS:     c_errprot(23)   TYPE c VALUE '(SAPLMRMF)TAB_ERRPROT[]'.
        FIELD-SYMBOLS: <fs_errprotj_dt> TYPE table.
        ASSIGN (c_errprot) TO <fs_errprotj_dt>.
        REFRESH gt_errtab[].
        gt_errtab[] = <fs_errprotj_dt>[].
        DATA: c_okqx(17)   TYPE c VALUE '(SAPLMR1M)OK-CODE'.
        FIELD-SYMBOLS: <fs_okqx> TYPE ANY.
        ASSIGN (c_okqx) TO <fs_okqx>.
        IF NOT gt_errtab[] IS INITIAL.
          READ TABLE gt_errtab INTO gs_errtab WITH KEY msgty = 'E'.
          IF sy-subrc = 0.
            CASE <fs_okqx>.
              WHEN 'BU'. "POST
    * This is optional: you can either search for a particular message or
    * do not allow any error message
    * Here search for the message triggered in badi INVOICE UPDATE
                READ TABLE gt_errtab INTO gs_errtab WITH KEY msgty = 'E'
                msgid = 'ZXX' msgno = '030'.
                IF sy-subrc = 0.
                  CLEAR <fs_okqx>.
                  MESSAGE s030(zxx). "While errors exist document will not be posted
                ENDIF.
            ENDCASE.
          ENDIF.
      ELSE. "THIS IS THE NEW PART
       IF i_rbkpv-YOURBANKFIELD IS INITIAL. "This is the New part
            CASE <fs_okqx>.
              WHEN 'BU'. "POST
                  CLEAR <fs_okqx>.
                  MESSAGE s031(zxx). "Please fill in bank details
            ENDCASE.
       ENDIF.
      ENDIF.
    Best regards.
    Edited by: Pablo Casamayor on Jun 2, 2009 6:39 PM

  • Duplicate one-time vendor check

    Hello Guys
    It's necessary to activate a check whether one-time vendor already exists in the system as usual vendor.
    I think such check can be performed either during PO creation while entering vendor address, or during invoice posting while entering bank details, tax code etc.
    So please advise if you have any ideas.
    P.S. VAT Reg No is not used in our country, instead we use Tax Number 1.
    Great thanks.

    Hello,
    For normal vendor you can maintain duplicate check in OBA5
    Application Area F2
    Message No.144 for Vendor and 145 for customer, making it as information.
    I really doubt there is such control for One time Vendor in the system.
    Regards,
    Ravi

  • Report on one-time vendor

    Hello Experts,
    Is there a standard report or a way to get the payment information with address details on a one-time vendor account? As the addresses keep changing for this vendor account every time a check is printed for them, it is important to track the details. Any input is appreciated and rewarded.
    UV

    Hi UV
    In the payment proprosal and payment run you will see the details.
    Whe you run S_ALR_87012103 - List of Vendor Line Items  with option one time vendor you see the Name adresses, This is the information you fill in the posting!
    Paul

  • Vendor down payments for one time vendor

    Hi There,
    I am not sure why this is happening, but when we try and post a down payment to a one time vendor, it comes up with the error F5 265.
    When we do this for a normal Vendor it is OK.
    Has anyone come across this?
    Is there some special config required to activate one time vendors for Down payments?

    Special GL transactions (like down payments) are not allowed for one-time vendors.  Please refer to the following SAP Note.
    https://service.sap.com/sap/support/notes/19638

  • One Time Vendor

    Hi All,
    I am trying to work out whether there is any standard functionality in SAP that will aid the control of one time vendor usage for the following areas.
    1. During posting of an invoice against one time vendor account we would like to block the invoice automatically with a specific payment block so that the vendor details can have a second verifcvation.
    2. A standard reprot to show usage of one time vendors to identify if the same details are being repeatedly used as a one time vendor.
    Any assistance would be great.
    Thanks
    Chris

    Hi,
    there is no std block functionality avl for your senario. you can use the SAP std user exit and get this one done.
    Thanks,
    Suresh

  • One Time Vendor-Transactions Need to be Transferred to Major Vendor Acct

    A. One time Vendor Account is 50001.
    B. Some of major Vendor entries have been Uploaded to One Time Vendor.
    C. Although Balances Tally, in the financial Statements but AP Vendor Balance is messed up.
    D. Major / Normal Vendors are - Polestar (Vendor), GAC (Vendor), etc.
    How to transfer these entries to Normal Vendor Accounts from One Time Vendor, when Financial Statements for the year have been printed and transactions are posted.
    Urgent Help requested.
    Thanks.
    Message was edited by: Bhatia
            Bhatia

    I have done the following -
    1.Transaction Code used - F-51
    2.Checked the option Transfer with Clearing to transfer entries from One Time Vendor to Full time Vendor; entries being KR and KG <b>NOT</b> KZ.
    3.For <b>KZ</b>, with the same transaction code, I opted for Outgoing Payment Option.
    Would anyone let me know, whether choosing Outgoing Payment for KZ for such a case is justified?
    Rest F-51 was used for transferring the amount in a whole, but not invoices individually.
    Could somebody suggest a solution to this kindly?
    Thanks.
    Message was edited by:
            Bhatia

  • Processing Refund checks from One time vendor

    Hi Gurus
    I have an issue related to refund checks from vendors with whom we have very few transactions. My question is that if I have refund check from a vendor but do not have any subsequent payment to be made, how should I enter this check in the system? If I enter a credit memo, it should reduce the subsequent payments to the vendor but what to do if there is no subsequent payment?
    Thanks for all the help in advance.
    Regards,
    Shalu

    Hi
    Thanks for your reply. I tried to follow the instructions but could not process the entries. Let me enter the steps I am following:
    in Trannsaction F-43, I am debiting vendor AAA (not expense account but actual vendor number) using posting key 21 and crediting the expense GL account (posting key 50). So my vendor has a debit balance and the expense account has credit.
    In the second step, I am again in F-43 and I credit my vendor AAA (posting key 31) and debit the bank GL account (posting key 40). But I am getting error that document spliting is active and Item category 04000 not allowed in accounting transaction 0300/0001
    I am not sure if I am doing the correct entries or the scenario is clear to me. The exact need is that if there are no future payments, how do we handle any refund checks from the vendor that could be a one time vendor or any vendor with whom we have limited transactions.
    I appreciate your help.
    Thanks,
    Best Regards,
    Shalu

  • One time vendor downpayment

    Hi experts,
    When I post a down payment to one-time vendor, the system responded that: Special GL indicator to vendor is not define.
    How could I fix this error?
    Please help me!
    Thanks in advance!

    Hi,
    Check using t-code FBKP, double clik in the sp GL, click on properties, in Special G/L transaction types the value must be Down payment/Down payment request.
    Regards,
    Krishna Kishore

  • Payment to vendor above Rs.20,000 (in a day) - Except for One-Time Vendors

    hi guys,
                this is pertaining to FBCJ.
    i need to ensure that any posting to Cash Journal per Vendor should not exceed Rs.20,000 for that day for that Cash Journal. An exception to this rule would be payment made to ONE TIME VENDORS for which cumulative amount for that day can exceed Rs,20,000.
    Can this be done through GGB0 ??
    Pls help.

    Hi
    Sorry, but the other possibility that I know is to enhance the BAPI that do the same that FBCJ, that it isn't your requirement. See Note 616804 - FBCJ: BAPI for saving cash journal documents by curiosity.
    Regards
    Eduardo
    Edited by: E_Hinojosa on Dec 15, 2011 3:34 PM

  • Restriction to certain amount for One Time Vendor

    Dear Gurus,
                       We have created one time vendor (say 700000) in Vendor master for the purpose of small amount of entries in SAP.But the users are able to post amounts in more than 1 Lakh say in that master.Now how can I limit the master in such a way that user is not able to post more than Rs 5000 in that master.Should I go for any tolerance group or any other method is there.Please suggest in details
    Thanks

    Dear:
               Please check
               Minimum Payment Value Setting at Vendor level?
    Regards

  • Regarding advance receipt from one time vendor

    Hai friends,
                    i am trying to receipt advance from one time vendor. while i am posting in f-48 i am getting a error that there is no necessary setting for special gl transactions for one time vendor. can any one help me to sort it out
    thanks
    sam

    Basically for one time vendor, TDS processig is not supported. As one time vendor means that the master data can be changed to post the transaction with different one time parties using the same master.
    And if the TDS is deducted for such master, then while processing the TDS certificae and other reporting the data will not be correct.
    So if you need to do TDS processing, you need to define a regular vendor.
    Regards,
    Gaurav

Maybe you are looking for

  • Having problem with images imported from photoshop

    I am totally new to Fireworks, I am redoing a site that was done using CS2, that is GoLive, Photoshop and Image Ready. I wanted to begin familiarizing myself with Fireworks by starting with using it to make all the web images for the site (jpgs, pngs

  • QT Export To DV Gives Weird "Interlaced" Result

    I have FCP 4.5 and Quicktime 6.5.2 and OS 10.3.9. I recently upgraded DivX to DivX 6 "Convertor". That may or may not be related to this issue. I really don't know. I've been sent some AVI files to edit in FCP 4.5 before being made into a DVD. I deci

  • Can I use an additional external monitor for my mid-2010 MacBook?

    I currently run my MacBook in clamshell mode with an external monitor, keyboard, etc.  I have researched usb to VGA or DVI conversion kits but all of the sources seem outdated.  I don't need HDMI because my sound output goes through my MiniPort Displ

  • More questions for David

    1. Auto close. I put in the code you suggested, and, after a hell of a lot of messing around it came good, and now works. I don't know why I had so much trouble, or why it suddenly came good (suspect mismatched braces or types of quote, but thank you

  • Cl_salv_table

    hi, I am running sap 6.40 ....and i dont find any ref to cl_Salv_table....how  we should use this..