Reference field value in the F110 Payment document

Dears
We are running the automatic payment run for the vendor invoices posted.
In each vendor invoice, we have filled the reference field, text field, etc.  However, while running the payment in F110, the system does not reproduce this reference field value in the payment document.  Hence we are not able to match the items for comparison.
Have we left out any setting in FBZP or somewhere ?

Hello,
Apart from above suggestions, you can check linked invoices to payment document through below option.
Open payment document in FB03, go to Menu->Environment->Payment usage
This will list all invoices cleared through that payment document.
If you are looking for tables, Pass payment document number , company code, year, account type and account to AGKO table and get the clearing date. Pass these details to BSAK and get list of cleared documents.
AUGDT = Clearing date from AGKO
AUGBL= Clearing document from AGKO
and other details passed earlier.
Hope this helps.
Thanks,
V V

Similar Messages

  • Vendor name & Reference field to be copied to payment document

    Hi Gurus,
    I am doing vendor paymen by t.code F110 .   I want to copy vendor name and reference field to be copied from original booked billing document to payment document TEXT Field and Reference respctively.  How do i do the same ??  pleae advise.
    Regards
    AVINASHt

    Hi Avinash,
    Were you able to populate the field XBLNR in the payment document with the Vendor invoice number field? Kindly let me know how you were able to successfully do it.
    Thanks,
    Thameem

  • WBS field not appearing in the down payment document posted via FBA7/F-48

    i have created several down payment docs wrt PO, acct assignment WBS, but none seems to populate the WBSE field in the payment document, when using FBA7/F-48. All the down payment documents appear in the PO (Purchase order history) but only those which have been paid through F110 populates WBSE and the ones paid through FBA7 does not populate WBSE field. We are clear that the down payment documents are posted rightly w.r.t PO but its just that they dont get linked to the WBSE when FBA7 is used and gets linked when F110 is used. Please suggest if am missing any config setting. i already raised this in PS Forum but it now seems more of FI.
    /thread/1791429 [original link is broken]

    Hi,
    please check whether the feild status of your document types KZ, KA and KG are having the status for WBS Elements as optional or hidded
    Best Regards,
    Ravi Reddy

  • Reference field value disappears on the Receivables transaction line window

    Hi Everybody,
    I have below problem while creating the manual invoice from Receivables.
    when i am trying to utilize the reference field on the Receivables transaction line,
    so that it can be used to enter extra data for manual invoices.
    At the moment if you enter data in the file and save it . it was visible.
    Again when i re query the transaction then it disappears.
    Kindly some one suggest me how to view reference field value from Transaction line and as well as from back end in which column of Trx table i can see the data. Please help me to resolve the issue.
    Many Thanks.

    Pl check the below note.
    272428.1
    There is an enhancement pending (2660680) for this issue. You may have to check the status of this enhancement with Oracle Crop.

  • F110 payments documents data modification

    Hi Gurus:
    I need your help, cause I have a solve a client requeriment quickly.
    When I use F110 Tx (automatic mass payment), for pays via bank account, I need to copy some data from "invoices to pay" to payment documents asociated, because this data led me make a future correct bank account clearing. The relation between invoice and payment documents is one by one.
    For example, I have to copy the baseline date of a invoice (BSEG-ZFBDT) into the value date of a payment document (Bank position), or the assignment field of the invoice (BSEG-ZUONR) into the same field on the payment document.
    How I can do this?
    BTE's?
    User Exits?
    Sustitutions?
    How can use each solution?
    I hope your answers,
    It's very important for me find the solution to this problem.
    Thanks a lot.
    Rodrigo from Chile

    Hi Gurus:
    I need your help, cause I have a solve a client requeriment quickly.
    When I use F110 Tx (automatic mass payment), for pays via bank account, I need to copy some data from "invoices to pay" to payment documents asociated, because this data led me make a future correct bank account clearing. The relation between invoice and payment documents is one by one.
    For example, I have to copy the baseline date of a invoice (BSEG-ZFBDT) into the value date of a payment document (Bank position), or the assignment field of the invoice (BSEG-ZUONR) into the same field on the payment document.
    How I can do this?
    BTE's?
    User Exits?
    Sustitutions?
    How can use each solution?
    I hope your answers,
    It's very important for me find the solution to this problem.
    Thanks a lot.
    Rodrigo from Chile

  • How can I add form field value to the file name in save as dialog box

    I do not want the form to be saved automatically, just want the form to auto populate the "file name" only.
    A little background on the forms I want to use:  My company has 70 retail outlets, I'll use one of our pdf forms called an "Incident Report" as an example.  I would like for a store manager to be able to complete the form, then email the form to the main office (I already have javascript to add field values and form name to the email subject line), once the main office receives it, I want for them to be able to file the pdf electronically on our server.  We have mutliple forms that we use so I do not want any of the forms to automatically save anywhere, (at this time anyway) I just want the office personnel to be able to click "save as" (or whatever they will need to click) and the form automatically add certain field values from the pdf they have received, of which will be different each time the form is sent to the office (Date, store #, employee name etc.) in addition to the name of the form in the "File name" of the "Save As" dialog box.  The main office employees will decide into which server file the pdf should be saved.
    I'm using Acrobat 8 professional, the stores and office personnel use Adobe reader.
    One little note:  We currently print and file a lot of paper on a daily bases, as soon as I can get this to work, we are going green.
    Me and a lot of trees in this will really apprecitate any help you can give with this!  :-)

    You might want to take a look at the document "Developing Acrobat Applications Using JavaScript" (js_developer_guide.pdf) which is part of the Adobe Acrobat SDK, which can be downloaded here. Read the "Privileged versus non-privileged context" (p. 45ff.). You will find an example for "Executing privileged methods in a non-privileged context". Should be almost exactly what you are looking for.
    Small Outline: For security reasons ("the user always has to know what's going on") you are not allowed to use the "Doc.saveAs"-method without the user permission (--> in a non-privileged context). In order to reach the goal of a privileged context you can use a trusted function. You do this by creating a JavaScript file (*.js) in either the Application-JavaScript-Folder (default location on Windows systems: "%ProgramFiles%\Adobe\Acrobat 10.0\Acrobat\Javascripts") or the User-JavaScript-Folder (default location on Windows systems: "%AppData%\Adobe\Acrobat\10.0\JavaScripts"). Add the following content to the new file:
    myTrustedBrowseForDoc = app.trustedFunction( function ( oArgs ) {
         app.beginPriv();
              var myTrustedRetn = app.browseForDoc( oArgs );
         app.endPriv();
         return myTrustedRetn;
    myTrustedSaveAs = app.trustedFunction( function ( doc, oArgs ) {
         app.beginPriv();
              var myTrustedRetn = doc.saveAs( oArgs );
         app.endPriv();
         return myTrustedRetn;
    The developer guide actually wants you to add this content to the existing "config.js" file. I recommend creating a new file, since its easier to deploy in a network. Either way, every client/user who needs to be able to save documents this way, needs this JavaScript Code in his Application/User-JavaScript-Folder.
    Within the Acrobat Document, which you want to obtain a certain file name, you can now use the trusted functions "myTrustedBrowseForDoc" and "myTrustedSaveAs" to store the file. To call the trusted functions and deliver the file name you can either you use a form field (button) or you add a new menu item. Add the following JavaScript Action to the button/menu item and change "Roller Coaster" to the name of the field which contains the value which you want to become the new file name:
    var fileName = this.getField("Roller Coaster").valueAsString;
    try {
         var oRetn = myTrustedBrowseForDoc({bSave: true, cFilenameInit: fileName + ".pdf"});
         try {
              myTrustedSaveAs(this, { cPath: oRetn.cPath, cFS:oRetn.cFS });
         catch(e) {
              console.println("Save not allowed, perhaps readonly.");
    catch(e) {
    console.println("User cancelled Save As dialog box");
    Good Luck!

  • Change field value in a table, based on another field value in the same row (for each added row)

    Please Help, I want to change field value in a table, based on another field value in the same row (for each added row)
    I am using this code :
    <HTML>
    <HEAD>
    <SCRIPT>
    function addRow(tableID) {
    var table = document.getElementById(tableID);
    var rowCount = table.rows.length;
    var row = table.insertRow(rowCount);
    var colCount = table.rows[0].cells.length;
    for(var i=0; i<colCount; i++ ) {
    var newcell = row.insertCell(i);
    newcell.innerHTML = table.rows[1].cells[i].innerHTML;
    switch(newcell.childNodes[0].type) {
    case "text":
    newcell.childNodes[0].value = "";
    break;
    case "checkbox":
    newcell.childNodes[0].checked = false;
    break;
    case "select-one":
    newcell.childNodes[0].selectedIndex = 0;
    break;}}}
    function deleteRow(tableID) {
    try {var table = document.getElementById(tableID);
    var rowCount = table.rows.length;
    for(var i=0; i<rowCount; i++) {
    var row = table.rows[i];
    var chkbox = row.cells[0].childNodes[0];
    if(null != chkbox && true == chkbox.checked) {
    if(rowCount <= 2) {
    alert("Cannot delete all the rows.");
    break;}
    table.deleteRow(i);
    rowCount--;
    i--;}}}catch(e) {alert(e);}}
    </SCRIPT>
    </HEAD>
    <BODY>
    <INPUT type="button" value="Add Row" onClick="addRow('dataTable')" />
    <INPUT type="button" value="Delete Row" onClick="deleteRow('dataTable')" />
    <TABLE id="dataTable" width="350px" border="1">
    <TR>
    <TD width="32"></TD>
    <TD width="119" align="center"><strong>Activity</strong></TD>
    <TD width="177" align="center"><strong>Cost</strong></TD>
    </TR>
    <TR>
    <TD><INPUT type="checkbox" name="chk"/></TD>
    <TD>
    <select name="s1" id="s1">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    </select>
    </TD>
    <TD><input type="text" name="txt1" id="txt1"></TD>
    </TR>
    </TABLE>
    </BODY>
    </HTML>

    Hi,
    Let me make sure u r working with table control.
    First u have to create a event(VALIDATE) to do the validation.
    Inside the event,
    1. First get the current index where user has pointed the curson
    2. Once u get the index read the internal table with index value.
    3. Now u can compare the col1 and col2 values and populate the error message.
    1. DATA : lo_elt TYPE REF TO if_wd_context_element,
                   l_index type i.
    lo_elt = wdevent->get_context_element( name = 'CONTEXT_ELEMENT' ).
         CALL METHOD LO_ELT->GET_INDEX( RECEIVING  MY_INDEX = l_index.
    above code should be written inside the event.
    Thanks,

  • How to add field value to the standard table

    Hi,
    How to add field value to the standard table?
    for example:
    when we go to TCODE SE16-> VBAK table -> on the selection screen if we press F4 against VBTYP we get all the available values for that field. How to add a new document Category value to this field so that it shows up in F4 help for that field.

    Hi Asif,
    I don't think it is possible and feasible for adding new field value to the field VBTYP because it is not possible through SPRO.
    If u see the domain of this field VBTYP we have fixed values provided by SAP. There is no value table for this. If u have value table then it will be updated through SPRO. But still if u really want to add some value u can do that by getting access key and add the value in the fixed values of the domain. But of no use other than simply displaying in F4. Because for what ever value u created here there will be no documents in VBAK or any table using this domain.
    Hope this is clear for u.
    Thanks,
    Vinod.

  • How can we read the screen field values from the report selection screen wi

    Hi expart,
    How can we read the screen field values from the report selection screen with out having an ENTER button pressed  .
    Regards
    Razz

    use this code...
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_posnr.
    **Read the Values of the SCREEN FIELDs
    CALL FUNCTION 'DYNP_VALUES_READ'

  • How to get a field value in the report

    hi all :-
    i need to get the field value in the formate trigger inside a specified field in the report?

    please post your request in the report category forum

  • How can i transfer a field value in the main report to its sub-report?

    <p><font face="Arial" size="2">How can i transfer a field value in the main report to its sub-report?</font></p><p><font face="Arial" size="2">Please eloberate with example if possible!</font></p><p><font face="Arial" size="2">Thanks...</font></p><p> </p>

    <p>You can do a couple of things - one would be to pass the information using the data linking expert.  Right click on the subreport, choose &#39;Change Subreport Links&#39; and select the field(s) you are wanting to pass to the subreport.  CRW will build parameters and a record selection formula for you in the subreport, and if that&#39;s what you want, then great.  But you can also remove the selection formula from the subreport and work with the parameter fields in the subreport however you would like.</p><p>Alternatively, you can look to passing Shared variables back and forth from the main and subreport.  this link talks about the method to do this: http://diamond.businessobjects.com/node/251</p><p> </p>

  • How can we hide the non key field values in the sm30 display

    hello experts,
    I have to protect the non key field values in the sm30 display , can u help me out wat changes i have to do in the layout.

    Hello Gopal,
    What do you mean by 'protecting' your non-key field value?
    1) You want to display it, but make it non-changeable
    A - Make the field as output-only in screen, as already answered by a preivous collegue
    2) You do not want to display this field at all
    A - Goto the DDIC definition of the view (not possible for a table directly), and maintain the required field as a Hidden. After activating, remember to re-generate the maintenance dialogue. Also, please maintain Event 21, in case you want to access/change the value of this field in background.
    3) You want to maintain special validations/checks for the field
    This can be easily done by introducing your modules within the CHAIN-FIELD commands in the PAI of the generated screens.
    Best Regards,
    Rekha

  • How to assign voided cheque to the new payment document no.

    Hi Experts,
    A cheque no 11111 was manually assigned to a payment document no. created for a vendor X but physically another cheque no. 22222 was issued to vendor X by  mistake. Later on the user issued the cheque no. 11111 phisycally lying with him to vendor Y but did not assigned this cheque to vendor Y's as this was previously assigned to vendor X. When the user came to know this, he reversed the payment document no. by voiding the cheque no. 11111 with void reason ''Inserting wrong cheque lot'' and created another payment document no for vendor X with cheque no. 22222. This way he corrected the vendor X payment document with cheque no. 22222. Now he wants to assign the cheque no. 11111 which is voided to vendor Y's payment document. Further he has issued many cheques from the cheque lot which contain the cheque no. 11111 and 22222.
    Is there any way to assign the voided cheque to the new payment document no as the user wants it very desparately. 
    Hoping for solution.
    Rgds,
    BABA

    Hi Shailesh,
    Use FCH5 to create check information. Enter thr payment document , Company Code, Fiscal year and the house bank information to assign the check. IF the check lot having the check number has further checks assigned from it, this check lot has to be made non-sequential so that we could manually assign the check number.
    Thanks & Regards
    Preeju Susan

  • Add field value to the existing internal table.

    how to add a field value to the existing internal table.
    DATA: BEGIN OF ITAB occurs 0,
                 EBELN TYPE EKPO-EBELN,
                 EBELP TYPE EKPO-EBELP,
                 AEDAT TYPE EKPO-AEDAT,
                 amount(10) type c,
               END OF ITAB.
    select * from ekpo
           into corresponding fields of table itab.
    itab-amount = '2400'.
    loop at itab where ebeln eq 70 .
           write : / sy-tabix,itab-ebeln,itab-ebelp,itab-aedat,itab-amount.
             endloop.
    here output is not showing the amount field value.
    please tell me how to solve this problem urgent
    thanks in advance.

    Hi Sekhar,
        First let me know wheather you are assigning some value to the amount field externally to all records? if this is wright means check the below code.
    DATA: BEGIN OF ITAB occurs 0,
    EBELN TYPE EKPO-EBELN,
    EBELP TYPE EKPO-EBELP,
    AEDAT TYPE EKPO-AEDAT,
    END OF ITAB.
    select * from ekpo
    into corresponding fields of table itab.
    v_amount = '2400'.
    loop at itab where ebeln eq 70 .
    write : / sy-tabix,itab-ebeln,itab-ebelp,itab-aedat,v_amount.
    endloop.
    or if you want to modify perticular records in itab  then use below code.
    DATA: BEGIN OF ITAB occurs 0,
    EBELN TYPE EKPO-EBELN,
    EBELP TYPE EKPO-EBELP,
    AEDAT TYPE EKPO-AEDAT,
    amount(10) type c,
    END OF ITAB.
    select * from ekpo
    into corresponding fields of table itab.
    loop at itab.
    itab-amount = '2400'.
    modify itab index sy-tabix (or perticular line number).
    endloop.
    loop at itab where ebeln eq 70 .
    write : / sy-tabix,itab-ebeln,itab-ebelp,itab-aedat,itab-amount.
    endloop.
    Thanks,
    Suma.

  • F110 - Payment document Text field SGTXT ?

    Hi
    Experts,
    The requirement is that Payment Document needs to have the same Text (field SGTXT) as the invoice document.
    If someone knows how to do this I will also appreciate your answer.
    Anil
    Edited by: Anil Kumar on Oct 14, 2011 8:45 AM

    The field BSEG-SGTXT is not filled into the payment/clearing document by F110 because a payment document can be used to pay a lot of invoices and in this situation the payment program will not know from which of the many invoices the BSEG-SGTXT should be taken from.
    If you want to have SGTXT from the invoice in the payment transfer medium you have to write a "*" in front of the SGTXT from the invoice. In this case the value from SGTXT is taken into REGUP-SGTXT and can be used for the payment medium.
    However, the same text will not appear in the line item text of the payment document. If you want to see the same text in the payment document:
    One solution would be to create a substitution. You can create a substitution in accounting documents at callup point 2 to fill SGTXT with the vendor code LIFNR for example.
    If you want to have the SGTXT copied from the invoice you could create a clearing rule for SGTXT.
    Also you can make use of BTE 00001120. You can find documentation for the usage of this event in transaction BERP, enter process interface 00001120   > execute   > Keep cursor on the event 00001120 and then click documentation.

Maybe you are looking for

  • Exception trying to start the JRE Control Panel

    I've run into some persistent problem with seemingly any version of the JRE on my WinXP system. Whenever I try to start the control panel, either from the Windows Control Panel UI, or from the Java system tray icon, I get an exception error: java.lan

  • Dep Req: NProc in MD04 - but not showing in MF47

    On the Stock requirements list (MD04) a dependent requirement is showing as NProc.  However, on MF47 no records appear for re-processing. How to get rid of the dependent requirement?

  • Applicatio​n builder cRIO

      Dear, I have a project which use the cRIO 9102. There are: - the main VI one the Host computer                   - One VI on the FPGA target I would like created Regards   Massif

  • Upgrade software

    My iphone has no upgrade software option.  How can I upgrade to iOS 6?

  • Duplicate SMS messages

    I have been looking to find a solution to a problem but have not been able to find. Perhaps you can help. I have connected my 3100 phone to PC Suite 6.8 (and previous versions). The problem is that upon synch thru File Manager, SMS messages continue