Alternative Reconcialtion account while doig the MIRO

Hi All,
One of the cleint required alternative Reconcialtion accoutn while doign the MIRO. Scenario like this there is one Vendor 'A' used supplies Raw material and Serives to company. Business is not intrested to create new vendor. But they needs different reco accounts for one vendor master.
I did mentioned customization in SPRO :-
1. Maintain the Alternative Reco accounts
2. Select the ready for input check box of Recon accounts.
But still system is not accepting to change reco account while doing the MIRO. Change happens while doign the FB60
Rgds
SumaMani

HI sumamani,
As you are aware that it is not possible to change the reconciliation
account in MIRO.In transaction FB60, it is possible to change the field
value. SAP give us only the permitted account maintained in the
customizing table THKON.
In MM, the accounts are automatically determined from the
customizing in transaction OMWB, or taken from the purchase order
account assignment data.You can also have a quick look in tr OMRMB,
you will notice that field INVFO-HKONT is not there to be customized.
There is no solution available within the SAP standard system for the
change of the reconciliation account for the vendor.
According to the information I got from the responsible development
department I can only inform you that the required functionality will
not be implemented in SAP standard for MM invoice verification.
Field in question is hard coded and can not be changed.
MM invoice verification was developed to finish the external procurement
process in logistics and check the invoice data sent by the vendors for
correctness (differences) and to post the corresponding accounting
document in FI additional.
Creating manually creditor invoices in FI have no relation to a logistic
process.
Therefore not all functions included in FI (FB60) are included in MM
invoice verification (MIRO) as well.
reg
Madhu M

