Updating reference field

FI Experts, we are trying to write a BDC to update the reference XBLNR field to a line item thru FB02. However it is not possible thru FB02, we also tried FBL5N but this can not be done either. Is there a tcode that I can access that will take me directly into the reference filed in change mode by simply putting the doc #.
Your help will be greatly appreciated
Edited by: Frank on Apr 2, 2009 10:44 PM

Field XBLNR is a non editabale field.
However, you try this out with the help of a developer:
SE54: Table BSID and create a maintenace dialog for field XBLNR.
SM30: Maintain table BSID
Rgds,
Harmees

Similar Messages

  • How to update Reference field in the clearing document

    Hi Friends,
    While accounitng for billing document for sales Reference Key 2 is used for a data.
    Now when the payment is recieved from customer and accounted, how to update the Ref 2 automatically from the primary document.
    Pl, suggest.
    Thanks
    NNS

    Hi Robert,
    Thanks for answering.
    I am looking at Ref 2 should flow automatically to clearing document from the accounitng document for billing.
    Ex: Billing document is created and accounted. Ref 2 is AB
    Now when receipt is accounted for this biling document this AB should flow automatically to Ref 2 field.
    Thanks
    NNS.

  • Bapi to update fb02 reference field (xref3)

    Hi ,
    Please tell me the bapi which is used to update reference field xref3 into bseg for transaction fb02.

    Hi Alessandro Spadoni,
    Could you please tell the values you passed for CHANGE_DOCUMENT. I am unable to edit xref1, xref2 and xref3 in FB02

  • Bank statement number not updating in reference field

    Hi All,
    After importing EBS, reference field of the posted document will be updated default as "HOUSE BANK" ACCOUNT ID" and "Statement number". But in my case statement number in this field is updating up to 11999.
    Means, if I run EBS upload with statement number 12000 it is updating as 11000. This is updating in Table FEBEP also. I could see FEBA with statement number 12000.
    Do you have any idea where this is controlling.
    Regards
    SM

    Hi,
    the first 2 digits are for the year and the last 3 are for the statement number.

  • How to update Tr code FB02   and update the field reference key1 (bseg-xref

    Can any body
    help me how to update   Tr code   fb02
    and  update the field  reference  key1 (bseg-xref1)  with the interest amount
    calculated.
    Below i have  written My  program  flow logic
    The program should read the open items i.e debit items in the customer account,
    Based on the  invoice date and customer payment terms  calculate the due date and then the  interest should be  calculated on that item based on the due date.
    Use the  transaction  fb02  and update the field  reference  key 1 (BSEG-xref1)
    with the interest amount calculated
    Only  consider  customers whose  interest indicator  knb1-vzskz = 'vk'.
    Interest is to be  calculated for every  30  days
    at the rate of  1% .please see example below.
    Document date is 01.01.2007
    for amount  1000SGD   payment  term  7  days
    It becomes  due  on  08.01.2007
    until  06.02.2007 you should not  consider  for calculation of interest
    SGD  on   7.02.2007 run you can consider this  item for interest calculation

    Hi Robert,
    Thanks for answering.
    I am looking at Ref 2 should flow automatically to clearing document from the accounitng document for billing.
    Ex: Billing document is created and accounted. Ref 2 is AB
    Now when receipt is accounted for this biling document this AB should flow automatically to Ref 2 field.
    Thanks
    NNS.

  • Reference fields in a report

    I have a tabular report from a view (this view has parts of 2 tables), I need to make a button to update, the default button doesn't work well, so I have to create a button that makes an update in each table, but I don't know how to reference each field in the report to make a process.
    Thanks
    Víctor Carmi Lara

    If I understood you good, I have a question:
    Why you don't use view to make update on fields in two tables?

  • Reference field of invoice not filled in PO history

    The reference field of the invoice (INFVO-XBLNR) is not copied into the EKBE-XBLNR. I couldn't find an OSS note to solve the problem. Please advise.
    Kind regards,
    Annerie Deckers

    Hello,
    Table EKBE is only updated if "GR-Based IV" indicator is active at Purchase order item level.
    Only then field EKBE-XBLNR is updated with the value of the corresponding GR doc.  reference field (MKPF-XBLNR) and not with the value of the      RBKP-XBLNR (logistics invoice).
    There is also a note explaining the case link:[Note 383828 - ME23N: Reference in the purchase order history]
    BR,
    Elly Leondi

  • How to update the field of a Parent enity (field is not visibe on the Form) from a Child Entity in MSCRM 2013

    Hi All,
              I m new to CRM customization. I have requirement like this..
    I have 3 entities.. Entity1 , Entity 2 and Entity3.
    Entity1 is the parent of Entity2 and Entity3. Entity2 is the parent of Entity3 and child of Entity1 ..
    In Entity1 I have a field eg:product1 which acts as lookup for Entity2 field availableproducts.  Now in Entity2 I have a field the quantity of products which acts as lookup for Entity3 as given below.
    In Entity3: fields:;; products==Lookup of Products(Entity1)
                                  quantity == Lookup of Quantity (Entity2)
    Now from Entity3 I need to update the fields of Entity1 like I have field named Price which is not visible on the Entity3 Form  but when I access this field from javascript I m getting null exceptions since the field is not in the context of the Entity
    on which it is defined. How can I update the fields of the Parent Entity1 from child Entity3  and also update the quantity field on Entity2 which are not avialable on the Entity3 Form.
    Any help is appreciated
    Waiting for the reply..
    FayazSyed

    Hi,
    To do it in JS you need to use oData, as wrote above:
    to make this requests easer, i use a XrmSvcToolkit library (https://xrmsvctoolkit.codeplex.com/)
    Your code will be about this:
    /// <reference path="rtb_XrmSvcToolkit.js" />
    XrmSvcToolkit.retrieve({
    entityName: "Entity1",
    id: Xrm.Page.getAttribute("quantity").getValue()[0].id,
    select: ["my_FieldNeedToUpdate"], //Here are the name of your fields, which you want to select.
    expand: [""],
    async: false,
    successCallback: function (result) {
    FieldNeedToUpdate= result.my_FieldNeedToUpdate;
    errorCallback: function (error) {
    Error = error;
    FieldNeedToUpdate = FieldNeedToUpdate + 1; //Doing some work here
    var InputEntity =
    my_FieldNeedToUpdate: FieldNeedToUpdate //here are fields, witch you want to update
    XrmSvcToolkit.updateRecord({
    entityName: "Entity1",
    id: Xrm.Page.getAttribute("quantity").getValue()[0].id,
    entity: InputEntity ,
    async: false
    Here are more samples:
    https://xrmsvctoolkit.codeplex.com/SourceControl/latest#Samples/XrvSvcToolkit.Samples.updateRecord.js

  • Powershell script to update a field value (recursively) in sharepoint form a .CSV file and not changing the updated by value

    need to run through a list of old to new data (.csv) file and change them in a sharepoint list - can not make it work
    here is my base attempt.
    $web = Get-SPWeb site url
    $list = $web.lists["List Name"]
    $item = $list.items.getitembyid(select from the items.csv old)
    $modifiedBy = $item["Editor"]
    #Editor is the internal name of the Modified By column
    $item["old"] = "new from the .csv file parsed by power sehll
    $ite.Syste,Update($false);
    $web.Dispose()

    Hi,
    According to your description, my understanding is that  you want to update SharePoint field value from a CSV file recursively.
    We can import CSV file using the Import-CSV –path command, then update the field value in the foreach loop.
    Here is a code snippet for your reference:
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    $csvVariable= Import-CSV -path "http://sp2010.contoso.com/finance/"
    # Destination site collection
    $WebURL = "http://sp2010.contoso.com/sites/Utility/"
    # Destination list name
    $listName = "Inventory"
    #Get the SPWeb object and save it to a variable
    $web = Get-SPWeb -identity $WebURL
    #Get the SPList object to retrieve the list
    $list = $web.Lists[$listName]
    #Get all items in this list and save them to a variable
    $items = $list.items
    #loop through csv file
    foreach($row in $csvVariable)
    #loop through SharePoint list
    foreach($item in $items)
    $item["ID #"]=$row."ID #"
    $item.Update()
    $web.Dispose()
    Here are some detailed articles for your reference:
    http://blogs.technet.com/b/stuffstevesays/archive/2013/06/07/populating-a-sharepoint-list-using-powershell.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/25125.sharepoint-2013-powershell-to-copy-or-update-list-items-across-sharepoint-sites-and-farms.aspx
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Change Reference field in MIRO document

    We are using invoice plan for posting of invoices. We want to update the reference field in the invoice document created by system once the original vendor invoice is received by the actual invoice no for tracking purpose.
    Is this possible?

    Hi,
    I think we can't change the reference field in invoice document.
    If you want we change the reference field in accounting document.
    For every vendor invoice system generates accounting document.
    We can view the accounting document in FB02 / FB03 . Reference field will be stored in header of the document. This field is not editable  field. If you want to change to editable field.
    Do following settings.
    Goto OB32 t.code. click on new entries.
    No need to enter account type.
    Feild name  --  BKPF-XBLNR.  activate the field  Field can be changed and save.
    Now goto FB02. Goto header, now reference field is in editable mode.
    Regards,
    Chandra

  • Check Number in Reference field

    Hello SAPians,
    There is a requirement from my client as below:
    Vendor payment is done by T - CODES  F-58  or FBZ4
    (POST & CHECK PRINT)
    When the "KZ" document is posted , the cheque no. should be captured in "Reference" field automatically.
    Now if you check "Reference" field is blank in case of "KZ" documents. (if available then that document is modified afterwards) This helps for Bank Reconciliation.
    We have applied some user exits for a field of Check number in FBL1N. Now they need the check number in the reference field automatically in FS10N and FBL3N.
    Please suggest.
    Jk

    hi,
    Define a Background job for program RFCHKU00 with daily run option.
    First create a selection screen varient for the above said program.
    Then define the job using that varient. (While creating varient choose target field as Reference.
    set the run time as end of the day time like 23.00hrs.
    So automatically your payment document will be updated automatically with check no in reference field.
    This info might help you out.
    Thanks,
    Srinu

  • Cheque No in reference field

    Hi All,
    I have many payment documents in which i have to assign the cheque no. to the reference field. How can i do it?
    Regards,
    Rup

    Hi
    Manual check or sap printout from sap? If it is manual check then update the payment document with check number using t-code FCH5 and if print from SAP then not required Now just GO TO FCHU and update the check number in payment document reference field, In FCHU just put the company code , bank code , bank id and tick on reference -execute and you problem will solve
    Best Of Luck
    Tanmoy

  • ERS --- Reference field

    Hi All...
    Question in ERS Invoice.
    I am Implementing ERS Process for our intercompany scenario. When the COmpany code A recieves the
    goods the ERS invoice is created based on the GR and the Reference Field in the Invoice is filled up with the Inbound Delivery Number. Can anyone say where is this config of copying Inbound Delviery Number into the ERS Invoice exist or its a std?? What are the other fields all can be updated in this field  using the
    std SAP config ?
    Regards
    Balaji

    If you receive the GR against the PO then PO number will be copied or if you enter the GR against the Delivery then Inbound delivery number will be copied.
    this is the std system...there is no config for this.
    This selection you do in the MRRL tcode where you select
    1        Document selection per vendor                         
    2        Document selection per purchase order                 
    3        Document selection per order item                     
    4        Document selection per delivery document/service entry

  • Reference field-xblnr

    Hi Friends,
    In FI, Invoice document is generated with doc type RV. When invoice is done for a service order the system is copying the “invoice number” in reference field[bkpf-xblnr] of the RV document. However, when invoice is done for a delivery related order the system is copying the “Purchase order number” in reference field[bkpf-xblnr] of the RV document.
    The requirement is that ‘Reference’ field should always get updated with the “invoice number”.
    How does Sap populate the ‘reference’ field. Why and how  is it picking up different values for different billing types?
    Is there any config in spro where we can mention which field has to be picked up in reference field?
    Is there any other oss note or exit in this regard?
    Thanks & Regards
    Ajay
    SAP Practice FI,CO

    Hi Ajay,
    Check the settings in VTFA thoroghly....based on billing type copy control will be set.
    That could be reason.
    Best Regards,
    Velumani

  • Automatic invoice reduction - MIRO XBLNR1 - Reference field

    Hello all,
    I've set up the automatic invoice reduction in MIRO due to errors in vendor invoice (with subsequent credit received in paper).
    In this process there are two FI documents (A1 for invoice and background A2 for reduction) regarding the original MM document.
    The user uses "refence" field in invoice header to relate to the vendors physical document but the field only goes into A1 (BKPF) document and not A2, event with this A2 being background document and in it's master this reference field being mandatory...
    How can I put the reference field in A2 as well?
    Regards.

    Hello,
    Procedure for posting the Invoice Reduction :
    (1) Enter the T.Code MIRO - Select the Transaction as Invoice only.
    (2) Give the reference number ( Example PO Number) for which you want to create an Invoice.
    (3) In the Display Variant, Select Invocie Reduction.
    (4) Maintain the required details and post the Invocie.
    Example: Invoice Reduction due to Quantity Variance:
    PO: 100 nos @ 10 EUR/No
    GR: 40 nos
    Invoice: 40 nos @ 12 EUR/No = 480 EUR
    When you enter Invoice,
    Order Qty Order Amount Invoiced Qty Invocied Amt
    40 400
    Select Reduce Invocie in the Display Variant.
    Enter the Quantity and Amount stated in the Invocie in the fields Invoice quantity acc. vendor and Invoice amount acc. vendor.
    Order Qty Order Amount Invoiced Qty Invocied Amt
    40 400 40 480
    When you post the Invocie, Purchase order history will be updated as follows:
    Quantity Value
    Total Delivered 40 400
    Total Invoiced 40 400
    Accounting Documents:
    GR:
    Stock Account = 400
    GR/IR Clearing Account = 400(-)
    Invoice:
    Vendor Account = 480(-)
    GR/IR Clearing Account = 400(-)
    Invoice Reduction Clearing Account = 80(+)
    Automatic Credit Memo:
    Vendor Account = 80(+)
    Invoice Reduction Clearing Account = 80(-)
    Regards
    Mahesh Naik.

Maybe you are looking for

  • Ipod no longer updating songs :(

    I have not had any previous problems with my video ipod. Now, when i try to update new songs from my itunes onto it, it APPEARS to work and itunes states that it is copying the songs and updating my ipod, but when i unplug my ipod none of the new son

  • Repeating JList

    i having problem when press add button.. instate of adding a new list with the same element.. i want the quantity to become 2.. //listModel is the DefaultListModel if (e.getSource() == addBtn) {   //when press add button             for (int i = 0; i

  • Getting Data from 2 different table and saving it in the third table

    Hi, My question is i have 2 different table where the data is stored. And Nothing is at Level0 and i don't need it. Table A will be at Level1, this is a scroll and depending on this value the level2 grid will be populated with the values. Say for exa

  • How to display CPU temp in taffybar?

    I am using xmonad with taffybar. Recently I found out that I can find out the CPU temperature from taffybar like this: import System.Information.CPU2 cpuTemp = getCPUTemp ["cpu0"] However, I cannot find out a widget to display this quantity. Do someo

  • Problem with newly installed JDK1.3.1

    hello people, I have just installed JDK1.3.1_01 version. My O/S is Windows 98 /Nt compatible. Somehow the permanent path setting instruction of Windows ME worked for me,have succesfully set the path at autoexec.bat file. I have written my source code