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.

Similar Messages

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

  • 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

  • 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

  • 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

  • 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 account determination while posting to MB1A

    hi friends,
    while posting goods issue to cost center(MB1A). i am getting the following error
    ACCOUNT DETERMINATION FOR ENTRY (CHART OF ACCOUNTS) GBB _________VBR 3000 NOT POSSIBLE, and
    ACCOUNT DETERMINATION FOR ENTRY (CHART OF ACCOUNTS) BSX _________VBR 3000 NOT POSSIBLE
    actually i assigned all the required GL acounts in obyc( i assigned GL accounts for BSX and GBB too). i dont know what to do.can anybody please help me out from this problem

    OMWB is the right tool to detect the error. Go to this transaction code and enter the plant and material number. Select the movement type (201?). Double click on the GI to cost center. Then click on Account Assignment icon. The resultant output will show what is missing.
    Valuation grouping code (Valuation modifier) also plays a majore role, as it groups plant together, to be used in maintaining account determination. of GBB for ZOB

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

  • While Posting Park Miro Document system asking Profit center.

    Dear All,,
    After Migo ,,we used all document should be Park ,After checking the Document we will post park Document.
    While posting Park Document system give error massage "Balance field profit center is line item 001 not filled.
    For this i check material master ,In Migo account assignment ,and in Cost center we assigned Profit center.But system still giving error,
    here i am posting frieght invoice for we maintained in po itself...
    What may be the reason i couldnt find ...Kindly guide me to overcome.
    Thanks and Regards
    Girish

    Hi
    Hope you are facing problem in MIRO document (not MIGO)
    If so, the line item 001 of the MIRO document will normally be a vendor line item, where the system is asking you to enter profit center.  So the logic of derving the profit center from material master/cost center does not work here.
    But the message seems to be customized one, hence you can check in the validation rule or any BTE and modify the condition, so that it does not ask for Profit center in vendor line item.
    Regards

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

  • POSTING G/L account documents through custom program

    While posting the documents through the tcode fb01,
    when I tick at PA segement button ASSIGNMENT TO
    PROFITABILITY SEGMENT screen opens, DERIVATION
    BUTTON is activated/enabled . But through a custom program when session is
    processed and when PA segement button is ticked on
    ASSIGNMENT TO PROFITABILITY SEGMENT screen, DERIVATION BUTTON is not visible. I can only see Continue, Next Page, Delete Assignment, and Cancel buttons. Where do I need to check this problem?

    Hi,
    Nope, in standard SAP you can not do that.
    You would need to develop your custom program for it.
    Regards,
    SDNer

  • 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

Maybe you are looking for

  • 8.1.5.0.2 patch does NOT fix "Load Indicator not supported by OS"

    Well, I was hoping it did. Anyone else who experienced otherwise, please post. However, it did fix the problem in the pmon trace file of: OER 536879337 in Load Indicator : Error Code = 570716328 ! ... whenever starting an instance. This error does no

  • Content Server Sharing

    Hello, I have installed Content Server 6.40 successfully on Win 2K3 Both URL are showing Running status, But repository shows defined status after some time if i unlock it again after 2-3 hr it will come to defined status. Also  category which i have

  • ORA-22288

    I've a procedure to load a file into a table: CREATE OR REPLACE PROCEDURE load_xml (p_dir IN VARCHAR2, p_filename IN VARCHAR2) AS l_bfile BFILE := BFILENAME(p_dir, p_filename); l_clob CLOB; BEGIN DBMS_LOB.createtemporary (l_clob, TRUE); DBMS_LOB.file

  • Getting Software Update to work?

    Hi guys, We're looking into trying to get Software Update to work on our Xserve. The network team have put the IP address into their Inty client to allow us direct access to the net. Problem is that when I start up the service and click update list n

  • JSP in OAS

    Hola pobres tontos! Quickly, should I simply forget about OAS and go to 9iAS? Is OAS essentially vaporware? I have an 8.1.6 database with JServer installed. But the OAS listener does not interpret JSP pages. For example, I can place the hello.jsp fil