KR Reference Field coming from Earmarked Fund

Hi Experts,
We have distributed our data entry of non PO related invoices out to end users.  They data enter and park the invoice.  Then Central AP uses their workflow inbox (SBWP) to view and "approve" the document to post it.
This works great EXCEPT when the invoice is charged to an Earmarked Fund (specifially a funds commitment), AP gets an error that "For document type KR, an entry is required on field Reference number"  XBLNR is filled in with the Vendor's invoice number on the parked document, but we are told by SAP, that it is our config that is causing the issue.
On the funds commitment (fmz3), we can view that on the Header of the commitment that we have always left the field REFERENCE blank.   We did configure under Earmarked Funds and Funds Transfers\Define Rules for account assignment, that the Reference Document Number is Active, but this allows us to fill in field REFBN in other areas for reporting. 
When we just post an invoice FB60, we've never had a problem with the funds commitment's REFERENCE field conflicting with the Invoice's Reference field.  When I do enter something on the REFERENCE field of the funds commitment, it OVERWRITES what the invoice had in the reference field when we do the Park then POST using workflow (uses FBV0 funcitonality).  It does not overwrite it though when I just post using FB60 or FV60. 
SAP has stated that they intentially designed their programs differently which is why they behave differently.
So does anyone have any suggestions on how to get the parked document to post BUT to keep the Vendor's Invoice number in the Reference field? Instead of it being overwritten from the Funds Commitment?
Would appreciate your guidance,
Cindy

Hi,
I think your FM analyst got the direction wrong. System will always populate REFBN field in table FMIOI with PO# or other source document number. The configuration you mentioned controls whether you want the system to transfer the value of REFBN to a follow-on document with reference to an earmarked fund - the direction is from FM to FI. For example, when you create an earmarked fund 1234, you will see an entry in table FMIOI with field REFBN populated with 1234; this has nothing to do with the configuration in defining rules for account assignment transfer in earmarked fund. Then, you create an invoice with reference to earmarked fund 1234; this time, system will transfer the values of the fields in document 1234 to the invoice according to the said configuration.
Regards,
Ming

