PO reference details

HI,
I need to know the db table from where the PO reference details are getting populated in MIR4 transaction for invoice documents. Also from which table I shall get the information such as basic data, payment for the same invoice.
Thanks in advance
Sandeep

Hi,
Check the DB TableRSEG for Invoice details of PO.
Also check in EKKN,EKBE,EKBZ tables.
Regards,
Anji
Message was edited by:
        Anji Reddy Vangala

Similar Messages

  • EFT Addon Bank Reference Detail for Australia

    In BP Card in Payment System tab there is a field Reference Details (OCRD.RefDetails), if you read the help file it states that this field will be used instead of the 'Refer to Remittance Advice' that appears in the Australian Bank Payment Addon tool. Unfortunately the note also says that this functionality is for the EU only.
    Please can Australia have this functionality enabled, I have multiple client sites requesting this functionality enabled?
    Edited by: Kevin West on Aug 18, 2010 4:05 AM

    Hi,
    You can try one thing - In target offset you maintain 2. This should make the value display from the 2nd position and the 1st will be a blank. Make sure that you increase the length of the field by 1, i.e if the length you have mentioned is 15, then maintain it as 16 and in the target offset give 2.
    Please check and revert.
    Thanks and Regards,
    Anit

  • Reference details field in VM - Pmt transactions tab not mapping in idoc

    Hello,
    We have account numbers that are longer than 18 characters for some vendors & BP and need to enter the remainder characters in the field Reference Details of the vendor master and BP (in the Payment transactions tab).  However, these additional characters are not mapping in the PAYEXT idoc. Is there an additional setting that can be done for this value to map in the idoc without making a code change?
    thanks,
    Paola

    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    it talks about reading a TAB delimited file. You can reference the same to help you with creating a TAB limited file (check the parameter .fieldSeparator that is the key)
    you dont have to include any TABs in the mapping.
    Some other help for the receiver file adapter is;
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion
    /people/shabarish.vijayakumar/blog/2007/08/03/file-adapter-receiver--are-we-really-sure-about-the-concepts

  • PO reference details in MIR4 transaction

    HI,
             I need to know the db table from where the PO reference details are getting populated in MIR4 transaction for invoice documents. Also from which table I shall get the information such as basic data, payment for the same invoice.
    Thanks in advance
    Sandeep

    Hi,
    Check the DB TableRSEG for Invoice details of PO.
    Also check in EKKN,EKBE,EKBZ tables.
    Regards,
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • How to get vendor name and invoice reference details in asset register

    Hi Experts,
    My client requirement is he want to see Vendor name and invoice reference filed in asset register.
    Is there any standard reports relating this requirement.
    Kindly Provide valuable information relating to this issue.
    Regards
    Madhan

    Hi Madhan,
    Let me know the t.code which you are getting asset data.
    Thanks

  • Customer Open Items Document Details

    I am building an application for a client for Purchase Card Processing using Visual Studio 2005. I am able to use VS 2003 to create the necessary object to get the Customer List, Customer Details, and the list of Customer Open Items.
    I am totally new to SAP, and need some help to figure out my next steps.
    1. What call(s) will return an Open Item (Document) given the Document Number, along with the individual line items. With that info I can post a Level 3 transaction and get an authorization code.
    2. What is the process to post the purchase card authorization, essentially a payment, back to SAP for the open item.
    3. What is the best source for reference details on BAPI?
    Thanks in advance for any assistance.

    Thanks for the response,  but I have already madie it that far...   " I am able to use VS 2003 to create the necessary object to get the Customer List, Customer Details, and the list of Customer Open Items.
    with the list of open items,  I get a  Bill_Doc.   What calls will return the details of the Billing Document?

  • BAPI Object Reference for Customer Accounts and Open Items

    I am building an application for a client for Purchase Card Processing using Visual Studio 2005.   I am able to use VS 2003 to create the necessary object to get the Customer List, Customer Details,  and the list of Customer Open Items.
    I am totally new to SAP,  and need some help to figure out my next steps.
    1.  What call(s) will return an Open Item (Document) given the Document Number, along with the individual line items.  With that info I can post a Level 3 transaction and get an authorization code.
    2.  What is the process to post the purchase card authorization,  essentially a payment,  back to SAP for the open item.
    3.  What is the best source for reference details on BAPI?
    Thanks in advance for any assistance.

    Hi Scott,
    the questions are quite context specific to your application, the answers for which i am not aware at this point
    to pick up the 3rd one :
    >>3. What is the best source for reference details on BAPI?
    transaction 'bapi' in a SAP system, or se37 and a search with keywords like 'docnum' or 'openitem' or similar variations might yield some results
    also when you connect to a SAP system using vs2003, you will get a hierarchial view in the server explorer, that is also a simple way of finding bapi's that could be useful to your cause
    with respect,
    amit

  • Error while creating vendor bank details using MAINTAIN_BAPI of class VMD_ei_api

    hi, iam using maintain_bapi of class vmd_ei_api for bank details creation at the time of vendor creation. but im getting error: ' Invalid address:bank Country missing'.please suggest
    *    *** Bank details***************************************
        DATA: lt_bankdetails TYPE TABLE OF cvis_ei_cvi_bankdetail,
              ls_bankdetails TYPE cvis_ei_cvi_bankdetail.
        ls_bankdetails-data_key-banks = 'DE'. "Bank Country
        ls_bankdetails-data_key-bankl = 'BEBEDEBB'.     "Bank Key..
        ls_bankdetails-data_key-bankn = '3538174400' ."Bank account number.
        ls_bankdetails-data-bvtyp     = 'USA'.
        ls_bankdetails-data-bkref     = 'BEN'.           "Reference details.
        ls_bankdetails-datax-bvtyp     = 'X'.
        ls_bankdetails-datax-bkref     = 'X'.           "Reference details.
        ls_bankdetails-task            = 'I'.
        ls_bankdetails-data-iban      = 'DE24100200003538174400'.
        ls_bankdetails-datax-iban      = 'X'.
        APPEND  ls_bankdetails TO lt_bankdetails.
    *CLEAR : ls_bankdetails.
    *    ls_bankdetails-datax-iban      = 'X'.
    *   APPEND  ls_bankdetails TO lt_bankdetails.
    *  Inserting bank details,,,,
        ls_bank-bankdetails = lt_bankdetails[].
        ls_bank-current_state = ''.
        ls_vendors-central_data-bankdetail = ls_bank.
    And second question how/which method to use from this class to update bank details latter. Is it possible after creating vendor with mandatory fields and then update bank details?

    Hi Abhijeet,
    please check in transaction FI01, about your data consistencies. You can use this wiki help in terms of Address, it it found any useful facts for you
    Address Checks - Business Address Services (BC-SRV-ADR) - SAP Library

  • Bank details on vendor master record

    Experts,
    Im trying to enter the same bank account on one vendor upto four times, this is required to enable multiple reference details are used on the BACS.
    But i cannot enter the same bank account details more than once.... is there a way todo this? i found a sap note 845538 buts its related to Insurance...

    issue resolved

  • USING LSMW TO UPDATE VENDOR BANK DETAILS

    Hi SAP gurus
    I have used LSMW for mass updates of vendor bank details by recording the Tcode FK02
    But the problem is .. after I load the data, its replacing the old bank details with the new one which Im updating with.
    I want to keep the old bank details and add the new bank details as another entry.
    How do I do that..
    How Do I retain the old one and also the add a new entry to the bank details section of the vendor master record.
    Is there any other way for mass updating the vendor master records
    I have tried using MASS or XK99...but i cant add a whole entry with that transaction. All I can do is updating one of fields (Like Reference Details) in the bank details.
    Thank you in advance for all your replies. Points will be awarded as a token of appreciation

    Hi
    when you record the transaction for bank details in LSMW in , try to create record in last line. Automatically it will go to top line.
    I hope it will solve your problem.
    regards
    Srinivas

  • Mass change to vendor bank details

    Hi,
    I configured the system for payment through their new House Bank JP Morgan. I also created a test ACH file which the bank approved.
    The old bank(National City) used CTX(reference details) format for their ACH payments. This CTX entry is made in bank details of vendors. The new Bank wants CCD(reference details field in payment transaction section Vendor general master data) instead of CTX. I made these changes to 3 vendors and ran the Autopay program. It worked. Now I need to update the whole vendor master for the CCD transaction for new bank and also retain the old CTX for old bank. How do I do this. Should use the T-code MASS for this ?. after I need to create an LSMW script to update the vendors in PROD with all necessary testing.
    Please give me some suggestions how to approach to this problem.
    Thanks!

    How do you do mass changes with LSMW..
    I just want to change bank data details in all the vendor records...
    I think the vendors in the production dont even have the any entries in theor bank details section
    so for the vendors I have enter the same bank details and change transport them to production
    How do I do it with LSMW
    thank you

  • Bank details used in Payment program (F110)

    Hi expert,
    2 companies are working with the same vendor (in GB& BE).
    In BE, new bank details for the vendor were entered.
    When the company in GB wanted to make a payment run via F110, it immediately picked up the bank details of BE.
    How can the correct bank details be derived by both companies?
    Thank you for your feedback.
    Kind regards,
    Linda

    Hi Brenda,
    From my understanding, the bank account details are held at the general level and not the company code level, therefore even though your vendor is working in both company codes, the banking data for either company code are stored in the same place (LFA1).  Hopefully that makes sense.
    Now, when you are making a payment to a vendor using FB60 or MIRO, you have the option of selecting the bank account you want to pay.  To do this, first you must set up the vendor, ensuring you put something into the BnkT field, on the vendor master.  You can put a number in, or a country abbreviation or whatever makes sense to you.  You can also put some information in there in the Reference Details field, to help you identify which bank account is which.
    Now when you go to FB60 or MIRO, you should have a field called Part.Bank on the Payment tab.  You can select the bank account there that you wish to pay, as long as you have set up the vendor properly.  If you leave this blank, SAP will automatically allocate the payments to the default bank account, which I believe is either the first bank account or if you have left BnkT blank on the vendor master, it will default to that one.  You can test this to see which bank account it defaults to.
    Hope this helps,
    Laura

  • Getting Account Hold or Ref Detail from Vendor master in IDOC

    Hi,
    In the vendor master, payment transaction,, I would like to get the account hold or reference details field in the IDOC field when the payment in done by F110.
    Does anyone how to bring that field.
    Thanks,
    JR

    Hello
    The IDOC has three parts, the header (Content, structure,sender,receiver and status) Data segment (Segment number and field of 1000 character), status records.
    Modifications to IDOC can be done by the ABAPer by changing the logic in the program. Please discuss with the tech team / change / test .
    Reg
    *Assign points if useful

  • Bank Reference Field

    Good Day
    I want to change the vendor master data and maintain the reference
    details for a vendor/customer. And I would like to know the following :
    1. What is the function of the reference field.
    2. When I maintain the reference field will the reference appear on
    the vendor/customer bank statement
    3. Do I need to do anymore extra customising or config to ensure that
    this reference appear on the vendor/customer bank statement.
    Your speedy response will be appreciated.
    Kindest Regards
    Ropetra.

    Hi,
    Modification of internal SAP object could be problematic. You are not advised to modify the length of the fields. However, if you are confident in what you are doing, you can modify data element via SE80 transaction. ABAPer would know what to do...
    Regards,
    Eli

  • How to Find Supplier Details

    How to Select *(Supplier Name , Supplier Number ,Tax Registration Num , Taxpayer ID , Alternate Supplier Name , SIC , Address Line 1 , City , State )* To a specific Supplier.
    I used ap_suppliers but I did not distinguish the corresponding columns to the needed feilds.
    And please I need a systematic way to find out the base tables to a self services EBS Applications. Just like Suppliers enquiry and entry windows.
    Thanks in Advance
    Edited by: Oracle on Jun 6, 2011 3:23 PM

    Assuming that you want to see the query which lies behind the self service form.
    First ensure personalisations are enabled.
    Navigate to the form in question and query back a suitable supplier.
    In the bottom left hand corner of the form there is a link 'About this Form' (If the link isn't there then personalisations are not switched on, so you'll need to go back to the first step and resolve that) - click on the link.
    Scroll down to the section 'Business Component Reference Detail' - expand that by clicking on the '+'.
    In the 'View Objects' section there should be a link 'oracle.apps.pos.supplier.server.VendorsVO' - click on that link and you will see the query which populated that section of the form. From that you should be able to figure out exactly which table and/or view provides the data and which column the data comes from. You may need to work through other links in that section to get everything you need.

Maybe you are looking for