Splitting account while posting GR

Hi,
This is the current situation ,
when materials are received, the Material Price Variance (MPV) is getting impacted due to branch / Storage location being in Taxable state. The MPV impact is effecting at a Corporate level, which is the profit center designated on the material.
system needs to determine each storage location as a taxable and non-taxable location. During Goods receipt of any material, the tax amount of MPV needs to be posted to a specified G/L account
We are having Ztable from which program can look up for storage loc, and  a tax indicator.
Is any one has done splitting of MPV account while posting GR, which is nothing but Transaction - PRD- Price difference.
I am trying to figure out the exit .
Any info will be appreciated..
Thanks,
Satheesh.

Hi,
Top make clear about requirement as per Dipak request.
we have storage locations all over US under plant X
There are few states who don't collect tax( I guess you must be knowing.)
While creating PO.
Users know if it is taxable/ non taxable state.
Depending on that they give the Taxcode.
01- taxable
02 - Non taxable
Lets us say  material price is  $ 100 for EA
if given 01 in PO it is 100 + tax ; say $ 105
if given 02 in PO it is 100 + 0 ; say $ 100
now when i am making GR , this $ 5 is being posted to PRD  account ; which is so called Price difference in SAP terms.
In reality its not price difference , its a TAX.
So now i want this $ 5 to move separate account.
its possible only by splitting PRD account ( i believe) ,
any suggestions/ solutions are welcome.
Thank you guys
Satheesh.

