Condition type JEXP not picking in sales order

hi
i was working with all configuration of TAXINN
i am facing with a problem
when i am running mine sales order i am not able to see condition type JEXP(BED) , JEAP (AED)
can i now where i am gng wrong
whereas i can see all the other condition in sales order
but when i enter it manually JEXP it is taking but in again in billing it is not showing
can u plz help me
Regards
Vini

Dear Vini,
Please Check the configuration settings through IMG path
SPRO>IMG>Logistics general-->Tax on Goods movements >India>Basic settings-->Determination of Excise Duty -->Maintain Excise defaults here you check JEXP condition type is maintaining for A/R BED or not if not maintain then try.
Also check the condition record maintanance for the JEXP condition type through VK12 transaction.
I hope this will help you,
Regards,
Murali.
Edited by: Murali Mohan.Tallapaneni on Oct 1, 2008 6:51 AM

Similar Messages

  • Header condition type value not displayed in sales order output

    Hi gurus,
    I have observed a strange issue regarding a header condition in a sales order.
    we have a set up like following:
    1. If the Header condition XXXX is used in sales Order then this value should be printed on sales order output.
    2. If the Header condition mentioned in above point is not maintained in sales order it should print the total price of all line items.
    Though i have maintained the header condition value in Sales Order Header its not displayed in SO output.
    That is , I have a sales order and it has one HEADER condition type entered with 3500 USD.
    In fact this value is used for some business purpose and is being printed on the sales order output for a specific output type.
    But where as in a sales order this header condition value is not getting printed on the output though I am using same data as of the sales order which is having the header condition value printed on its output.
    According to business,we must have the header condition value printed on  sales Order output.
    Please suggest how to proceed.
    Thanks in advance.

    Not sure if you are using costom smartform to print invoice, if yes then ask developer to debug and find the root cause and fix it.
    You might need to give him condition when it shuld be printed and when not.
    You can take reference of another output type for which it is printing

  • Condition type value not update in sales order

    Hello Guru's
    As per the  sales order in VA01 the condition type value i.e surcharge value is not updating in sales order.
    But I have maintain the condition record(Surcharge)also and in Condition technique I have checked every thing is correct .
    please find below I have attached the Screen short .
    Please give me solution Asap.

    Hi Sukdev,
    Have you checked the respective pricing procedure for From and To reference step maintained against the condition type ZSUR?
    Regards,
    T.R.S.Praveen

  • Condition type is not reflecting in sales orders

    hi,
    i have created two condition type like jser (service tax) and other one is jste(service tax +cess) but in pricing procedure jfact  it is reflecting but while making contract order these two condition type is not accessing.
    please help in this connection.

    Hi,
    After Creating the CONDITION TYPES you need to assign the condition types in the PRICING PROCEDURE
    goto the
    SPRO->FINANCIALACCOUNTING>FINANCIAL ACCONTING& GLOBAL SETTINGS>TAX ON SALES /PURCHASE>BASIC SETTINGS--->CHECK CALCULATION PROCEDURE.
    Here select you procedure and assign the CONDITION TYPE
    regards,
    santosh

  • AFS grid value/valuation type not picked in sales order cost estimate

    Hi Experts,
    We have different valuation types in the material master. This is part of the AFS, where each grid value is a valuation type. While making a sales order cost estimate and in one sales order item, we have 3 grid values (valuation types), system is costing only for one grid value and that too for the entire quantity. This way the costing is wrong as different grid values have different BOMs and routings.
    Is there any specific setting to have the grid value to be picked up in the sales order cost estimate? Or am i missing some setting? in general product costing settings or AFS product costing settings?
    Best Regards
    Vimal

    Hi,
    Do you mean "sales order costing", please  if so then please ref. the link:
    http://help.sap.com/saphelp_46c/helpdata/en/90/ba6da4446711d189420000e829fbbd/content.htm
    Regards
    DSR
    Edited by: D.Srinivasa Rao on Nov 25, 2011 8:19 AM

  • Condition value is not displaying in sales order

    Hi Friends,
    when i am creating sales order, condition type(JEXP,JECP,JA1X..) is displaying in cond.type column and percentage(14%,2%,1%) is displaying in amount column and
    the condition value is not displaying in cond. value column in conitions tab of  sales order.
    In analysis it is showing as condition record found...
    please help me...
    with regards

    Hi,
    can it be that you have a problem with units of measure? Often, if there is no value in Condition value, the problem is in the master data of material. Did you use standard schema? If you not, have you tried it with standard schema? What is your value under "per" and "UoM"?
    Regards Thomas

  • Report of condition types per line item in sales order

    Hi all,
    Is there any report that can tell me all the price conditions that are allocated to a sales order line item? I am talking about the actual conditions relevant for a line item, not only conditions that have a condition record setup.
    So I would like to key in sales order number, the line item and get a report of all conditions that are allocated to that line item in the specific sales order.
    If there is no such standard report, does anyone know what tables to link?
    Thanks in advance,
    Lars

    Hi Lars,
    In my current customer they had the same requirement and after almost 1 month of analysis we decided to build a custom report to execute this.
    And as an enhancement we compare prices from the sales orders and the sap price records in order to check the differences.
    First we need to find all the open lines (status and reason for rejection (ABGRU)), than loop KONV and select the  KSCHL (condition types) you want, material text descriptions, etc.....of course a lot more in terms of coding.....;-)
    This was the form I used :
    FORM FIND_SO_PRICES.
      LOOP AT IT_ITEM_REPORT.
        REFRESH IT_PRICING.
        SELECT KSCHL KBETR WAERS KPEIN KMEIN KUMZA KUMNE
          INTO IT_PRICING
          FROM KONV
         WHERE KNUMV = IT_ITEM_REPORT-KNUMV
           AND KPOSN = IT_ITEM_REPORT-POSNR
           AND KINAK <> 'M'
           AND KINAK <> 'X'.
          APPEND IT_PRICING.
        ENDSELECT.
        READ TABLE IT_PRICING WITH KEY KSCHL = 'XXXX'. -> My price condition
        IF SY-SUBRC = 0.
          IT_ITEM_REPORT-ZSP1 = IT_PRICING-KBETR.
          MODIFY IT_ITEM_REPORT.
        ENDIF.
        READ TABLE IT_PRICING WITH KEY KSCHL = 'XXXX'. -> My discount condition
        IF SY-SUBRC = 0.
          IT_ITEM_REPORT-ZSD1 = IT_PRICING-KBETR / -10.
          MODIFY IT_ITEM_REPORT.
        ENDIF.
       IT_ITEM_REPORT-LIQ = IT_ITEM_REPORT-ZSP1 - ( IT_ITEM_REPORT-ZSP1 * (
                                              IT_ITEM_REPORT-ZSD1 / 100 ) ).
        MODIFY IT_ITEM_REPORT.
      ENDLOOP.
    ENDFORM.                    " FIND_SO_PRICES
    Please tell me if this helped you,
    Regards,
    Alcides Fialho

  • Rebate Condition Type cannot be reflected in sales order?

    Hi Guru:
    It seemed to be a issue? I set up the rebate agreement and ran the vbof successfully regarding this condition type rebate,and the retroactive billing also can view its rebate condition type as well as the accruals,and I believe the rebate settlement had been run too,credit memo to customer will be aslo routed to accounting side for sure,but I failed to see the rebate condition type and accrual value in the sales order based upon the retroactive all billings,please advise what I should do,thanks.

    Hi Klaas,
    If I remember well, in the standard price determination there is a conditional formula that only shows rebate conditions in the invoice, therefore you should not see rebate conditions in the sales order.
    That is standard functionality.
    For a Customer I took out the formula condition in the pricing so he could actually see the rebate condition in the sales order, the reason was to had access to this information before end of month invoicing. The problem is that in case of changes in rebate agreement or in case of retrospective agreements the rebate condition is only updated in the invoice, not in the sales order.
    Best Regards,
    Franck

  • UOM problem and PR00 not picking in sales order

    Dear Gurus,
    Material UOM -->       CARTON
    Additional Data -->     30 PC= 1 CAR
    VK11 -->                   1pc = Rs.10
    When raising a Sales order, system is not picking up PR00. When checking in VK13, system is showing
    1 CAR = Rs. 282.03
    How is this happening? If 1pc is Rs.10, 1carton should be Rs.300.
    Yesterday i put a question in this forum asking if i can sell in pieces after entering UOM as carton. I was suggested to put 30pc = 1carton in Additional data, which I did and checked to find the system working fine. But today to show this to my boss, system is not picking the PR00 and its value in VK13 as 282.03.
    I am totally confused here. Plz help me from this maddening situation.
    Thanks and regards.
    Venkat

    Hi
    Go to sales order -> item data -> conditions tab and click on analysis , see what is the message system  is giving.
    Another clarification is that when system is not picking PR00 ctype then how you are able to tell the value is 282.50.
    Check the step in Pricing procedure for PR00 where you have assigned.
    Regards
    Srinath

  • Manual Condition Type should be visible in Sales order by default

    Hi
    How to maintain manual condition types in Sales orders by default. They will be maintaining the value based on the discussion they had with the customer(Negotiated price). The condition type should be visible in the procedure and they will only enter the value.(The method of keying condition type manually is not accepted by the client).
    Thanks in advance.
    Regards
    Vamsi Javaji.

    Hi,
    In the PRICING PROCEDURE V/08 maintain the CONDITION TYPE as Mandatory
    In the CONDITION TYPE V/06 maintain the field  MANUAL ENTRIES  as C which is Manual entry has a priority.
    And check the box VALUE
    Now maintain the condition records for the condition type in VK11 with 0 value
    Now while processing the sales order the CONDITION TYPE will trigger from the CONDITION RECORDS with 0 value and this can be in EDITABLE mode ( and maintain the value)because of the check box VALUE you flagged in V/06.
    Please try this and revert back if you need further details
    thanks,
    santosh

  • Partner  VN is not picking in sales order pricing

    Hi
    My client requirement is system has to calculate commission amount depend on the combination of sold to party and commission agent(created as vendor).
    I defined one condition type by adding access sequence in that access sequence i have maintained one table which is having fields of VKORG, KUNNR, LIFNR. and i have maintained condition records with this combination,
    And i maintained VN partner in CMR &  it is coming into sales document header and item
    Even thou system is not picking the condition value, in analysis system is not picking the vendor number (access not made)
    can any body suggest me on this issue
    regards
    bvdv
    Edited by: bvdv on Oct 14, 2008 3:13 PM

    Vendor will not be automatically populated in the pricing stuctures. You will have to use exit USEREXIT_PRICING_PREPARE_TKOMK in program MV45AFZZ to fill the pricing communication structure.
    Regards,
    GSL.

  • Condition Type JSRT not picking Condition Base Value in Pricing Procedure

    Hi Friends,
    In a procedure System is not picking condition base value for condition type JSRT. I have checked the tax procedure and found alternative Cal Type is 17 and is working fine for Domestic vendors.
    Friends i need your help in sorting out this issue. Pls suggest what I can check in order to sort out this issue.
    Rgds, Krishan Raheja

    Hello!
    In TAXINN the base value for the condition JSRT is picked up from step 100.
    I suggest that you change the "From" value to 100 instead of whatever you may be using
    Then test the transaction once again.This will not affect your normal service tax calculation either. So please make this change & try using S1 for planned delivery cost.
    Hope this helps !
    Cheers!
    Plauto
    Edited by: Plauto Abreu on Feb 11, 2011 9:03 PM

  • How to set a condition type to inactive/statistical during sales order crea

    Hi
    There is a manual header condition (Z0L1) in one our pricing procedure which I want to set to inactive or make it statistical during sales order (doc type Z9) creation in some scenarios.
    How can I achieve?
    Can I use user exit USEREXIT_PRICING_CHECK (Program MV61AFZA) and what code should I write here. Any help would be highly appreciated
    Regards,
    Javed

    Thanks for your replies. Basically this condition type is a manual condition type which will be entered in sales order and then will be available in billing document. But when there is a return order created with reference to that billing document then I want that the manual condition is not deteremined in the return order.
    I tried by assigning a requirement to the condition type in pricing procedure but seems to be pricing requirement don't work for manual header conditions. Then I tried to assign a condition value formula and tried to set the value to zero in case of return orders but that also did not work.
    Then I also tried to apply the same logic in user exit USEREXIT_PRICING_CHECK  in the following programs
    LV69AFZZ
    MV61AFZA
    But still it did not work. Any help would be highly appreciated
    Regards
    Javed

  • Enter condition type several times in a sales order

    Hello Gurus,
    I have a Pricing Procedures with net price minus some discounts and sales price. This is standard. One of the discount condition types you can enter manually in a sales order. Now my problem. This discount  condition type you can enter several times in a sales order. How I can solve this for one time enter.
    Regards
    Artur

    Yes, it is a standard behaviour only, you can only control with User exit only. Include MV45AFZZ , co ordinate with your ABAPer for the same.
    Regards,
    Ramesh

  • Stastical Condition Type is not working in Purchase Order

    Hi All,
    I created a pricing procedure and Bank charges are created as a condition type which is stastical. I assigned a account Key and Accural key for the same condition type. We activated Purchase Account Management
    Purchase order is raised with USD 100, ank charges(%) which will be calculated on Base price, for example Bank charges is 1% then bank charges will be USD1.
    I want these bank charges should not be added to the material cost. But when we are doing GR accounting entries as below.
    Stock account 101     +       
    GR/IR     100     -       
    Pur acc     100     +       
    Pur Offset     101     -       
    Bank chargesAccount key     10 +       
    Accural     10     -     
    In the above Bank Charges are added to Stock account which is not required.
    Even though I created the Bank charges Condition type as Statical still the value is adding to  the stock account.
    Thanks and Regards
    durga

    Hi Durga,
    Most importantly whenever we create a condition type with statistical check box it means that value will not be included in Net price calculation this is the only purpose of statistical check box.(Like any freight charges it will go to your stock a/c even though statistical check box is there in your Pricing procedure)
    When you create condition type for any charges with Cond.category B Delivery costs and Accrual check box in M/06 by default it will go to stock account, but you can restrict that by using a functionality
    Check this link for complete process
    http://wiki.sdn.sap.com/wiki/display/ERPLO/PostingplanneddeliverycosttoNon-inventoryaccount

Maybe you are looking for

  • Query Invoices based on checked sites WHEN_BUTTON_PRESSED

    Hello, I am newbie to Oracle Forms, Please correct me if iam wrong. Requirement: I have a Master-detail Block with Vendors and Vendors Sites. When i query a vendor, all his sites also will be listed. Against each site there is a check box. When i sel

  • Exclamation marks when i click on thumbnail in i photo

    Hi all, When I click on the thumbnails in IPhoto the picture won't come up, I just get an exclamation mark. I restored my librry from time machine, but not sure where I am going wrong. Any advice appreciated Thanks

  • Movie distortion when burned using iDVD 6

    Hello, I am creating a movie with iMovie 6 and when I tried to preview a 'work in progress' version on my TV by burning a DVD using iDVD 6 there is a problem. What happens is whenever there is rapid movement of a subject, eg an arm movement, the subj

  • Raw file image...

    I was importing raw file image to lightroom, after few seconds the image automatic help me to change the original colour but when I'm using JEPG doesn't have this problem. How to fix it?

  • Change of iCloud username

    I changed my iCloud username.  However, I now don't seem to be able to update my iCloud details on my devices & therefore can't sync them.  Any suggestions?