Similar Messages

  • Changing the G/L Account while Posting the Goods Receipts in MIGO

    Hi All,
    I have requirement in which G/L Account needs to be changed based on some validation while Posting the Goods Receipt in MIGO.
    I have created exit in OBBH by copying the standard SAP Program RGGBS800 in view V_T80D.
    I changed following entry in view V_T80D:
    GBLS     ZGGBS800     Val/sub:Exits for substitution
    Now Inside program ZGGBS800, I have written the logic to change the BSEG-HKONT value with the new G/L Account which gets called inside the standard function module G_VSR_SUBSTITUTION_CALL.
    FORM U999.
       DATA : V_HKONT TYPE BSEG-HKONT.
       clear : V_HKONT.
       SELECT SINGLE SAKNR FROM ZMASH1 INTO V_HKONT WHERE MATNR = BSEG-MATNR AND WERKS = BSEG-WERKS.
         IF SY-SUBRC EQ 0.
           BSEG-HKONT = V_HKONT.
         ENDIF.
    ENDFORM.
    After the execution of the above code the value of BSEG-HKONT changes with new value of V_HKONT but after this when I go further in Standard SAP code of function module G_VSR_SUBSTITUTION_CALL, there is one subroutine FORM EXP_TAB_009_BSEG  being called which changes the value of BSEG-HKONT to initial value of HKONT also while moving the data from BSEG to TEMP_STRUCT it doesn't passes the HKONT value, which I want it be passed as I want the changed value to be passed finally to OUT_RESULT. Please look at the code below.
    Following is the SAP standard code of subroutione FORM EXP_TAB_009_BSEG :
    FORM EXP_TAB_009_BSEG
             USING
               IN_ORIG STRUCTURE        BSEG
            CHANGING
               OUT_RESULT STRUCTURE     BSEG
               B_RESULT.
      DATA:  ORIG LIKE BSEG.
      DATA:  BEGIN OF TEMP_STRUCT,
             ABPER                          LIKE   BSEG-ABPER,
             AUGGJ                          LIKE   BSEG-AUGGJ,
             DOCLN                          LIKE   BSEG-DOCLN,
             FIPOS                          LIKE   BSEG-FIPOS,
             FISTL                          LIKE   BSEG-FISTL,
             FKBER                          LIKE   BSEG-FKBER,
             FKBER_LONG                     LIKE   BSEG-FKBER_LONG,
             GEBER                          LIKE   BSEG-GEBER,
             GMVKZ                          LIKE   BSEG-GMVKZ,
             GRANT_NBR                      LIKE   BSEG-GRANT_NBR,
             HKTID                          LIKE   BSEG-HKTID,
             HZUON                          LIKE   BSEG-HZUON,
             INTRENO                        LIKE   BSEG-INTRENO,
             MEASURE                        LIKE   BSEG-MEASURE,
             PARGB                          LIKE   BSEG-PARGB,
             PPA_EX_IND                     LIKE   BSEG-PPA_EX_IND,
             PPRCT                          LIKE   BSEG-PPRCT,
             PRCTR                          LIKE   BSEG-PRCTR,
             PRODPER                        LIKE   BSEG-PRODPER,
             PRZNR                          LIKE   BSEG-PRZNR,
             PSEGMENT                       LIKE   BSEG-PSEGMENT,
             SAMNR                          LIKE   BSEG-SAMNR,
             SCTAX                          LIKE   BSEG-SCTAX,
             SEGMENT                        LIKE   BSEG-SEGMENT,
             SGTXT                          LIKE   BSEG-SGTXT,
             SRTYPE                         LIKE   BSEG-SRTYPE,
             UZAWE                          LIKE   BSEG-UZAWE,
             XREF1                          LIKE   BSEG-XREF1,
             XREF2                          LIKE   BSEG-XREF2,
             XREF3                          LIKE   BSEG-XREF3,
             ZUONR                          LIKE   BSEG-ZUONR,
             ZZBUSPARTN                     LIKE   BSEG-ZZBUSPARTN,
             ZZCHAN                         LIKE   BSEG-ZZCHAN,
             ZZLOB                          LIKE   BSEG-ZZLOB,
             ZZLOCA                         LIKE   BSEG-ZZLOCA,
             ZZPRODUCT                      LIKE   BSEG-ZZPRODUCT,
             ZZREGION                       LIKE   BSEG-ZZREGION,
             ZZSPREG                        LIKE   BSEG-ZZSPREG,
             ZZSTATE                        LIKE   BSEG-ZZSTATE,
             ZZUSERFLD1                     LIKE   BSEG-ZZUSERFLD1,
             ZZUSERFLD2                     LIKE   BSEG-ZZUSERFLD2,
             ZZUSERFLD3                     LIKE   BSEG-ZZUSERFLD3,
             END OF TEMP_STRUCT.
      IF IN_ORIG = BSEG .
        B_RESULT = B_FALSE.
        OUT_RESULT = IN_ORIG.
        EXIT.
      ENDIF.
      MOVE-CORRESPONDING BSEG TO TEMP_STRUCT.
      OUT_RESULT = IN_ORIG.
      MOVE-CORRESPONDING TEMP_STRUCT TO OUT_RESULT.
      IF IN_ORIG = OUT_RESULT .
        B_RESULT = B_FALSE.
      ELSE.
        B_RESULT = B_TRUE.
      ENDIF.
      BSEG = OUT_RESULT.
    ENDFORM.                               " EXP_TAB_009_BSEG
    I need the value of BSEG-HKONT should be passed to OUT_RESULT-HKONT.
    I am not able to find any userexit or BADI for this.
    Please guide me on this.
    Thanks,
    Chandravadan
    Edited by: Chandravadan Jaiswal on May 8, 2009 2:18 PM
    Edited by: Chandravadan Jaiswal on May 8, 2009 3:45 PM

    Hi
    I also need to change hkont while posting MIGO and MIRO transaction..
    Any suggestion for this?
    Here's my problem.. Substitution of account(HKONT) when posting in MIGO/MIRO

  • Spliting accounts while running the "Create Intercompany AP Invoices"

    Hi Guys,
    Need Urgent help if this customization is possible.
    While creating AP invoice(Intercompany), we want to spllit the account of a line into two,
    one for the original account and another for IP(Intellectual property), the ratio of splliting will be taken care.
    But I want two know if spliting into two accounts is possible even before inserting into inerface table.
    If possible please let me know how.
    Please guys need your help.
    Thanks Girish.

    Hi Girish
    If you want split the line during creation of IC AP Invoice, you need to customize the IC AP COGS workflow to accomodate the business requirement
    Thanks
    Krishna

  • How do i delete my credit card information from my account while keeping the account ?

    I want to delete my credit card information from my APPLE ID but there is no NONE button, how do i do this ?!?!?

    Hi Jill1963,
    Welcome to the Support Communities!  The article below will help you change your iTunes Store account billing information:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    Cheers,
    - Judy

  • Call transaction FB70 while posting the MIRO DOcument

    Dear All,
    My Requirement is , When ever the user posts a MIRO document for a particular PO document type, then automatically a customer invoice(FB70) has to posted automatically in the back end.
    If there any BAdi or user-exits are there for the above requirement, please tell me.
    Thanks In Advance.

    Thanks for your reply
    yah....i have seen in PO in that  VAT is V0 0% tax but if i went seen in withholding tax  there is no amount in the withholding tax  filed
    Can please suggestion on the same
    Reagrds
    vamsi

  • Alternative reconciliation account in MIRO

    We defined alternative reconciliation accounts in FI and in the FI transactions we can overwrite the normal reconciliation account with the defined alternative rec. account (also using the short key).
    Now we would like to use this feature also from out MIRO, but the field is not open.
    Is it possibe to open the reconciliation account for the vendor in transaction MIRO?

    Hi Kuntal,
    you can define per reconciliation account 1 - n alternative reconciliation accounts.
    (SPRO: Financial Accounting (New) - Accounts Receivable and Accounts Payable - Business Transactions - Postings with Alternative Reconciliation Account - Define Alternative Reconciliation Accounts.)
    Only those defined accounts can be used for customers / vendors with this default rec.account.
    The master data of all reconciliation accounts must be similiar and marked  in field
    KNB1-XMITK for "Reconcil.acct ready for input" (FS00 Create/Bank/Interest), both the default and the alternative rec.accounts.
    There is no programming to do.
    Coming from SD there is a special menu in customizing to assign alternative
    rec.accounts:
    Sales and Distribution - Basic Functions - Account Assignment/Costing - Reconciliation Account Determination
    Prerequisite is the FI definition as described above for FI.
    Then you have to define a determination procedure ex. KOFIAB with a account determination ex. KOAB.
    The procedure has to be assigned to the billing types you want to work on.
    Further you need a decision table and rules to assign finally the reconciliation accounts for the determination (KOAB) and the rules given.
    Hope I could help you.
    Kind regards,
    Theresia

  • Can anyone explain the usage of alternative reconciliation account?

    I maintained the relationship between G/L reconciliation ccount and Alternative reconciliation account. But I failed to find where I can pick the alternative reconciliation account when I posted a AP document. Can anyone tell me the usage of alternative reconciliation account? Thank you.

    Hi,
    The alternative reconciliation account is used when you want to seperate certain kind of transactions from other transactions and then clear them out.
    example: Down payments - Some Vendors require down payments in advance. This payment is made and posted to a seperate special recon account. When the normal invoice is presented, it is booked to the normal recon account. Before payment of Invoice, the Down payment is cleared against the Invoice and only the balance remaining is paid to the Vendor.
    In T-code OBYR, you can maintain the relationship between various Gl and Special GL .i.e. alternative recon accounts. The assignment is made for different types of transaction using different special G/L indicators.example : Down payment (general) , Down payment (assets) etc.
    You can post to the special G/L (alternative recon account) by using the special G/L indicator during Vendor posting. Eg. in FB60 you have a field for SPL G/L indicator. Depending on the indicator chosen during posting, the System will post to the corresponding Special G/L account(alternative recon account).
    Hope this helps.
    Regards,
    Uma Toraskar

  • Change of Reconclation Account while simulation of accouting doc in MIRO

    Hello ,
    Can we change the Recon account while simulating the accounting doc of vendors invoice?
    Can we make that G\L Account as open field for only Account type "K"? Is there any User exit available?
    Thanx in Advance.
    Regards,
    Kumar

    Hi
    I am not sure why you want to change that, but using MM user exxits you cannot do that.
    You can check with Finance user exits, not sure if they work.
    Please consult your finance team before going forward with such developemnts
    If you find any thing can you please forward me that.
    Thanks and Regards
    Kishore

  • How can I enable Active Directory network login while maintaining the existing local user account data?

    We have a user base of around 15 Macs that we would like to integrate into Active Directory. However, we need to maintain the existing users local account data but do not wish to have that data moved to the network. Is there an easy way to create the AD login and then move the existing account data to the new login while maintaining correct permissions?
    I've had some success logging in as root and deleting the existing account, while maintaining the home folder. Then renaming it to match the AD login account name and replacing the new and empty AD user home.  I then perform a CHOWN on that folder to give ownership to the AD account name.
    Is it this simple? I don't want to leave any loose ends.
    Thanks for any help you can provide,
    Scott

    JamesSTJ wrote:
    Oh, found it!
    And guess what? Apple wanted to charge me a one time fee of $600 to answer that question.
    It worked! thanks!
    I guess I'm cheap

  • No Alternative reconilication account is found

    Hi All
    While doing MIRO, i am getting the error message as 'No Alternative reconciliation account is found' Message no. /SAPNEA/J_SC802.
    I have mainatined the Recon A/c number in the vendor master. Fot this Reco account i have also mainatined alternate reco account in IMG under - FI - AP - BT - Postings with alternative reconciliation account.
    Both the reco accounts are also ticked ' Recon account Ready for Input'
    Could someone help me as to why i am getting this error
    Thanks & regards
    Pooja

    Hi,
    Check setting in TCode OBXT.
    Warm Regards

  • TS4002 Issue for families:  How do I create separate iCloud accounts while retaining a joint iTunes account?

    My family has previously used the same iTunes account.  Now that we all have apple devices, the iCloud feature is mixing our contacts, calendars and messages.  How do I set up individual iCloud accounts while retaining the current joint iTunes account (so that I can manage the payments for iTunes purchases)?  I cannot figure out how to change the current iCloud account (which is the Apple ID I have used for iTunes for years) on either my Mac or my iPhone.  It seems that once you have set your iCloud account, you cannot change it.  Any advice out there?

    No: @icloud.com is an Apple email address. To create a new Apple ID you need to start with an address other than @icloud.com, from any other service. Then you go to http://appleid.apple.com and follow the procedure to create a new ID: then you can sign into System Preferences or Settings>iCloud with it. When you enable Mail in the checklist you will be asked to create a new @icloud.com address. You can't transfer an @icloud.com address from one account to another.

  • I am not able to post the MIRO Document with reference of PO

    Hello friends
    My user while posting the MIRO document TDS (service tax ) amount not appering in the MIRO screen
    But last month it was working fine.
    before that i have checked out  vendor master in that they given tax code properly.
    can any body please give me suggestion on the same
    Regards
    vamsi
    Edited by: asuvamsi on Mar 2, 2010 4:53 PM

    Hello friends
    Thanks For all my problem was resloved
    Solution is
    An message has been occuring like withhold tax has been refreshed.  it is just an information message not an error message.  this message will trigger when the trans. type is non project type activity.  No back end process has been disturbed due to this message. it just passing the information to the user.
    we changed the trans. type to manufacturing activity and it is working fine.
    I hope it ll help in future
    Thanks and Regards
    vamsi

  • Vendor Downpayment with Alternative Recon Account

    Dear All,
    Could we change the recon account while doing the down payments vendor/customer.
    Is there any why please replay me.
    Regards

    Hi,
    Make the necessary configuration in the Tcode FBKP - Special GL indicator- Vendor Downpayment.
    You have to maintain the Alternate GL account against the Normal Vendor Reconciliation Account.
    When u insert this Special GL while making vendor downpayment, the system will pick the Alternate Recon account maintained against Reconciliation of the Vendor Master in the Tcode FBKP.

  • Required to change the Baseline Date in the MIRO Invocie Document

    Dear Friends,
    According to the Payment Terms, while doing the MIRO, the Baseline Date getting populated corresponds to the Document Date. However, the users need to replace the same with the GR Date. Is there a way to check for the GR date or the Delivery Date from the Invoice Verification screen layout?. In view of high volumes, the users do not want to go for another step of scrutinizing the PO History to know the GR date and instead desire to find the same from the Invoice Verification step itself. Is there a way to do this?
    Thanks for the help.
    Regards

    Hi,
    You need to use substitution with exit (GGB1/ OBBH) to populate the GR date in the baseline date field.
    Also go through the below thread:-
    [Re: Substitution - Baseline Date to be replaced by the Goods Receipt date;
    Regards,
    SDNer

  • Alternative Reconciliation Account for Customers

    Dear all,
    I have to define Alternative Reconciliation Account for Customers but I don't understood relationship between Reconciliation Account for Customers and Special GL account.
    Please give a detail example about business scenanio that use these account.
    Thanks so much
    Minhtb

    Hi,
    Normally a ledger of any party will have two balances
    - Normal balances-
    - Balances with Special GL Postings
    Items like Down Payment request, Down Payments, Security Deposits etc.,  are treated as special GL Postings for ease of understandability.
    However a link has to be maintained between recon accounts (for the party) and the SP GL Indicator.
    Hence we assign an alternative recon account also for the main recon account for sp GL postings
    Cheers
    Points Please!

Maybe you are looking for

  • Audio Speed (2)

    I posted this question earlier but unfortunately there's been no resolution. I was hoping someone might be able to help. I have a project in Final Cut 5 where I'm splicing together a few MP3 files, making subclips, etc. - all with no video at all. My

  • Business Object Model Design

    Hello Evryone, I'm designing a new application for Incident Management. There is an existing Incident System But, our application is targeted to end user facility. So, we have to use the existing Incident Management system to store and get data, so t

  • DV NTSD drop-frame vs. non-drop-frame??

    My impression has always been that DV NTSC is non-drop frame. I'm having to capture a 100 hours of DV tapes from a Sony WV-DR7 deck. FCP capture is giving me this warning: "You are about to capture Non-Drop Frame media from a device currently detecti

  • Need to determine end of video.

    I need to know how to tell when I've reached the end of video.  I seem to recall there's a command new to flash 10 that will let you know without having to track the total bytes used or time elapsed or anything complicated like that.  Does anyone kno

  • Using external reference png files

    Hello everyone! I've been requested to create a flash project in which all images are external references. Images (mostly png) are created and can be modified anytime by artists, fla files and actionscript are created by developers. When opening a fl