Similar Messages

  • Consuming document with different account assignment from Earmarked Funds

    Hi,
    We have implemented Public Sector FM functionality in version ECC 6.0 and we are using Earmarked Funds (Funds Reservation).
    The system is allowing to post consuming documents with different account assignment from that in the
    Funds reservation document nevertheless we donu2019t have set the indicator 'Acct.asst.changeable' in the Funds Reservation document.
    I don't need the fields Fund Center and Commitment Item to be transfered from earmarked funds document (Define Rules for Account Assignment Transfer). Instead, if consuming document have a different account assignment, the user should get the error message no. RE603 'Account assignment differs from document XX 001'.
    In version 4.6C it worked this way. In our case the Fund Center is delivered from Cost Center and Commitment Item is delivered from Cost Element (SAP - Derivation Strategy for FM Object Assignment).
    I hope someone can help me.
    Thanks in advance,
    Rodrigo

    Hi,
    You get the error message RE603 when you make the settings below:
    1. Spro > ... > Earmarked funds and funds transfer > Account assignment transfer > Define rules for account assignment transfer; you flag the 'Active' boxes for account assignment (sort of conterintuitive).
    2. Spro > ... > Earmarked funds and funds transfer > Change message control; change RE603 to 'E'.
    3. In Earmarked fund document, flag the 'Acct.asst. changeable' box (totally conterintuitive).
    Please give it a try and let us know the outcome.
    Regards,
    Ming

  • Reference Field(s) from Foreign Key

    Hello,
    I have a trigger that calls a procedure. I am sending an email based only on INSERTS on TABLE_B. I want to include the FIRST_NAME and LAST_NAME from TABLE_A based on 'SEQ_NO'. TABLE_B has 'FK_SEQ_NO' that references TABLE_A 'SEQ_NO'. Once I get the SEQ_NO from TABLE_A I want to get the FIRST_NAME and LAST_NAME to associate it with TABLE B with my logic. I am not sure on how to do this, any help is appreciated; thanks. If needed I can include my trigger but, would rather the logic in the procedure if possible.
    CREATE OR REPLACE procedure p_email_detail_from_trigger(
       pa_new_fk_seq_no                          varchar2,
       pa_new_item_one                           varchar2,   
       pa_new_item_two                           varchar2
        as
             v_message      varchar2(4000);
           begin
             --build email message
            v_message :=  'The following detail has been added for: ';
            v_message  := v_message || CHR(10)||CHR(13)||CHR(10)||CHR(13)
                                    || '*** FK Seq No: ' 
                                    || pa_new_fk_seq_no
                                    || CHR(10)||CHR(13)
                                    || '*** Item One: '
                                    || pa_new_item_one
                                    || CHR(10)||CHR(13)
                                    || '*** Item Two: '
                                    || pa_new_item_two
                                    || '';
      -- create email
      test_utility.p_update_email_table
      (v_message,'EMAIL_TRIGGER','TEST_EMAIL');
      -- send email
      test_utility.p_sendmail
      ('EMAIL_TRIGGER','TEST_EMAIL');
    end p_email_detail_from_trigger;
    /

    Hi Charles,
    I've added a function one_a to your procedure. I have written it such a way that it should easily be moved into a package. Which you should really do; move your procedure and the new fnction into a package. Don't use stand alone stored procedures, they will become a night mare one day.
    CREATE OR REPLACE procedure p_email_detail_from_trigger(
       pa_new_fk_seq_no                          varchar2,
       pa_new_item_one                           varchar2,   
       pa_new_item_two                           varchar2
    as
             v_message      varchar2(4000);
             a              table_a%rowtype;
             function one_a(p_seq_no  in  varchar2)
             return table_a%rowtype
             is
                one_rec table_a%rowtype;
             begin
                select table_a.*
                  into one_rec
                  from table_a
                 where table_a.seq_no = p_seq_no;
                return one_rec;
             end one_a;
    begin
            -- get record from table_a
            a := one_a(pa_new_fk_seq_no);
            -- Now FIRST_NAME can be found in a.FIRST_NAME
            --build email message
            v_message :=  'The following detail has been added for: ';
            v_message  := v_message || CHR(10)||CHR(13)||CHR(10)||CHR(13)
                                    || '*** FK Seq No: ' 
                                    || pa_new_fk_seq_no
                                    || CHR(10)||CHR(13)
                                    || '*** Item One: '
                                    || pa_new_item_one
                                    || CHR(10)||CHR(13)
                                    || '*** Item Two: '
                                    || pa_new_item_two
                                    || '';
      -- create email
      test_utility.p_update_email_table
      (v_message,'EMAIL_TRIGGER','TEST_EMAIL');
      -- send email
      test_utility.p_sendmail
      ('EMAIL_TRIGGER','TEST_EMAIL');
    end p_email_detail_from_trigger;
    /Note, not tested.
    Regards
    Peter

  • 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.

  • How to change the column value which is coming from DO by a calculated field?

    Hi all,
    I want to change a column value based on my calculated field value. I have a column which is coming from DO which is based on External Data Source. I have a calculated field in my report. When there is any change in the calculated field then the column which is coming from DO needs to be changed. It means the DO needs to get updated when there is a change in the calculated field. Or like if the calculated field meets some condition then I need to change/update the same in the DO. This has to be done on the fly. the report should not submitted for this. when there is a change in the calculated column the DO column needs to get updated.
    Thanks,
    Venky.

    Ok, I've been a customer for very many years, I'm on a fixed retirement
    income.  I need to reduce my bills, my contract ends in  Dec. I will be
    pursuing other options unless I can get some concessions from Verizon.  My
    future son-in-law was given this loyalty plan, so I know this is a
    reasonable request.  My phone number is (removed)  acct number
    (removed)
    >> Personal information removed to comply with the Verizon Wireless Terms of Service <<
    Edited by:  Verizon Moderator

  • Reference field from MIRO in PO History

    Hi,
    The reference field in MIRO has to be displayed in Purchase Order History. For PO's with GR Based IV the field is copied from GR and for PO's without GR based IV it is blank. We want the data from MIRO to be displayed in PO History in the reference field of IR.
    Thanks to provide the information regarding the settings for the same.
    Regards

    Link will help you.
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-mm/miro-couldnt-get-the-gr-number-for-reference-field-in-line-items-3975712

  • Entering value in a field of an invoice coming from R/3

    Hai,
             I have a problem here. I am working with data that was loaded long back. I found a discrepancy and I am working on it. As you know, an invoice has Financial document number and invoice number among many other fields. For original invoice there would be a Financial document number and the invoice number field is empty. For the clearing document, coming form R/3, there would be another Financial document number but the invoice number is nothing but the Financial document number of the original invoice. The BW system, as per the logic, now connects the Original and Clearing invoices.
           Now my problem is that, in ODS(the data was loded in ODS long back),the clearing document does have an invoice number as usual that is linking it to the original invoice. But the same clearing invoice doesnot have the invoice number field filled in when checked in R/3. I extracted the invoice pair to PSA only and then simulated the update and both the source and target records doesnot have an invoice number for the clearing document. The question thats killing me is how can the invoice loaded long back had an invoice number and how the field is empty when I extract it now?
    Can somebody please help.
    I appreciate any help.
    Thank you.
    I have an invoice coming from R/3. The invoice generally has a Financial document number and an invoice number fields among others. I extracted the invoice to PSA. I found that the invoice number field is empty. Is it possible to fill up just that field manually without

    Hi,
    Your issue looks quite strange. I believe you should give more information, for instance: which extractor are you using? FI_GL_3? 2LIS_13_VDITM?
    Is that a standard scenario? If it is, I suggest you to open a customer message and let SAP have a look.
    Otherwise, if field is not being filled but you know where to find it, you could probably overwrite it by programming the extraction...
    Hope it helps,
    David.

  • Earmarked funds during goods receipt (GR) is not inherited from PO.

    Hi, Everybody u2026
    We are using Earmarked Funds relevant for FM updating, but, during goods receipt (GR) and invoice receipt (IR) it is not inherited from purchase order (PO).
    In ME21N the account assignment is F and the system ask us to enter the GL Account, Order and additional the Earmarked Funds. The system is deriving correctly the fund, the funds center and the commitment item from those entered in the Earmarked Funds.
    However, during goods receipt and invoice receipt, the Earmarked Funds is not inherited from purchase order (PO) besides the others account assignments (order, fund, funds center and commitment item ) in the coding block.
    Best regards,
    Thanks

    Hello,
    I will provide some hints:
    - If it is a service PO, please check the Note 972276 (Service Purchase orders only).
    - If the posting is related to Asset, please kindly check:
        a. Note 684659
        b. Check if you have a derivation rule in FMDERIVE with the function module FMDT_READ_MD_ASSET.
        c. Check in your FI-AA customizing if you have activated the account
          assignment element but you have not specified an account assignment type for
          account assignment object for APC balance sheet postings (see note 684659 for
          details).
    I hope it helps
    Best Regards,
    Vanessa Barth.

  • Audio coming from only one field

    Hello,
    I just did a mic'ed interview with my little camera. I was wearing headphones and noticed audio coming from only the left side, but there was nothing I could do about it that I was aware of.
    Anyway, now that this thing is in Final Cut Express, is there anything I can do to apply the left track to the right track? Or would this make it sound funky or how does it work?
    Thanks very much,
    Jeremy

    Ah, I see. I just used 'Pan' and set it from -1 to 0. Cool.
    This can be deleted or left for reference, I don't care.

  • Populate customer reference field for credit memo from RMA order

    There is requirement to populate customer reference field  for credit memo generated for RMA order..
    In RMA order which filed i need to populate which will come as customer reference in credit memo.
    Please help me  to populate customer reference field from RMA orderes

    Hi Javier,
    Please check following site:
    http://help.sap.com/saphelp_crm60/helpdata/en/2e/b0da18dbe84ed9bdff9a5d6d91f531/frameset.htm
    Cheers,
    Gun.

  • Problem filling earmarked funds in FI invoice with BAPI_ACC_INVOICE_RECEIPT

    Hi everybody,
    I am facing a problem using the bapi BAPI_ACC_INVOICE_RECEIPT.
    My goal is to generate a FI invoice , it works fine.
    But I can't populate the field ( earmarked funds  as BSEG-KBLNR). The only BAPI parameter that take this field is purchaseorder-FUNDS_RES.
    Does anyone know a way to populate the field BSEG-KBLNR without any reference to a purchase order?
    If more information or details needed, please ask me.
    Rene

    I am not sure but check with below links
    BAPI_ACC_INVOICE_RECEIPT_POST
    BAPI_ACC_INVOICE_RECEIPT_POST
    reading of particular lines from appl. server

  • Earmarked Funds

    Hi Friends,
    My customer found error when post Earmarked Funds by multiple line.  The error message is "Express document 'Update was terminated' received from author 'XXXuserid'.  Tried to find out from SAP Note but nothing similar to this error.
    Please help with many thanks.
    Best regards,
    Kulsri K.

    Coming to update my question situation.  Eventhough, this question still not be answer but after one month (approximately) the system back to smooth running by itself.
    Anyway, if anyone has this solution in your hand, kindly please share to be an knowledge to others who has this issue in the future.  Would be appreciate.
    Rgds,
    Kulsri

  • FI/FM - Earmarked funds - Consumption History (and cash journal)

    Hello, I create accounting document (payment) in FBCJ and in FB01 transactions
    - Accounting document contains tax positions (Tax code + Calculate tax)
    - Accounting document contains a refer to Earmarked funds
    When I create accounting document in FBCJ (cash journal), there are two positions in Consumption History of Earmarked funds appear - one position with total amount and another position with tax amount. Theese two positions have inverse sings. (see pic.)
    When I create accounting document in FB01, only one position appears in Consumption History of Earmarked funds - with total amount. (see pic.)
    I need to know how I can create accounting documents in FBCJ and create only one position in Consumption History of Earmarked funds? Probably I need some customization..?
    [Documents - picture ...|http://belrealty.ru/_my/sap/pic_04.gif]
    Best regards, Nick.

    Solved.
    System creates reference to Earmarked funds In tax position of accounting document (in BSEG) when posting an accounting document from FBCJ. We create substitution in OBBH which delete this reference. The problem was solved.

  • MIGO not possible when posting with Earmarked Funds

    Hi,
    I am using Earmarked Funds to budget for Sales Promotion Expenses.
    Have set the  field KBLNR as mandatory for a few GL Accounts and have set it as optional Posting Key 81.
    I have created a Purchase Order with a Earmarked Fund. But when I am trying to do a MIGO for the PO I get the following error message "Field Doc. item is a required field for G/L account"Message no. F5808.
    The field Earmarked funds is hidden in MIGO transaction .
    Any clues on how I could bring this field in MIGO so that it can flow from the Purchase Order.
    Thanks and Regards.

    Hi,
    Thanks.
    I have changed the Field status and have made the field earmarked funds as mandatory through a FI validations for FI postings.
    I tried to check the field at the time of creating Purchase Orders and used Exit_SAPLFMCH_001.
    But this exit doesn't seem to work as the fields are getting cleared when the save button is hit and the Purchase Order gets saved with out the Earmarked Funds.
    Is there any other exit or work around I can make Earmarked Funds mandatory for certain Commitment Items at the time of creating Purchase Orders ?
    Regards.

  • How do I figure where is the data in a materialized view coming from

    Hi: when I run select NAME, OWNER from dba_mview_refresh_times, I see a number of materialized views. How do I find more details about this view i.e where is the data coming from and which fields. The source table that is in another database changed. But the view on my database where the materialized view exist has not changed. I want to confirm from where is data coming in this view
    TIA
    Ravi

    SQL>  select * from dict where table_name like 'ALL%MVIEW%'
    TABLE_NAME                     COMMENTS                                                             
    ALL_BASE_TABLE_MVIEWS          All materialized views with log(s) in the database that the user can s
                                   ee                                                                   
    ALL_MVIEWS                     All materialized views in the database                               
    ALL_MVIEW_AGGREGATES           Description of the materialized view aggregates accessible to the user
    ALL_MVIEW_ANALYSIS             Description of the materialized views accessible to the user         
    ALL_MVIEW_COMMENTS             Comments on materialized views accessible to the user                
    ALL_MVIEW_DETAIL_PARTITION     Freshness information of all PCT materialized views in the database  
    ALL_MVIEW_DETAIL_RELATIONS     Description of the materialized view detail tables accessible to the u
                                   ser                                                                  
    ALL_MVIEW_DETAIL_SUBPARTITION  Freshness information of all PCT materialized views in the database  
    ALL_MVIEW_JOINS                Description of a join between two columns in the                     
                                   WHERE clause of a materialized view accessible to the user           
    ALL_MVIEW_KEYS                 Description of the columns that appear in the GROUP BY               
                                   list of a materialized view accessible to the user                   
    ALL_MVIEW_LOGS                 All materialized view logs in the database that the user can see     
    ALL_MVIEW_REFRESH_TIMES        Materialized views and their last refresh times  for each master table
                                    that the user can look at                                           
    ALL_REGISTERED_MVIEWS          Remote materialized views of local tables that the user can see      
    13 rows selected.

Maybe you are looking for

  • I updated my iphone 4 to the 7.0 and now it will not ring or vibrate

    I recently updated my iphone 4 to the 7.0.2 version hoping that this problem would be fixed but it wasn't. When I updated to the 7.0 my phone no longer rights, lights up, or vibrates when I have an incomming call, text message, or notification. Howev

  • ISE 1.2 Sponsor Portal issue

    Hi we have an ISE version 1.2 installation and are trying to customise the Sponsor Portal login page to show the Terms and conditions for staff whan accessing the page, by using the display pre-loign banner under the sponsor portal themes settings. W

  • Matching Legacy Data with BI

    Hi, I need to bring in (historic data) two Key Figures from the legacy system: 1. Net Amount 2. Shipping Quantity The problem is that these fields are set up as Restrictive Key Figures on a query in BI (They are not directly in the cube as 1 to 1 ) F

  • Question to recruitment/Appl. master data u2013 PB40.

    Hi, I have a question to recruitment/Appl. master data u2013 PB40. Maybe someone can help? I have created an own candidate action similar to the SAP action u201CInitial entry of basic data.u201D The Customizing of the new action is the same like that

  • Item on form regions title line??

    hi again, seems as if this day is my day of questions :-) I have a simple HTML-based form region on my page. how is it possible to display an item (i just need a bit of conditional text there, so my item of choice is the "display as"-item) among the