BAPI_ACC_DOCUMENT_POST. Why tax account is replaced ?

The code as follow:
REPORT  YC_BAPI_ACC_DOCUMENT_POST.
* bapi
CLEAR:BAPI_HEADER,
      BAPI_ACCOUNTGL,
      BAPI_ACCOUNTRECEIVABLE,
      BAPI_ACCOUNTPAYABLE,
      BAPI_ACCOUNTTAX,
      BAPI_CURRENCYAMOUNT,
      BAPI_RETURN,
      BAPI_EXTENSION2,
      LS_ACCOUNTGL,
      LS_RECEIVABLE,
      LS_ACCOUNTPAYABLE,
      LS_ACCOUNTTAX,
      LS_CURRENCYAMOUNT,
      LS_EXTENSION,
      LS_EXTENSION_BAPI.
* set header
CLEAR BAPI_HEADER.
BAPI_HEADER-DOC_TYPE    = 'SA'.   "u51EDu8BC1u7C7Bu578B
BAPI_HEADER-COMP_CODE   = '1000'.   "u516Cu53F8u4EE3u7801
BAPI_HEADER-BUS_ACT     = 'RFBU'.           "u4E1Au52A1u8303u56F4
BAPI_HEADER-DOC_DATE    = SY-DATUM.   "u51EDu8BC1u65E5u671F
BAPI_HEADER-PSTNG_DATE  = SY-DATUM.   "u8FC7u8D26u65E5u671F
BAPI_HEADER-HEADER_TXT  = SY-DATUM.   "u9879u76EEu62ACu5934u6587u672C
BAPI_HEADER-FISC_YEAR   = SY-DATUM+0(4)."u5E74u5EA6
BAPI_HEADER-FIS_PERIOD  = SY-DATUM+4(2).   "u671Fu95F4
BAPI_HEADER-REF_DOC_NO  = ''.   "u53C2u8003u51EDu8BC1u7F16u53F7
BAPI_HEADER-HEADER_TXT  = ''.   "u51EDu8BC1u62ACu5934u6587u672C
BAPI_HEADER-USERNAME    = SY-UNAME.             "u8BB0u8D26u7528u6237
* set items
CLEAR LS_ACCOUNTGL.
LS_ACCOUNTGL-ITEMNO_ACC  = 1."u884Cu9879u76EEu53F7
LS_ACCOUNTGL-GL_ACCOUNT  = '0000154001'.
LS_ACCOUNTGL-TAX_CODE    = 'V2'."u7A0Eu7801
*LS_ACCOUNTGL-ACCT_KEY    = 'VST'.
*LS_ACCOUNTGL-ACCT_TYPE   = 'S'.
*LS_ACCOUNTGL-COND_CATEGORY = 'D'.
APPEND LS_ACCOUNTGL TO BAPI_ACCOUNTGL.
CLEAR LS_ACCOUNTGL.
LS_ACCOUNTGL-ITEMNO_ACC  = 2."u884Cu9879u76EEu53F7
LS_ACCOUNTGL-GL_ACCOUNT  = '0000078200'.
APPEND LS_ACCOUNTGL TO BAPI_ACCOUNTGL.
* set currency
LS_CURRENCYAMOUNT-ITEMNO_ACC   = 1. "u884Cu9879u76EEu53F7
LS_CURRENCYAMOUNT-CURRENCY     = 'EUR'. "u8D27u5E01u7801
LS_CURRENCYAMOUNT-CURR_TYPE    = '00'.               "u91D1u989Du7C7Bu578B
*LS_CURRENCYAMOUNT-EXCH_RATE    = ''. "u6C47u7387
*LS_CURRENCYAMOUNT-AMT_DOCCUR   = 100. "u51EDu8BC1u8D27u5E01u91D1u989D
*LS_CURRENCYAMOUNT-AMT_BASE     = 1427.
APPEND LS_CURRENCYAMOUNT TO BAPI_CURRENCYAMOUNT.
CLEAR LS_CURRENCYAMOUNT.
LS_CURRENCYAMOUNT-ITEMNO_ACC   = 2. "u884Cu9879u76EEu53F7
LS_CURRENCYAMOUNT-CURRENCY     = 'EUR'. "u8D27u5E01u7801
LS_CURRENCYAMOUNT-CURR_TYPE    = '00'.               "u91D1u989Du7C7Bu578B
*LS_CURRENCYAMOUNT-EXCH_RATE    = ''. "u6C47u7387
LS_CURRENCYAMOUNT-AMT_DOCCUR   = -100. "u51EDu8BC1u8D27u5E01u91D1u989D
APPEND LS_CURRENCYAMOUNT TO BAPI_CURRENCYAMOUNT.
*  tax items currence
CLEAR LS_ACCOUNTTAX.
LS_ACCOUNTTAX-ITEMNO_ACC = 3.     "u884Cu9879u76EEu53F7
*LS_ACCOUNTTAX-GL_ACCOUNT =  '0000154001'.
LS_ACCOUNTTAX-TAX_CODE   = 'V2'."u9500u552Eu7A0Eu4EE3u7801
*LS_ACCOUNTTAX-TAX_RATE   = LV_FWSTE.        "u9500u552Eu7A0Eu7387
*LS_ACCOUNTTAX-DIRECT_TAX = 'X'.
*LS_ACCOUNTTAX-ITEMNO_TAX = 1. "u7A0Eu76F8u5173u884Cu9879u76EE
*LS_ACCOUNTTAX-ACCT_KEY = 'VST'.
*LS_ACCOUNTTAX-COND_KEY = 'MWS'.
APPEND LS_ACCOUNTTAX TO BAPI_ACCOUNTTAX.
CLEAR LS_CURRENCYAMOUNT.
LS_CURRENCYAMOUNT-ITEMNO_ACC   = 3.    "u884Cu9879u76EEu53F7
LS_CURRENCYAMOUNT-CURRENCY     = 'EUR'."u8D27u5E01u7801
*LS_CURRENCYAMOUNT-EXCH_RATE    = LS_ZCNTPDM01-KURSF."u6C47u7387u7801
LS_CURRENCYAMOUNT-AMT_DOCCUR   = 100."u7A0Eu91D1
LS_CURRENCYAMOUNT-AMT_BASE     = '1427.1'."u7A0Eu57FA
*LS_CURRENCYAMOUNT-TAX_AMT       = 100.
APPEND LS_CURRENCYAMOUNT TO BAPI_CURRENCYAMOUNT.
*   extend the reason code
CLEAR LS_EXTENSION.
LS_EXTENSION-POSNR = 1.  "u884Cu9879u76EEu53F7
LS_EXTENSION-BSCHL = '40'.  "u8BB0u8D26u7801
LS_EXTENSION_BAPI-STRUCTURE  = 'ZEXCEL'."u81EAu5B9Au4E49u6269u5C55u7ED3u6784
LS_EXTENSION_BAPI-VALUEPART1 = LS_EXTENSION. "u6269u5C55u7ED3u6784
APPEND LS_EXTENSION_BAPI TO BAPI_EXTENSION2.
CLEAR LS_EXTENSION.
LS_EXTENSION-POSNR = 2.  "u884Cu9879u76EEu53F7
LS_EXTENSION-BSCHL = '50'.  "u8BB0u8D26u7801
LS_EXTENSION_BAPI-STRUCTURE  = 'ZEXCEL'."u81EAu5B9Au4E49u6269u5C55u7ED3u6784
LS_EXTENSION_BAPI-VALUEPART1 = LS_EXTENSION. "u6269u5C55u7ED3u6784
APPEND LS_EXTENSION_BAPI TO BAPI_EXTENSION2.
CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        DOCUMENTHEADER    = BAPI_HEADER
      TABLES
        ACCOUNTGL          = BAPI_ACCOUNTGL
        ACCOUNTRECEIVABLE  = BAPI_ACCOUNTRECEIVABLE
        ACCOUNTPAYABLE     = BAPI_ACCOUNTPAYABLE
        ACCOUNTTAX         = BAPI_ACCOUNTTAX
        CURRENCYAMOUNT     = BAPI_CURRENCYAMOUNT
        RETURN             = BAPI_RETURN
        EXTENSION2         = BAPI_EXTENSION2.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
