Purchase order tax % problem - urgent

Hi Gurus,
I have created a tax code with service tax and sales tax in one tax code. It is for AMC invoice. My financial entry is perfectly getting posted. 12.35%+10%
But PO dispaly is only 11.25%. How is it possible?
How to solve this problem. Useful answer will be assigned with points.
Regards
SAP

yes prabakar.. but iam confused..
You can get step by step workflow for PO using standard workflow
Release of Purchase Order :WS20000075
And for two levels of approvals you have to configure in SPRO the path is
Purchase Order:
SPRO> Material Management->Purchasing->/Purchase order-->Release procedure ---> Procedure with classification ---> set up procedure with classification ---> double click on Release strategies and Workflow.
If you don't know about this configuration, you have to confirm with your MM consultant.
after finish this iam triggering events using pftc
in that pftc iam choosing business object bus 2012 for po release..
i think thats enuf..
After that it is possible to trigger workflow.. when iam create purchase order..
Thanks
Gowrishankar

Similar Messages

  • Purchase order tax% different - urgent

    Hi Gurus,
    I have created a tax code with service tax and sales tax in one tax code. It is for AMC invoice. My financial entry is perfectly getting posted. 12.35%+10%
    But PO dispaly is only 11.25%. How is it possible?
    How to solve this problem. Useful answer will be assigned with points.
    Regards
    SAP

    yes prabakar.. but iam confused..
    You can get step by step workflow for PO using standard workflow
    Release of Purchase Order :WS20000075
    And for two levels of approvals you have to configure in SPRO the path is
    Purchase Order:
    SPRO> Material Management->Purchasing->/Purchase order-->Release procedure ---> Procedure with classification ---> set up procedure with classification ---> double click on Release strategies and Workflow.
    If you don't know about this configuration, you have to confirm with your MM consultant.
    after finish this iam triggering events using pftc
    in that pftc iam choosing business object bus 2012 for po release..
    i think thats enuf..
    After that it is possible to trigger workflow.. when iam create purchase order..
    Thanks
    Gowrishankar

  • How to Retrieve Purchase order TAX value price

    Hi,
    I want to retrieve Purchase order TAX value price from the purchase order is there any function module to retrieve this value.  Or from which table we can retrieve this value using purchase order no.
    Thanks in advance

    Hi Pradeep,
    Have you looked BAPI <b>BAPI_PRICES_CONDITIONS</b>?
    Hope this will help.
    Regards,
    Ferry Lianto

  • Calculation of Purchase Order TAX in Smart Form

    Hi All !
    I am facing problem in purchase Order, how to calculate the value of tax in Purchase order .
    in KONV Table, I am getting the value of condition type which r maintained on pricing procedure but, we r not getting the condition type for particular TAX code.
    How we can calculate the tax. or
    Is there any problem in VOFM/formulas/condition value.
    please suggest me.
    Thanks & Regards
    Priti

    Hi Jitendra,
    Thanks for your wonderful co-operation. The issue is almost solved. One lat wuery-
    We are at present using 20 tax conditions in our tax procedure. But in a single PO we are using only 3 or 4 conditions out of them How can I identify in my program that which tax conditions are actually used in the current printable PO????
    I can use table A363 for searching condition records only after identifying the relevent condition type used in a PO otherwise I have to search for all 20 condition types. Please note we are using TAXINN ( condition based) tax procedure.
    I am eagerly awaiting for your suggestion. Thanks again,
    Priti

  • Purchase Order Tax Jurisdiction Code Default

    Hello,
    I have a business requirement to have my tax code default based off of Delivery Address Region field.
    I can achive this by creating a custom condition table with region, creating a custom access sequence, inserting the custom table, and attaching it to condition type NAVS.
    My problem is that my tax code requires a tax jurisdiciton code. So I can default the tax code but that is useless without being able to default the tax jurisdiction code.
    How can I default the tax jurisdiction code in the delivery address, _*WITHOUT DEFAULTING IT IN THE PLANT OR STORAGE LOCATION MASTER DATA. IT NEEDS TO DEFAULT BASED OF OF REGION.*
    Is there a condition type for Tax Jurisdiction code or something along those lines.....

    Hello,
    There is a BADI available with name ME_TAX_FROM_ADDRESS [SE18] (Tax jurisdiction code taken from address). As per documentation, this is the correct one for you.
    The Business Add-In (BAdI) ME_TAX_FROM_ADDRESS provides you with additional functionality to determine the tax jurisdiction code in purchase orders. At item level, the tax jurisdiction code maintained in the delivery address can be used for tax calculation purposes.
    Thanks,
    Venu

  • Open items for purchase order its very urgent

    hi
    my requirement is to write extract program for purchase order(me21) to extract only open items.
    please provide sample code its very urgent.
    thanks in advance.
    points will be rewarded.
    thanks
    hari prasad reddy

    check the below report :
    REPORT ZMM_OPEN_PO_REPORT no standard page heading
                              line-size 255
                              message-id zwave.
    ======================================================================
    Program Name : ZMM_OPEN_PO_REPORT                                    *
    Description  : This report displays all Open PO Items and output     *
                   would be PO Number,Material number and so on          *
    Author       : Seshu                                                 *
    Date         : 01/24/2007                                            *
    MODIFICATION HISTORY                                                 *
    DATE    | AUTHOR   | CHANGE #   | DESCRIPTION OF MODIFICATION        *
    --|||--
    01/24/07| Seshu    | DEVK921979 | Initial                            *
    D A T A  D E C L A R A T I O N   P A R T                         ***
    type-pools
    type-pools : slis.
    Tables
    tables : ekko, " Purchase order Header
             ekpo, " Purchase order Item
             marc. " Material with Plant data
    Internal table for output.
    data : begin of i_output occurs 0,
           ebeln like ekko-ebeln,
           matnr like ekpo-matnr,
           end of i_output.
    ALV Data declaration.
    data : v_repid like sy-repid.
      ALV Function Module Variables
    DATA: gs_layout type slis_layout_alv,
          g_exit_caused_by_caller,
          gs_exit_caused_by_user type slis_exit_by_user.
    DATA: gt_fieldcat    type slis_t_fieldcat_alv,
          gs_print       type slis_print_alv,
          gt_events      type slis_t_event,
          gt_list_top_of_page type slis_t_listheader,
          g_status_set   type slis_formname value 'PF_STATUS_SET',
          g_user_command type slis_formname value 'USER_COMMAND',
          g_top_of_page  type slis_formname value 'TOP_OF_PAGE',
          g_top_of_list  type slis_formname value 'TOP_OF_LIST',
          g_end_of_list  type slis_formname value 'END_OF_LIST',
          g_variant LIKE disvariant,
          g_save(1) TYPE c,
          g_tabname_header TYPE slis_tabname,
          g_tabname_item   TYPE slis_tabname,
          g_exit(1) TYPE c,
          gx_variant LIKE disvariant.
    data : gr_layout_bck type slis_layout_alv.
    Ranges
    ranges r_eindt for eket-eindt.
    initialization.
    v_repid = sy-repid.
    start-of-selection.
    Get the data from EKKO ,EKPO and MARC Table
    perform get_data_tables.
    end-of-selection.
    display the data in the form of ALV
    perform display_data.
    *&      Form  get_data_tables
          Get the data from EKKO,EKPO and MARC Table
    FORM get_data_tables.
    clear : i_output.
    refresh : i_output.
    fill the dates in ranges
    r_eindt-low = sy-datum - 7.
    r_eindt-high = sy-datum + 14.
    r_eindt-option = 'BT'.
    r_eindt-sign = 'I'.
    append r_eindt.
    Get the data from EKKO,EKPO and EKET Tables
    select aebeln bmatnr into table i_output
                           from ekko as a inner join
                                ekpo as b on aebeln = bebeln
                                inner join marc as c on cmatnr = bmatnr
                                inner join mara as d on dmatnr = bmatnr
                                inner join eket as e on eebeln = aebeln
                                               and   eebelp = bebelp
                                where c~beskz = 'E'
                                and   c~werks = '1000'
                                and   d~mtart = 'FERT'
                                and   b~loekz = space
                                and   b~elikz = space
                                and   e~eindt in r_eindt.
    if sy-subrc ne 0.
    message e000(zwave) with 'No open purchase order found'.
    endif.
    ENDFORM.                    " get_data_tables
    *&      Form  display_data
          text
    FORM display_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
       I_INTERFACE_CHECK                 = ' '
       I_BYPASSING_BUFFER                =
       I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = v_repid
       I_CALLBACK_PF_STATUS_SET          = ' '
        I_CALLBACK_USER_COMMAND           = g_user_command
       I_CALLBACK_TOP_OF_PAGE            = ' '
       I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
       I_CALLBACK_HTML_END_OF_LIST       = ' '
       I_STRUCTURE_NAME                  =
       I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      =
       I_GRID_SETTINGS                   =
       IS_LAYOUT                         = gr_layout_bck
          IT_FIELDCAT                       = gt_fieldcat[]
       IT_EXCLUDING                      =
       IT_SPECIAL_GROUPS                 =
       IT_SORT                           =
       IT_FILTER                         =
       IS_SEL_HIDE                       =
       I_DEFAULT                         = 'X'
        I_SAVE                            = g_save
        IS_VARIANT                        =
       IT_EVENTS                         =
       IT_EVENT_EXIT                     =
       IS_PRINT                          =
       IS_REPREP_ID                      =
       I_SCREEN_START_COLUMN             = 0
       I_SCREEN_START_LINE               = 0
       I_SCREEN_END_COLUMN               = 0
       I_SCREEN_END_LINE                 = 0
       IT_ALV_GRAPHICS                   =
       IT_ADD_FIELDCAT                   =
       IT_HYPERLINK                      =
       I_HTML_HEIGHT_TOP                 =
       I_HTML_HEIGHT_END                 =
       IT_EXCEPT_QINFO                   =
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER           =
       ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_output
       EXCEPTIONS
         PROGRAM_ERROR                     = 1
         OTHERS                            = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " display_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Purchase order number
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'EBELN'.
      LS_FIELDCAT-ref_fieldname = 'EBELN'.
      LS_FIELDCAT-ref_tabname = 'EKKO'.
      LS_FIELDCAT-TABNAME    = 'I_OUTPUT'.
      ls_fieldcat-seltext_L = 'Purchase Order'.
      ls_fieldcat-seltext_M = 'Purchase Order'.
      ls_fieldcat-seltext_S = 'Purchase Order'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-ref_fieldname = 'MATNR'.
      LS_FIELDCAT-ref_tabname = 'EKPO'.
      LS_FIELDCAT-TABNAME    = 'I_OUTPUT'.
      ls_fieldcat-seltext_L = 'Material'.
      ls_fieldcat-seltext_M = 'Material'.
      ls_fieldcat-seltext_S = 'Material'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init

  • Purchase Order Printout Problem

    Hi Everyone,
                    Purchase Order print out is coming in one Laser jet printer and not coming in another laser jet printer.
    1st printer is a Network printer so configured like this:Access method: C and host printer and host name given since it is configured in our SAP Server.
    2nd printer is connected to a Notebook so, Device type: SAPWINJP, Access Method:F, and host path given.
    Normal SAP Printout is coming but only Purchase order designed for Laserjet is not coming. I checked with Document type and all. No default printer assignment is given.
    I have assigned this as a Default Printer in SU01.this is for your information. Error Msg im getting is here:
    (6:26:17 PM) Number of processors: 2
    (6:26:17 PM) Icon DLL loaded.
    (6:26:17 PM)
    (6:26:17 PM) Network Communication via SAP-NiLib
    (6:26:17 PM) Hostname: siva
    (6:26:17 PM) IP Address: 12546920.2089886680.32.1223880
    (6:26:17 PM)
    (6:26:17 PM) SAPLPD Version 6.28 for Windows/NT (OPT) is listening
    (6:26:17 PM) OS-Info: version = 5.1, build = 0/2600, text = Service Pack 2
    (6:26:17 PM) Copyright © 1992-2001 SAP AG
    (6:26:17 PM)
    (6:26:26 PM)
    (6:26:26 PM) Receive job for printer
    192.168.255.63HP_M1319 (Berkeley LPD protocol / RFC1179)
    (6:26:26 PM) send_status called
    (6:26:26 PM) send_status called
    (6:26:26 PM) send_status called
    (6:26:26 PM) send_status called
    (6:26:26 PM) send_status called
    (6:26:26 PM) Job 000000262500001.DEV for user BS2PRAKA queued.
    (6:26:26 PM) Start printing job 000000262500001.DEV on printer
    192.168.255.63HP_M1319
    (6:26:27 PM) Error: Cannot create Printer Context, text = Overlapped I/O operation is in progress.
    (6:26:27 PM) Error: The printer
    192.168.255.63HP_M1319 is unknown to Windows Print Manager.
    (6:26:27 PM) The following printers are currently defined:
    (6:26:27 PM) Printer = HP LJ P3005
    (6:26:27 PM) Warning: Printer name contains spaces.
    (6:26:27 PM) Please rename printer, before using it from R/3 or UNIX!
    (6:26:27 PM) Printer =
    ANILHPHP_ M1319
    (6:26:27 PM) Warning: Printer name contains spaces.
    (6:26:27 PM) Please rename printer, before using it from R/3 or UNIX!
    (6:26:27 PM) Printer =
    KAVITHAHP OFFICEJET 4300 SERIES
    (6:26:27 PM) Warning: Printer name contains spaces.
    (6:26:27 PM) Please rename printer, before using it from R/3 or UNIX!
    (6:26:27 PM) Printer =
    SURESHHPHP LASERJET M1319F MFP
    (6:26:27 PM) Warning: Printer name contains spaces.
    (6:26:27 PM) Please rename printer, before using it from R/3 or UNIX!
    (6:26:27 PM) Printer =
    VARALAKSHMIEPS_VARAL
    (6:26:27 PM) Printer =
    VARALAKSHMIXEROX PHASER 3116
    (6:26:27 PM) Warning: Printer name contains spaces.
    (6:26:27 PM) Please rename printer, before using it from R/3 or UNIX!
    (6:26:27 PM) Printer =
    VIJAYKUMARHP OFFICEJET 4300 SERIES
    (6:26:27 PM) Warning: Printer name contains spaces.
    (6:26:27 PM) Please rename printer, before using it from R/3 or UNIX!
    (6:26:27 PM) Error: BG: saplpd_open_dc failed, msg = 808 SAPLPD:Windows Problem, siehe SAPLPD Protokoll
    Here, 
    192.168.255.63HP_M1319 this is the Machine IP and its printer available in the LAN. Its been shared and marked as default in my Desktop.
    Please give solution for this
    Regards,
    Siva

    somebody could help in this issue?

  • Purchase order create problem

    Hi Reiner,
    I am testing out a scenario with BAPI_PO_CREATE, encountered a few problems:
    1. Errors with Date field in some structures.
    --> I changed the date field name to ZDATE and that
        fixed it, I remember this was also a problem in
        Connector 1.0. I can only imagine that the Date
        name used clashes with some reserved system date
        field in VB.Net
    2. Purchase order schedule lines are being populated
       via structure BAPIEKET and into a table. I have
       declared a BAPIEKET structure and a table but i seem
       to have errors trying to even populate the first field
       of the BAPIEKET structure. The error is as follows:
    An unhandled exception of type 'System.NullReferenceException' occurred in <application>
    Additional information: Object reference not set to an instance of an object.
    The code is:
            Dim strPoItem_Schedules As BAPIEKET
            Dim tblPoItem_Schedules As New BAPIEKETTable
            'schedule lines
            strPoItem_Schedules.Po_Item = "00001"
            strPoItem_Schedules.Serial_No = "0001"
            strPoItem_Schedules.Deliv_Date = "20040407"
            strPoItem_Schedules.Quantity = CLng(1.0)
            tblPoItem_Schedules.Add(strPoItem_Schedules)
    Hope you can help coz I did the same with the PO line items table and it is fine...not sure why it is behaving like this for the PO SChedule lines.
    Cheers

    Reiner, no worries. I fixed it. My bad....careless, I  declared the BAPIEKET structure wrongly.
    Cheers

  • Purchase Order releated problem.........

    Hello friends,
             We are using SRM 5.0 ( ECS) . I am facing a problem when I am creating Purchase Order in SRM.  When I am clicking on Item tab getting u201CInternal TSKH error, session terminatedu201D  .   Previously it was working fine but now it is generating this error.
    Exception is
    1. The following error text was processed in the system SRD : Internal TSKH error, session terminated
    2. The error occurred on the application server srmdev_SRD_03 and in the work process 0 .
    3. The termination type was: TH_RES_FREE
    4. The ABAP call stack was:
    Form: GET_PRICING_PROCEDURE_INFO of program SAPLPRC_INT
    Function: PRC_INT_CREATE of program SAPLPRC_INT
    Function: PRC_INT_OPEN of program SAPLPRC_INT
    Function: PRC_PD_OPEN of program
    SAPLPRC_PRICING_API
    Form: PRC_LINK_READ of program SAPLBBP_PDPRC
    Function: BBP_PDPRC_GETDETAIL of program SAPLBBP_PDPRC
    Form: ITMPROC_F_GETDETAIL of program SAPLBBP_PDIGP
    Function: BBP_ITMPROC_GETDETAIL of program SAPLBBP_PDIGP
    Form: ITEM_F_GETDETAIL of program SAPLBBP_PDIAD
    Function: BBP_ITEM_GETDETAIL of program SAPLBBP_PDIAD
    I am not sure about this problem related with basis or Pricing procedure.  Even i am not getting any run time exception in ST22 . Please give me suggestions.
    Thanks in advance.
    abhijeet

    Please check your pricing conditions in SRM:
    SAP Implementation Guide
    ->Supplier Relationship Management
    ->SRM Server
    ->Cross-Application Basic Settings
    ->Pricing
    ->Check Technical and Customizing Settings for Conditions
    Check the below two option:
    Further Checks
          Simulation of Pricing with Manual Price
          Generation of Access Programs
    Regards
    Kathirvel

  • Purchase Order Tax Code

    Dear Experts,
    I just run MRP Procedure and generate Order Recommendations. In Order Recommendation created Purchase Order and got message as P.O. sent to approval. All is going well but there is one thing I just want to clarify that How can we update Tax Code in Purchase Order form hence In Approval Procedure we cannot update Purchase Orders Rows as well.
    Thanks in advance.
    Ravi

    closed.
    get it by Tax Code Determinaiton.
    Ravi

  • Maximize Purchase Order -- Error -- Its Urgent!!!!

    Hai To All,
                  Iam customizing Purchase Order Form. There iam adding one button near cancel button. If i maximum purchase order form i got the following error and SAP Application is closed.
    The instruction at "0x77fcb333" referenced memory at "0x000c0101". The memeory could not be "written".
    Click on OK to terminate the program
    Click on CANCEL to debug the program
    OK           CANCEL
    Can anyone help me........... Its Urgent
    Regards,
    Anitha
    Edited by: ani nazir on Mar 27, 2008 11:43 AM

    Hello Petr,
             S where i change place also its showing error.
    The following code i used to place the button
    oItem = PO_Frm.Items.Add("rm", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
                oItem.Left = PO_Frm.Items.Item("2").Left + 75 '150 '
                oItem.Width = PO_Frm.Items.Item("2").Width  '65 'PO_Frm.Items.Item("51").Width
                oItem.Height = PO_Frm.Items.Item("2").Height '20 '
                oItem.Top = PO_Frm.Items.Item("2").Top + 10 '505 '
                oItem.Visible = True
                oItem.Enabled = True
                Dim d As SAPbouiCOM.Button = oItem.Specific
                d.Caption = "RateMaster"
    Regards,
    Anitha

  • Purchase order tax calculation

    Hi,
    I am executing ME23N (with one purchase order doc no), here i want to know from where the tax codes (amount) will coming.

    what i need here,
    after executing ME23N, for a purchase document
    based on the condition type, it gives the condition values.
    now i need to find out from where the condition value is coming.
    Thank you.

  • Extended classic purchase order tax calculation

    We are running extended classic on SRM 4.0.  We are connecting to our R/3 backend version 4.7.  The backend is utilizing Vertex for it's tax calculation.  We have confirgured SRM to use the backend for tax calculation. 
    We have a 5% state sales tax and a 1% local option sales tax at this location.  If we procure an item from a vendor residing in the same state then the local option sales tax applies (i.e. 6%).  If we procure an item from a vendor outside of the state then the local option tax does not apply (i.e. 5%).  I've tested this by creating PO's on the backend for both scenrios and the tax is calculated correctly.
    The issue we have is that the shopping cart is calculating the tax amount correctly, the replicated purchase order in R/3 also has the correct tax amount, however the purchase order residing in SRM does not have the correct amount, it is always calculating 6%, which is incorrect.
    My question is does anyone know the function module being called to calculate tax when the SRM PO is being created?  For the shopping cart I have verified that BBP_CALCULATE_TAX_ITEM46B is being used, is it not the same for the SRM PO?
    Best regards,
    Shawn O'Connor

    Hi Shawn,
    I do not know your SRM release... but did you already see OSS note 656398 and 888896 ?
    Hope this helps,
    Regards,
    Yann

  • Purchase Order Tax Codes

    Currently when my organization creates a purchase of raw materials I have been noticing that when i look under the taxes subheading under items that the tax code becomes 16 - import tax at a rate of 5.5%.  These types of purchases should not have any tax associated with them as they are part of the manufacturing process.  In lieu of our procurement team going in on each and every purchase order to correct this, is there a way to change our master data so that the default becomes a different code?  I have been looking in business configuration to change this but have not found where I need to go.  Has anyone else experienced this and perhaps could point me in the right direction?

    Dear Andrew,
    There is an option in the Product Master Data to set-up Tax Code for any particular Material that may have Tax Exemption or Reduced rate etc.
    Please check Product Master under "Tax" tab and see if this will serve the purpose.
    Regards
    Nick

  • Purchase Order Tax Determination

    Hi Experts,
    We have a scenario for taxes in our Purchase Order that I need help understanding.  Our Plant is based in the the NJ within the US.  Occasionally, we purchase items from a Vendor based in NJ; however, the Supplier is based in PA.  In this case, the items are taxable and subject to NJ and PA taxes.  The PA tax is 6 % and the NJ tax is 7 %.
    Based on NJ tax law, "If you make a purchase in another state which has a lower sales tax rate than New Jersey, use tax is due at the rate of 7%. If, however, that state has sales tax reciprocity with New Jersey, a credit is allowed for the sales tax paid to that state." In this particular case, we are interpreting any purchase from PA to NJ will incur a PA sales tax of 6 % and a NJ sales tax of 1 % (since there is a credit with PA and the PA tax is less than the NJ tax).
    In our Vendor Master, we have the Goods Supplier partner tax jursidiction populate on the Invoice Tab of the Purchase Order which will give us the PA 6 % sales tax based on our configuration within transaction FXTP.  However, the "use tax" for NJ is not determined in this fashion.  It appears that the Taxes on this tab are only in relation to the PA tax jurisdiction code which is determined on the Invoice Tab.  Under the conditions tab, we have conditions that will give us all of the necessary percentages.  However, these percentages do not appear to be reflected for the taxes under the invoice tab.
    Are the taxes under the conditions tab in any way linked to those taxes determined under the invoice tab of the purchase order?  Can anyone help me understand the relationship between condition taxes (such as Condition Type NAVS) and the Taxes (under the Invoice tab) within a Purchase Order?
    Thanks for your help in advance.
    John

    Hi,
       If the condition category is N (non deductible taxes), condition class is D and cal type is B for an MM pricing condition type (in M/06), system will bring all the non deductible taxes (with account key NVV or similar) from tax procedure (invoice tab - taxes window)  to MM pricing procedure (conditions tab).
       If the condition category is D along with the above combination, for an MM condition type in M/06, system will bring all the taxes (including deductible and non deductible) from tax procedure to the MM pricing procedure.
    Regards,
    AKPT

Maybe you are looking for

  • Acomdata External Firewire Drive Problem?

    Just purchased a new Acomdata E5 320 GB Firewire external hard drive. Drive will simply will not mount onto desktop. Checked connections, turned on/off, unplugged cables, etc. Nothing has worked so far. I ran System Profiler and it states "Unknown De

  • Premiere CS6 not opening in OS X 10.9.1 Mavericks.

    Hey guys. I'm so tired at this point...I spent almost two working days trying to make AE and Premiere work after updating OS X yesterday to 10.9.1. AE works, but Premiere CS6 doesn't even open. It starts but then I get the beach ball and after severa

  • Problem in HTMLB :(  Very very very URGENT..Please help

    Hello All, I have a problem in HTMLB. <u>Scenario</u>: 1. Am implementing a JSP DynPage Portal Component. 2. Have a class called "BeanOrderDetails", which consists of an Object table and mapped fields like ModelNo, Qty, etc as the Column Names in thi

  • Error trying to update apps

    When i try to update an application if i hit the "update" button what i get is the application starting instead of updating, how to solve? never happened before. Thank for the help

  • Inconsistency TemSe -- Batch input logs

    Hi folks, in our system there is an inconsistency between the TST01 table and APQL table. APQL has a lot more entries than TST01. Now I tried to reorganize the batch input logs with reports RSBDC_REORG and RSBDCREO. Unfortunately both reports use fun