Similar Messages

  • Document Splitting problem while posting asset acquisition using F-90

    Hi,
    We are using ECC 6.0 with document splitting functionality and are facing problem while posting asset acquisition using F-90.
    The transaction entry details are as below:
    Document Type - KR
    Vendor Line Item PKey - 31
    Amount - 10000
    Asset Line Item with PKey - 70, Transaction Type - 100
    Amount - 10000
    The Document Splitting Rule - 0000000012 is used and the Field Status Group for the Vendor Reconciliation Account and Asset Reconciliation account have Cost Center, Profit Center and Segment as "Optional" field.
    The Balance Sheet Item - Asset Reconciliation Account has been created as
    Secondary Cost Element - 90.
    The Profit Center and Segment field have been made mandatory and zero balancing is also set in the settings for Document Splitting.
    While posting asset acquisition using F-90, we are getting the error message - "Balancing Field "Profit Center" in line item 001 not filled"
    The first line refers to the Vendor Line item.
    Please let me know how to overcome this error.
    Regards,
    Ramanand

    Please follow the below path and do config :-
    IMG>FA>Asset Accounting>Integration with the General Ledger>Additional Account Assignment Objects>Specify Account Assignment Types for Account Assignment Objects
    here you have to put KOSTL (Cost center) for both against APC and Dep run for each Dep area.
    Thanks
    Pyare

  • Document splitting issue while posting MIRO transaction

    Hello All
    I have a piculiar  related to document splitting while posting MIRO entry and this issue started after defaulting the profit center
    to the tax gl.
    The scenario is like this
    While posting a vendor invoice document where there is a difference in the invoice value and stock is allready consumedn
    hence system will try to post the difference to the material difference account.
    The following is the asccounting entries
    01 vendor a/c  cr   1000
    02 gr/ir a/c  dr         800       pc from po document
    03 tax g/l                 180       default pc
    04 inventory diff       20  
    the error message
    system is not able to determine the profit center at  line item 04 and message is
    Balancing field "Profit Center" in line item 004 not filled
    The document splitting settings are all standards related to vendor invoice ..................
    One important point to be noted here is that this issue is come after defaulting the profit center at tax gl.
    But we cannot remove those default pc also.
    Can be their any solution on this
    Kindly suggest
    Thanks

    Hi
    In addition to my previous mail i want to add that
    i tried to add even expense item category to splitting rule of business transaction and transaction variant.
    Even then it doers not work.
    other then is as per standard document splitting rule the expense item category is not included in invoice verication buisness transaction.
    Thanks
    alok

  • Error 'Enter GL Account' while posting and invoice line item in MIRO

    Hello Gurus,
    I am facing a rather wierd issue.
    While posting a PO invoice in Tcode MIRO, its asking to enter the GL account in line items. Everytime I am entering the GL account and pressing the enter key, it wipes off the GL account clean and gives the same error 'Enter GL account'.
    It seems like this error is happening at the very first line item of the invoice. System is able to accept the GL account in 2,3,4th lines. If I delete the first line item, whatever is the first line item in that screen adapts the issue.
    Any help would be great as I have no clue what to do.
    Thanks

    Hello Priyadarshini,
    could you inform the error message number and it complete long text?
    Regards,
    Mateus Grings

  • G/l account while posting stock

    hi guru's
    my problem is while posting the stock in mb1c i am getting
    G/L account 799999 doesnot exit in the company code 1978
    i have copied the co code 1978 from standard co code 1000
    chart of account INT.
    where as chart of account INT (material management )
                             this g/l account 799999 not appeared
    in tcode fs00 ( in company code 1000) G/L account 799999 not appeared
        while creating throughn create icon
      it shows 799999 g/l account already exist but it is not appearing in char of account INT
    i want get back the G/L account back again in the company code 1000
    please slove this problem
    with regards
    srikanth

    Hi Rupa,
    Goto Administration->Setup->Fianacials->G/L determination->Inventory Tab and check in "Negative Inventory Adj. Acct" you mapped GL or not. Also check same in Item Group setup accounting tab and warehouse setup accounting tab.
    Regards,
    Sachin

  • 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

  • Cost center not appearing for G/L (Balance account) while posting

    I have created symbolic account 1300, accrued leave pay with account assign type as F.
    I hvae assigned the relevant G/L to this symbolic account under 'assign balance sheet accounts'
    However while posting, the relevant cost center assignment is not captured next to the G/L account.
    The cost center is correctly maintained in IT0001 and is displayed for the other expense accounts. But is missing for all balance G/L accounts.
    Please guide
    Ally

    Hi Ally,
    I have similar requirement, can you please let me know what did you changed in the Posting Variant.
    Your help is much appreciated, and rewrded. Waiting for your reply.
    Thanks,
    Janga K.

  • Co object assignment to a non-leading ledger account while posting

    Hi,
    while I m trying to post a document for non-leading ledger account which is opened as a cost element. for leading ledger it has to be filled by cost objects but in non-leading ledger is it a must ? In my opinion in non-leading ledger postings doesnt need to have cost objects because in CO it contains only leading ledger. am I wrong ?

    Dear Gizem,
    Refer note
    804753  - FlexGL: Data transfer to CO from parallel ledger
    regards
    Waman

  • Asking Special Reserve account while posting ASKB program

    Hi All,
    Can any one help me how to resolve the error message.
    I have created assets in Leading & Local Ledger with different APC values.
    When i am trying to post the ASKB ecountering an error stating that "Account 'Special reserves balance' could not be found for area 34".
    Diagnosis
    When creating the accounting document, the system could not find account 'Special reserves balance' in depreciation area 34 for company code 3575.
    I have udpated the Dummy GL account and try to post the ASKB but still i got the same error.
    Balaji

    Please read the question thoroughly, answer has been given in the question.
    Please check whether your account determination for special reserve is missing in AO90 transaction code.

  • Error while posting to accounts

    hii friends following error occured while posting excise to accounts.
    plsease help me solving this
    thanks in advance
    No account is specified in item 0000001003
    Message no. F5670
    Diagnosis
    No account was specified for account type "S" in item "0000001003" of the FI/CO document.
    System Response
    The Financial Accounting program cannot process the document.
    Procedure
    A system error has probably occurred in the application you called up. Check the data transferred to item "0000001003" of the FI/CO document

    If Excise Condition Type are configured as -
    1. <b>Discounts & Surchage</b>: In that case, the G/L account determination configuration is to be maintained in T.Code: VKOA. Normally Excise Duty flow to same G/L accounts, so in that case it can be based on Accounts Key as Key Combuntion. But if we want it to trigger to Different G.L account based on Customer & / or Material, we van select the appropriate combination.
    2. <b>Taxes</b>: If it is configured as Taxes, in that case the Account Key (Transaction Key) required to be added in the list in T.Code: OBCN, if not avilable there. Next Account Assignment configuration requires to be done in T.Code: OB40.
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).
    <b>Refer the Problem to FI Consultant</b>.
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).

  • Error 'Specify account number' while posting a parked document through FBV0

    Hi,
    I am getting an error 'Specify account number' while posting a parked document through transaction FBV0.
    I am not able to figure it out as to what account number it is referring to. Since the document is parked I assume the GL account used has no problem. Please help.

    Hi,
    Try to change the Account number and then save or post the data. I think Once We Parking the Document it wont allow to post the data without changing.
    Try same scenario in the development its be useful
    Regards,

  • Error while posting " gl account is relevant to tax; check code"

    Dear Experts
    During invoice booking while posting into GL the warning message appears "" Gl account is relevant to tax; check code" and this is making our work a bit tough , please check why this message is coming.
    as previously it was not there.
    Regards,
    Charmaine Martin

    Dear:
                I have a solution and i hope this will resolve your issue. Please follow as given under.
    Use transaction OBA5 and enter FS as Area. You will find message no 219 there please keep the following settings against it
    Keep User name as Blank
    and for Online - Batch - (- means message will be turned off). If you do not find Message No 219 then please go to new entry and do the settings as mentioned above.\
    Regards

  • No control line for line item - error while posting bd to accounting

    Hi all,
    Billing document showing err "no control line for line item" while posting to accounting doc.Sales document is complete no in completion logs.
    Previous errr: g/l missing for line item" in order incompletion after maintaining company code for customer, then refresh the g/l missing for line item is no more logs and showing the error "no control line for line item" while posting bd to accts.
    Please help
    Regards
    anush

    Hello Anush,
    if the company data of the payer was not created when the sales order has been created, then the system could not create the correct records in table VBREVK. Once the company data has been maintained the VBREVK records could be corrected by re-saving the sales, but only if no billing document exists.
    In your case you already created the billing document.
    Please try these step:
    1. reverse billing document
    2. run VA02 add a blank char to PO number, save
    3. create new billing document
    Best regards,
    Ivano.

  • Error while posting payroll to accounting

    Hello,
    In a payroll I have two seperate cost centers with different profit centers.
    While posting to accounting there is an error "Balancing field profit center not found in line item 001"
    Please Help.
    Regards
    Vijay

    HHI,
    Cost center assignment is missing in FICO , Consult FICO consultant for that.
    REgards,
    Nitin

  • Problem while posting to accounts.posting period  002 2010 not open

    Hi experts,
    Im facing problem while posting to accounting.
    I ran the live payroll run and  while posting im got the incorrect document.
    System is showing the error message that  ""Posting period 002 2010 is not open"""
    How we have to open the periods.
    Please advice.
    Vi Sai.,

    Hi vicky,
    Goto t-code OB52.
    Variant :Posting Period variant, Account Type : +, From Account : space, To Account : ZZZ..Z, From Period : 2,Year :2010, To Period :2, Year : 2010
    Save.
    Regards,
    Dilek

Maybe you are looking for