LOOP AT BAPI_RETURN INTO LS_RETURN.
  WRITE:/ LS_RETURN-MESSAGE.
ENDLOOP.
In FB03, The generated document as follow:
1000     1     50          78200     Transfer of reserves     100.00-     EUR                              
1000     2     40          154000     Input tax     100.00     EUR     V2                         
=========================================================
If i create a document in FB01 with the above data, the generated document as follow:
1000     1     50          78200     Transfer of reserves     100.00-     EUR                              
1000     2     40          154001     Input tax     100.00     EUR     V2     
So, what i should do if i want '154001' in generated document by BAPI.
Please help me.
Thanks.
Edited by: y_ch_19 on Sep 28, 2011 11:09 AM
Edited by: Thomas Zloch on Sep 28, 2011 11:22 AM

Hi Vijaymadhur,
Thank you very much.
I check the reason is not enhancement or exit.
In t-code: FTXP, i see the tax code 'V2' corresponding the tax account '154000',
when execute the BAPI, the system determine the tax account by the tax code,
but i have no idear how to set the parameters in BAPI  with no tax account replaced.
CLEAR LS_ACCOUNTTAX.
LS_ACCOUNTTAX-ITEMNO_ACC = 3.     "u884Cu9879u76EEu53F7
*LS_ACCOUNTTAX-GL_ACCOUNT =  '0000154001'.
LS_ACCOUNTTAX-TAX_CODE   = 'V2'."u9500u552Eu7A0Eu4EE3u7801
*LS_ACCOUNTTAX-TAX_RATE   = LV_FWSTE.        "u9500u552Eu7A0Eu7387
*LS_ACCOUNTTAX-DIRECT_TAX = 'X'.
*LS_ACCOUNTTAX-ITEMNO_TAX = 1. "u7A0Eu76F8u5173u884Cu9879u76EE
*LS_ACCOUNTTAX-ACCT_KEY = 'VST'.
*LS_ACCOUNTTAX-COND_KEY = 'MWS'.
APPEND LS_ACCOUNTTAX TO BAPI_ACCOUNTTAX.

