One Time Vendor in F110

Hi,
1) In PO, under address tab, we entered a generic name and address for one time vendor.
2) In IV (MIRO), we create multiple invoices for the PO under different payees by changing the one-time vendor's name and address.
3) In payment (F110), we create proposal for the one-time vendor. In proposal list, each invoice generates a different payment number, however they are all lumped under the generic name we entered during PO under "payment to" field. After payment run, the payment list appears the same as the proposal list. The cheques printed show the correct payee entered during MIRO though.
Anybody knows how I can get the proposal list and payment list to reflect correctly?
Thanks.
Edited by: newbird on Nov 1, 2010 10:01 AM

Hi,
Do you able to find a solution for your requirement.
My business need is also similar to your. If you have got a workaround,can you kindly share it.
Regards,

Similar Messages

  • Missing an element of One Time Vendor Address on F110 remittance and proposal

    Hi All,
    I have an interesting issue with one-time vendors on our F110 Run.
    For some reason, one line of the address is dropped. If I look at the document produced by F110 in FBL1N I can see the full address on the document detail as below
    If I look at the resulting output remittance or the proposal I see that the line with "SA" has been dropped and I think the "CITY" value used instead.
    As you can see there is a gap in the "payment to" where the full stop exists.
    Can someone point me to the code or config where I can configure what elements of the one time vendor appear on the output and proposal. Normal vendors don't seem to be affected by this, but I wonder if our teams maintain the master data differently in these cases.
    many thanks

    Are you using DME file for output  then You need to define there which field they want to use .

  • F110 and one time vendor

    Hi All,
    I am trying to do payments for one of the vendor under the vendor group One Time Vendor by using F110. But it is not allowing the payment. It is throwing as error as
    Customer/vendor does not have any allowed bank details
    No permitted payment method exists                   
    I have given correct Bank details and payment method.
    Please suggest.
    Regards,
    S.Sumana

    HI,
    One time venodr should be included in the F110 because this one time vendor there can be many invoices belonging to different vendors and one payment will be made only.......so in which name check should be printed??
    I will recommend to use F-58 (if possible) or F-53...
    Regards,
    Chintan Joshi...

  • Automatical payment(F110) for one time vendor

    Hi
    Can we use automatical payment (F110) for one tiem vendor ?
    When I do it , system always cancel payment proposal .

    Hello,
    The One time vendor is a vendor and there is no difference and SAP doesn't restrict nothing for this case.
    You said : " When I do it , system always cancel payment proposal " : You means, the system said "No payment" in the proposal ?
    Please give me the error message (Edit -> Proposale -> Display Log)
    Thanks

  • F110 - Mass change house bank for one time vendor

    Hello,
    Is it possible to make mass changes for payment program for one-time vendors? I would like to change bank account from where do I want to pay something to one-time vendor. As far as I know, it isn't possible to change it that way, it is possible only one per one.
    Does anyone have Idea how to resolve this issue?
    Thank you in advance!

    I can do it but one per one in payment proposal. I can't do it mass. The issue is that I have huge number of one time vendor payments per day and some of them should be paid in one house bank and some of them in some other house bank.
    I tried to change it with FBL1N but I couldn't do it.

  • Protect field bsec-bankn (one-time vendor) within transaction fb02

    The user who can do " F110 automatic payment transaction" should not be able to change the bank number (bsec-bankn) of an one-time vendor for security reasons. A tried to customize the field groups and put them in the authorization object "F_lfa1_aen" but ended with a problem. It is not possible to add field bsec-bankn into a field group.
    Is it possible to protect this field from being changed for certain users (not all)?

    Hi Donald, as you can see in my container session I do specify:
    <uses-external-connection-pool>true</uses-external-connection-pool>
    I think the problem I have is that cannot co-exists in the same sessions.xml file two sessions one container and one non-container.
    When we ran the non-container server and when sessions.xml has the two sessions inside TopLink it will try, as part of parsing the sessions.xml (and before I really login), to instantiate the External Controller class even so I am not login for that session.
    It would be nice that the TopLink parser does not instantiate the classes at the time of parsing but leave the instantiation for the time of logging in the specific session. For me sessions.xml is a configuration file and it should not force to load and instantiate classes which I do not intend to use at some given time.
    Thank you, Narcisa

  • Purchasing report for one time vendor

    Hi,
    I am using ECC 6.0
    What standard report is available to display purchase order, GR and invoice belonging to one time vendor (CPD account group) ?
    Thanks for your help.
    Kind regards,
    Yann

    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

  • 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

  • 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

  • One Time Vendor Master

    Hi
    In one time vendor master data
    1. Can we get party-wise payment report at a later date without party code by just giving name of the party? If yes, party codes for one time payments are not required. 
    2.whether any payments are made to the party three years back. Can we check without party code?
    3.Service Tax department also regarding payments made to a certain party for the past 3 yeas. 
    Thanks
    Samson

    1. Can we get party-wise payment report at a later date without party code by just giving name of the party? If yes, party codes for one time payments are not required.
    You need to use the one time vendor party, there is no functionality getting reports with giving the name of the party.
    2.whether any payments are made to the party three years back. Can we check without party code?
    Refer answer for point 1. If you do not archieve the line items, then you can go back to any number of years to view the payment history.
    3.Service Tax department also regarding payments made to a certain party for the past 3 yeas.
    F.12
    S_ALR_87009909 Annual Tax Return (Belgium) >
    S_ALR_87009914 Annual Tax Return
    S_ALR_87009916 Annual Tax Return
    S_ALR_87009917 Annual Tax Return: Customers/Vendors
    S_ALR_87009918 Annual Tax Return: Customers/Vendors
    S_ALR_87012371 Annual Tax Return (Belgium) >
    S_ALR_87012376 Annual Tax Return
    S_ALR_87012378 Annual Tax Return
    S_ALR_87012379 Annual Tax Return: Customers/Vendors
    S_ALR_87012380 Annual Tax Return: Customers/Vendors
    Regards,
    Ravi

  • 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

  • Advance Payment to One Time Vendor

    Hi All,
    I want to make advance payment to One Time Vendor. But system generates massage that :Special G/L for such account is not defined".
    Awaiting for your reply.
    Thanx in advance

    The transaction other than A/P and A/R is called the special g/l transaction for ex: Bills of exchange, Interest payable , aqusition ,
    that needs to defined
    for example if we give any Advances ( either secured/unsecured/sundry deposits etc)
    A - Emp-Tour-Advance
    B - Emp-medical-Advance
    C-Unsec-Advances-Marketing Parties
    D-unsec-Advances-Govt Depts
    etc
    madhaw
    Assign points if it help

  • 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

  • Print out of RFQ with One Time Vendor

    My customer wants print out of RFQs with one time vendor.
    As per my understandings as like other vendors this one time vendor data is not stored in any table.This data is in table ADRC. And for one time vendor no master data is there.I can see this one time address in particular RFQ.
    Now, my customer wants this one time vendor address to be printed in all RFQs.
    Is any body come across this scenario ever ?Please guide my it is urgent.
    With Best Regards,
    Rajesh

    Hi,
    The vedor(OTV or Regular vendor) will be decided after the price comparision only.
    Once the OTV (account group:CPD/CPDL) is finalised as the final vendor for procurement create a new vendor master record (With A/c group:0001) and maintain Inforecord and source list and create PO.
    Maintain all the conditions in the Inforecord from the quotations (you have the update info option from price comparision itself)
    regards,
    Kannaiah Naidu

Maybe you are looking for

  • Error while activating the scenario

    Dear All, When I am activating my scenario, its throwing the following error, plz suggest how this can be resolved: Activation of the change list canceled Check result for <b>Message Mapping cXML_PS_File_Mail |</b> urn:ukedi:orderrequest:webapp:  Sta

  • How do you restore shrunken content in a tab window?

    While in one of my tabs, I must have accidentally clicked something because one of my tab windows now has its content shrunken in size in the middle of the screen. When this first happened, it showed my content in one of 4 vertical panes (side-by-sid

  • Very stange Behavior with JMX remote

    Hi I've an application written with Spring. JMX support works good locally bu I'm unable to connect from remote computer. I'm starting with : -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=4099 -Dcom.sun.management.jmxremote.authe

  • Sales before Purchase

    At one of my client side, sales is done before purchase.. in that case gross profit  shown will be 100%. but that is not correct and also the inventory level goes in negative.. Is there any way to handle this sceneario?

  • Got deploment error with Interactive forms

    Hi Frnds, Jus now i instelled ADS(Acrobat designer lifcy), n i did't made any changes in sld r vis admin ,i want to genrate a reports in PDF formate , so i designed a view with Interactive forms n i deployed ,igot this error com.sap.engine.services.w