Similar Messages

  • BAPI_ACC_DOCUMENT_POST with TAX posting for FB60 t-code

    Hi Experts,
    I am trying upload the data using BAPI_ACC_DOCUMENT_POST with Tax(ACCOUNTTAX) for the FB60 t-code. But not getting right.
    Any help on this issue greatly appreciated.
    Thanks & Regards,
    Harish

    Hi,
    Check out this-
    FU BAPI_ACC_DOCUMENT_POST
    Short Text
    Accounting: Posting
    Functionality
    Using this method you can create a posing in accounting for certain business transactions.
    Possible ( Business Transactions):
    Postings that generally only affect the general ledger. (RFBU)
    Billing: For billing in Sales and Distribution, accounting is supplied with the relevant billing data. (SD00) Billing Document
    Accounting can use the data of a logistics system that result from an Invoice Receipt. (RMRP)
    Goods Movement are triggered by transactions in Sales and Distribution or by inventory postings. Within logistics, they lead to a change in the warehouse stocks of <DS:GLOS.Inventory Management>Inventory Management. This results in a posting in accounting. This is why accounting is supplied with the relevant data from logistics. (RMWA)
    Example
    Billing document:
    By selling goods in accordance with targets, revenue is generated. The revenue is posted in billing and forwarded to accounting.
    Invoice receipt:
    Raw materials are purchased in accordance with targets. The invoice receipt is posted in a logistics system. The data from the raw materials is forwarded to accounting.
    Goods Movment:
    The use of raw materials leads to a change in stock in inventory managment. The posting of raw material consumption is forwarded to accounting.
    G/L Account Posting:
    Provision posting for an expected warranty service. This can refer to acquisitions or retirements belonging to stocks that are not in subledger accounting relevant to inventory management. This is particularly the case if such materials are not displayed as vendor/customer, materials, loans etc. or cannot be displayed in this way. This can also refer to write-ups or depreciation that contain higher aggregations of values than are maintained in a corresponding subledger that is relevant to inventory management.
    The conversion of foreign currencies for receivables/payables due to large exchange rate changes that should not lead to an update of the accounts payable or accounts receivable accounting. A similar transaction can arise for the revaluation of raw materials if this revaluation takes place at a correspondingly aggreagated level.
    Reclassification of inventory of P&L statement accounts that are only used for reconcilliation purposes in the general ledger (this rearranges values for balance sheet items).
    Balance reclassifications of stocks to receivables with different return times.
    Notes
    If the parameter CurrencyAmount is filled with the currency fields, a complete document check including characteristics and value components of profitability analysis (CO-PA). Otherwise, the account assignment objects are checked.
    Messages are returned in the parameter Return. In the parameter documentation you can find the return values and their meaning.
    Further information
    You can find further information in the SAP Library under "Financials -> Accounting - General (AC) -> Interfaces to Accounting (AC)".
    Parameters
    DOCUMENTHEADER
    CUSTOMERCPD
    CONTRACTHEADER
    OBJ_TYPE
    OBJ_KEY
    OBJ_SYS
    ACCOUNTGL
    ACCOUNTRECEIVABLE
    ACCOUNTPAYABLE
    ACCOUNTTAX
    CURRENCYAMOUNT
    CRITERIA
    VALUEFIELD
    EXTENSION1
    RETURN
    PAYMENTCARD
    CONTRACTITEM
    EXTENSION2
    REALESTATE
    ACCOUNTWT
    Reward if useful!

  • BAPI_ACC_DOCUMENT_POST and tax posting through the BAPI

    Hi,
    We are using the BAPI_ACC_DOCUMENT_POST to post accounting documents. The BAPI works fine without the tax data but we need the tax data also to get posted for the line items. Please let me know how the ACCOUNTTAX
    and CURRENCYAMOUNT table parameters needs to be populated.
    A sample code would be of much use.
    Currently if we have 3 line items in GL to be posted we fill 3 line items in AccountGL table, one line item in Accounts payable table, 4 line items in the currency table ( 3 for the actual items and 4 th item with summed up quantity of all 3 items) .
    Your help is greatly appreciated.
    Regards,
    Prabaharan.G

    hi,
    i use this function in some program i try to give to u how to set the minimum value in the structure/tables of the bapi.
    > DOCUMENTHEADER                                                        
    >        BUS_ACT                    =    'RFBU'           "for FI document    
    >        USERNAME                =    sy-uname
    >        HEADER_TXT              =    your text
    >        COMP_CODE              =    Company code
    >        DOC_DATE                  =    Document date
    >        PSTNG_DATE              =    Posting date
    >        FISC_YEAR(1)              =    The year of posting date
    >        FIS_PERIOD(1)             =    the period of posting date
    >        DOC_TYPE                  =    document type
    if you set a different year or period from the value that you have in the posting date the bapi trigger an error
    > ACCOUNT GL
    >       ITEMNO_ACC   = progessive number
    >       GL_ACCOUNT  = G/L Account
    >       ITEM_TEXT       = item text
    >       DOC_TYPE      = document type (the same of the header for all item)
    >       COMP_CODE   = company code (the same of the header for all item)
    >       BUS_AREA      = business area
    >       TAX_CODE       = tax code
    if you set a different doc_type or company code for each item the bapi trigger an error
    > ACCOUNTTAX                
    >            ITEMNO_ACC   =  progressive number
    >            GL_ACCOUNT   = G/L Account referred to TAX CODE
    >            TAX_CODE        = TAX CODE
    >            TAX_RATE        =  TAX RATE
    >            ITEMNO_TAX     = progressive number  which tax item is referred
    >CURRENCYAMOUNT
    >           ITEMNO_ACC     =  progressive number
    >           CURRENCY        =  currency
    >           CURRENCY_ISO =  iso currency that you find in TCURC-ISOCD table
    >           AMT_DOCCUR    =  amount with sign the sign +/- identify Debit/Credit Indicator
    > - this field only for tax record
    >           AMT_BASE        =   is the AMT_DOCCUR of the line which ypu want to calculate the tax with sign
    >           TAX_AMT           =    tax amount
    usually for calculate the correct value i use these functions 'CALCULATE_TAX_FROM_GROSSAMOUNT' or 'CALCULATE_TAX_FROM_NET_AMOUNT' it depends if i have the net or gross amount.
    for example:
    DOCUMENTHEADER                                  
    >        BUS_ACT                    =    'RFBU'
    >        USERNAME                =    sy-uname
    >        HEADER_TXT              =    'my_text'
    >        COMP_CODE              =    '0001'
    >        DOC_DATE                  =    '20080115'
    >        PSTNG_DATE              =    '20080115'
    >        FISC_YEAR(1)              =    '2008'
    >        FIS_PERIOD(1)             =    '01'
    >        DOC_TYPE                  =    'SA'
    ACCOUNT GL
    >Record 1
    >ITEMNO_ACC =  0000000001
    >GL_ACCOUNT =   0290111010
    >ITEM_TEXT =   ITEM_TEXT
    >DOC_TYPE =    SA
    >COMP_CODE =    0001
    >BUS_AREA =   GS1                                                                       
    >Record 2
    >ITEMNO_ACC =  0000000002
    >GL_ACCOUNT =    0500103900
    >ITEM_TEXT =   ITEM_TEXT
    >DOC_TYPE =   SA
    >COMP_CODE =   0001
    >TAX_CODE =  V2
    ACCOUNTTAX
    > Record 3
    >ITEMNO_ACC =   0000000003
    >GL_ACCOUNT =  0221103001
    >TAX_CODE =  V2
    >TAX_RATE =  20.000
    >ITEMNO_TAX = 0000000002
    CURRENCYAMOUNT
    >Record 1
    >ITEMNO_ACC = 0000000001
    >CURRENCY =  EUR
    >CURRENCY_ISO =   EUR
    >AMT_DOCCUR  = 150.00
    >AMT_BASE =  0.00
    >TAX_AMT =  0.00
    >Record 2
    >ITEMNO_ACC = 0000000002
    >CURRENCY =  EUR
    >CURRENCY_ISO =   EUR
    >AMT_DOCCUR  = -125.00
    >AMT_BASE =  0.00
    >TAX_AMT =  0.00
    >Record 3
    >ITEMNO_ACC = 0000000003
    >CURRENCY =  EUR
    >CURRENCY_ISO =   EUR
    >AMT_DOCCUR =  -25.00
    >AMT_BASE =  -125.00
    >TAX_AMT =   -25.00
    hope that is useful.
    Bye
    Marco

  • Assign Project Code to Tax account automatically

    Hi Everyone:
    When I assigned a Project code in a Marketing document, why in the Journal Entry the tax account does not assign automatically the project code the way the others accounts does?. Is there any way to achive this?
    Thanks
    Claudia

    Hi,
    Check this thread...
    [Re: Project code is not tagged against service tax in transactional J.E.|Re: Project code is not tagged against service tax in transactional J.E.]
    Thanks
    Sachin

  • You are posting directly to a tax account. Enter the tax base amounts per i

    Hi Team,
    While posting JV againset to tax GL account we are getting bellow error message
    """"Enter the tax base amounts for account 351200 in company code 1111
    Message no. F5A375
    Diagnosis
    You are posting directly to a tax account. Enter the tax base amounts per item using the function "Tax Amounts"  """.
    Could any body let me know why we are not able to post JV to against Tax GL account...
    Thanks
    Vyshnava

    Hi Satish,
    Yes , I am posting JV to do zero balance to this tax GL account to Changing the tax code from  " >  Output Tax Account"  to   " *  All tax types allowed "..
    Thanks
    Vyshnava

  • Self assessed tax accounting

    1. When invoice is 3-way matched where accruals are done at receipt, the Use Tax amount is debited to the accrual account.
    2. But in reality it should be debited to the charge account and credited to the specific Tax account defined in the EBTax configuration.
    Is this (#1) a standard behavior?
    Steps involved:
    1.     Create invoice, match it to the receipt (accruals are performed ‘at receipt’)
    2.     Click calculate tax
    3.     Override Use Tax (add amount and check self assessed checkbox) on the invoice
    4.     Validate invoice
    5.     Create Accounting for invoice
    6.     The ‘create accounting’ report reflects that the item line and the self assessed tax line are debited to the accrual account. Item line is then credited to a liability account and the self assessed tax line is credited to the specific Tax account defined in the EBTax configuration.
    Question is why does the self assessed tax line is debited to the accrual account and not to the charge account?

    1. When invoice is 3-way matched where accruals are done at receipt, the Use Tax amount is debited to the accrual account.
    2. But in reality it should be debited to the charge account and credited to the specific Tax account defined in the EBTax configuration.
    Is this (#1) a standard behavior?
    Steps involved:
    1.     Create invoice, match it to the receipt (accruals are performed ‘at receipt’)
    2.     Click calculate tax
    3.     Override Use Tax (add amount and check self assessed checkbox) on the invoice
    4.     Validate invoice
    5.     Create Accounting for invoice
    6.     The ‘create accounting’ report reflects that the item line and the self assessed tax line are debited to the accrual account. Item line is then credited to a liability account and the self assessed tax line is credited to the specific Tax account defined in the EBTax configuration.
    Question is why does the self assessed tax line is debited to the accrual account and not to the charge account?

  • Tax Accounting in Projects

    We are using event/event distribution method. Our accounting policy which is being consistently followed for last 7 years requires, revenue to be recognised gross of taxes. Hence the tax account should also be my revenue account when the transactions are interfaced into Receivables.
    Is there any solution available in Oracle, even with a little of workaround using a custom report to take care of this.
    Accounting at the time of EVENT revenue distribution and interface revenue to general ledger -
    Unbilled Receivables A/c Dr. 1000
    Cr. Event Revenue A/c 1000
    Accounting when the invoice is interfaced in AR from the AR transaction window -
    AR a/c Dr. 1100
    Cr. Unbilled Receivables A/c Dr. 1000
    Cr. Sales Tax Payable 100
    I want this sales tax payable also to go into Event Revenue A/c. We have multiple Event revenue Accounts based on Customer Categories in AR. We have used SQL codes in Auto Accounting Rules to generate Event Revenue A/c.
    Is there any Tax Accounting function, that I can use in Auto-Accounting in Projects to over-come this problem?

    You may be aware of the following, if not the good back info for you I think:
    The tax calculation on an invoice in projects is driven by how you set up Etax. Use the navigation
    Responsibility: Tax Manager
    Navigation: Defaults and Controls -> Applicable Tax Options
    Application name: Projects
    Then create your defaulting order of precedence.
    Calculating tax in OP
    yes you are correct the actual tax amount is not calculated in OP. The tax codes are applied at line level to the lines sent from OP to AR. So you have two options:
    1. Create a modified draft invoice print that shows the tax amount calculated
    2. You may want to challenge why project managers are required to sign of amounts including tax. They could not influence the tax amounts (they are legislated) therefore there does not seem much point in them approving thois apsect of the invoice. All they are approving is that the correct tax code has been used, which is shown on the draft invoice. Failing that you could introduce a project status workflow that requires project managers to approve that the correct tax code has been selected on a project before it is allowed to be billed.
    Sorry I can give you a specific solution, but hopefully the above will help

  • Error in Tax account determination

    Hi experts,
    When i am trying to release by billing document by using t-code VF02 i am getting error:
    "Error in account determination table T030K Key xxx MWS"
    I checked config but could not find any thing
    Can anyone help me to resolve this?
    thanks,
    Vani

    DEFINE TAX ACCOUNTS
    PATH: SPRO  FINANCIAL ACCTG  FIN ACCTG GLOBAL SETTINGS       TAX ON SALES/PURCHASES  POSTING  DEFINE TAX      ACCOUNTS
    TRANSACTION CODE     -     OB40
    DOUBLE CLICK ON VST INPUT TAX
    GIVE THE CHART OF ACCTS          -     GES
    PRESS ENTER & SAVE
    GIVE THE ACCOUNT NO.          -     200155 (VAT POOL A/C)
     SAVE & SAVE IN YOUR REQUEST
    SELECT BACK ARROW
    DOUBLE CLICK ON MWS OUTPUT TAX
    PRESS ENTER & SAVE
    GIVE THE ACCOUNT NO.          -     200155 (VAT POOL A/C)
     SAVE & SAVE IN YOUR REQUEST

  • Down Payment Received - Output Tax Account definition

    Hi,
    I have defined reconciliation account for down payment received under OBXR, and it works fine. However, the issue comes when we post output tax received along with customer down payment. I get the error "No taxes on sales/purch.are allowed for account 214010, O1 is not allowed". 214010 is our customer down payment account.
    It looks like I have to define tax account under "Define Tax Accounts for Down Payments Received (OB40)" and also "Define Account for Tax Clearing (OBXB)". I am not sure where in OB40 and OBXB I have to define these accounts. Or is it enough if I just define tax account for down payment under OB40 and don't do anything in OBXB.
    I appreciate your help.
    Thank you

    > Hi,
    >
    > I have defined reconciliation account for down
    > payment received under OBXR, and it works fine.
    > However, the issue comes when we post output tax
    > received along with customer down payment. I get the
    > error "No taxes on sales/purch.are allowed for
    > account 214010, O1 is not allowed". 214010 is our
    > customer down payment account.
    > <b>Go to your GL account 214010 in FS00 in change mode and make the following settings from F4. < Output tax account</b>
    > It looks like I have to define tax account under
    > "Define Tax Accounts for Down Payments Received
    > (OB40)" and also "Define Account for Tax Clearing
    > (OBXB)". I am not sure where in OB40 and OBXB I have
    > to define these accounts. Or is it enough if I just
    > define tax account for down payment under OB40 and
    > don't do anything in OBXB.
    > <b>Once u make the above settings then the system will tell you whether you need to define other accounts for postings once you make postings.</b>> I appreciate your help.
    >
    > Thank you

  • I took my iPhone 5 into the Apple Store @the Grove b/c my sleep button stopped working. Apple would not replace my phone. Why do some get replaced

    Was just wondering why some phones are replaced &amp; others not? Is there a secret hand shake or specific "terms" to use to describe your problem?

    Really? Seriously? You expect Apple to support a warranty for years because you plan on using the phone for more than two years. Buy yourself a TV at Best Buy and see how well they will respond after 18 months when the power button does not work.
    If the sleep button is not working the phone is NOT in excellent shape. Apple stands behind their products but only during the warranty period. You are outside the warranty period. You will have to pay. Using the TV analogy above how much of a discount do you think Best Buy would give you on a new TV in exchange for your damaged TV.
    You seem to be a member of the "ME" generation where you think everything is owed to you. Get over it. Either pay or do without.

  • Tax accounts set up in FTXP

    Can anyone please tell me of How I can have Tax accounts set up for a 'Transaction'(Ex:NVV for A/P Sales Tax1) in FTXP, Or Assign Tax Procedure to 'NVV' Trans. in OB40. I am not even able to see the Transaction NVV assigned to the Tax Procedure when I view the screen(FTXP).

    Hi,
    You can check it from T-code OBCN. Here you can find NAV and NVV.
    Following is setting from my system :
    NAV : Non-deduct.input tax    >  Posting indic. 2  Separate line item
    NVV : Non-deduct.input tax    >  Posting indic. 3  Distribute to relev
    Posting indic. 2 let you can see from t-code : OB40.
    If you change NAV Posting indic. from 2 to 3, then you can't find  NAV from tcode OB40.
    Please. review following note for NVV  and for further information on  settings, pls. refer Online documentation.
    SAP Note No. 425193  Account assignment with non-deductible tax
    Please assign points if it useful.
    Regards
    Ravinagh Boni

  • What's the difference between tax account in FTXP and OB40

    Hi all,
    There are two tax accounts link to same tax code in FTXP for different company codes, but in OB40 I only can assign one account to tax code. What's the difference between tax account in FTXP and OB40?
    Thanks in advance.
    babyyw
    Edited by: babyyw on May 5, 2010 8:21 AM

    Hi,
    FTXP no need to create a request and it is easy but in OB40 system will ask you create request. and another thing is in FTXP it is at country level but in OB40 it is at chart of accounts level.

  • How to register iTunes Connect if i do not have a Tax account no

    Can anyone please advice , how to register iTunes Connect if i do not have a Tax account no?
    I am interested to register iTune Connect and sell ibook, but I am not US citizen and do not live in US. I do not have an US Tax account no. How can i proceed ?

    Hi there fishlady,
    This article covers printing from the ipad with your 3051a. Give the steps outlined a shot and let us know if it helps.
    Best of Luck!
    I work with HP my posts and opinions are my own.

  • Default "Recoverable Tax" account - cost center segment to specific value

    Dear all,
    I have tried couple of days to see how to use subledger accounting setup to default cost center of recoverable tax account (recoverable tax account - cost center segment to specific value which is based on the cost center of invoice distribution), however it is not succesful.
    I think might be some of the setup is wrong, please see below my setup steps:
    1) Set up Account Derivation Rules
    Copy rule code AP_INVOICE_DIST to T_AP_INVOICE_DIST with adding a source ='Recoverable tax", condition = Invoice Distribution Account is not null
    2) Setup Journal Lines Definition
    3) Setup Accounting Accounting Definition
    Please advice.

    Madhu,
    I did some investigation too and it looks like this is only way i can do this.
    Do you think of any User Exit name, which i can use it here?
    Thank you and appreciate your help.

  • Tax account cost element

    Hi dear all
    i am creating  cost elements in our company.But i have one query. Can i create primary cost element for tax category GL account as CO is used for internal reporting purpose only. I am little confused regarding this.
    Please any one give me suggestion
    Any Help will be appreciable.
    Thanks in advance
    nilesh

    Hello,
    Yes..you can create Primary CE for your Tax account..though CO is used for internal accounting/reporting, there should be a primary CE  for your GL ...to reflect true postings/reporting....
    Hope this helps
    Rgds
    Rajendra

Maybe you are looking for

  • Airport Extreme Base Station

    Where can i buy the base station? I don't live next to a Macintosh store, and i cannot see the Airport Extreme on the internet, only the Airport Express - and i cannot order from the US website?? Very frustrating! G5   Mac OS X (10.3)  

  • Cutover disaster recovery

    Hi all, This question is specific to the scenario of a cutover in a IS-utility (fall back strategy). The scenario is: consider a utility compnay going live on ISU. The SAP ERP was already running in the company. The thing is when the company starts t

  • Tables in Service entry sheet

    Dear All, PLease guide me flow of the tables which are fetched at the time of ML81n. Thanks in advance.

  • Availibity

    HR guru's, can anyone please tell me which Table and Extractor of HR module in R/3 give information about employee's available hours or availibility ?? thanks akash.

  • Can't install adobe flash player, error message says cannot contact a reliable source

    Everytime I try to download it, it gets to about 7% and then the error message says cannot contact reliable source. I used the adobe uninstaller to uninstall the previous versions, but no luck. I've tried locating hidden files but couldn't find any.