Excise problem in case of free items

Hello,
My user is having following issue.
Vendor has sent 3 items, out of which one is free sample. But on that excise has to b paid by us (which is approx 3000rs). So when user is trying 2 do GR, first 2 items dont hav any problem, but after checking  ITEM OK tab in case of 3rd item(which is free sample), system shows run time error (A value does not fit in a calculation field.)
What may b the remedy for it. How 2 handle this?
Thanks.
Edited by: sapsarang on Oct 29, 2009 6:24 AM

First if you don't want to take credit of the free sample then follow the below procedure:
1. Do the GRN for all the three item and for the free item in the excise tab at the item level select the material as non cenvatable. Just remember to add base value of the item
2.  If you want to capture the Part1 entry then just do the normal transaction and while posting the excise with J1IEX just remove the excise duties for the free item.
3. For paying the vendor the excise amount, just do subsequent debit in the MIRO and in the details tab add in the unplanned delivery cost the amount that you want to pay for the excise duties
Second case if you want to take credit of the duties:
1. Do the Normal GRN process, add the base value and excise values for the free item.
2. Post the Excise duites with J1iEX.
3. The with the account entry you can settle the excise payment
Hope this will help you
Enjoyyyyyyyyyyy
Akshit

Similar Messages

  • Excise cycle in case of cenvatable items

    Hi SAP gurus
    A po is raised for a cenvatable item.can some body please guide how the excise entry will appear and what stage.Kindly give the process wise T code . Points will be given.
    Thanks in advance.
    sk

    Hi, Sai Krishna,
    Please send me the same what you have sent to Mr. Surendra for me also it is very important . points will be awarded.
    My mail ID  : [email protected]
    Thanks in advance
    Ramesh

  • Free item reference document number not populated in MIGO item screen

    Hi
    I have a requirement where in I would need to populate the reference document number in the MIGO item when I am cancelling a goods receipt in case of free items.
    In standard SAP system we know that it would only be populated when GRbased IV is ticked in PO but in free item PO this is not ticked . So was enquiring if any body knows how we could populate the reference document number at GR cancellation in MIGO item level for free items .

    Hi,
    If you mean the field MSEG-SMBLN, then it is always populated at cancellation, no matter the GR-based IV flag.
    BR
    Raf

  • Excise capture in import po for free item

    Dear Friends
    I am having an issue.
    I have created an import po for free item.
    As the item is free of cost,system will hide the conditions tab item details tab.
    But we are paying the all the duties like CVD,Import Duty ,cess etc for the free item.
    The item detail tab is hidden, I cannot enter the planned delivery costs for the item
    Please advise me how can I capture Excise Invoice for the free itme in import PO
    Thnks

    The only way to do it is to assign a small notional value (like 0.01 USD) to the item, so that the conditions tab does not disappear.
    The only problem will be that the GR/IR clearing account will have an open entry, which can be cleared via MR11 with minimum accounting impact.
    Regards,
    Aroop

  • HT201359 i have a problems while purchasing or download a free item in apps store or itunes, it said that you have a problems with previous purchase, it also said that my payment method was decline.,..

    i have a problems while purchasing or download a free item in apps store or itunes, it said that you have a problems with previous purchase, it also said that my payment method was decline.,..

    Hi shldr2thewheel,
         it has been a while since we have last spoke, I would like to let you know, I am still working on getting used to the switch from windows to a Mac/Apple system. I do have a new question for you, I did purchase In Design CS5.5 through journeyed.com through Cuyahoga Community College of which I attend as a student, is there a way to purchase an online book through iTunes to learn that as well? Also, you know me, the struggling student, I would also, when and if the book can be purchased through the iTunes, would need to know if you do know of a much easier book for struggling students like myself and at a reasonable price as well for the In Design CS5.5 program. Our campus bookstore had closed early, and, so did the colleges library and our local library here where I do live, so, I cannot go to either place to purchase a book or to take out a book, plus cash funds are low at this moment as well but, I do have money left on the iTunes account to use, if it can be used. So, can it be used, the iTunes money, towards finding a low priced online book? I am in great need of assistance as I have a project due for my one course for this Tuesday, September 4, 2012.
    Sincerely in need of help once again,
    Kim

  • Free items handling in import case

    dear
    i want to know that how custom duty and fright costs takenh into account for material having net price in purchasec order zero i.e.entering as free items indiacator on .how this hanled in import cases .

    Hi
    You need to create the customs department as Vendor in SAP .
    If you  are  getting the material free of cost then SAP provides you to create PO with"Free Item" indicator or
    create PO with Invoice reciept as unticked in Invoice tab as we dont recieve Invoice from vendor.
    But we need to pay to customs as this is Imported item.
    When we use the  "Free Item" indicator  or Invoice reciept as unticked in Invoice tab  then the condition tab where we mention the conditions  disappears so we need to handle by FI module

  • HT4539 I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I down

    I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I downloadeder pro but I don't kno way to do?

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

  • Problem in case of or condition in  where clause in case of leftouter joi.

    hi
    i am encountering a wierd problem.
    in a select query if i have a left outer join and a or condition in where clause the order of condition in or matters and if i use a to_char problem is solved.
    see query below
    select * from custsupp left outer join Salesperson s on custsupp.sales_rep = s.id ,state a where (CS_FLAG='C' or CS_flag ='B') and custsupp.state = a.id
    i have a single record in table custsupp with CS_FLAG ='B' the above does not return result. but if i move CS_FLAG='B' on left of or i.e
    select * from custsupp left outer join Salesperson s on custsupp.sales_rep = s.id ,state a where (CS_FLAG='B' or CS_flag ='C') and custsupp.state = a.id
    i get the rsult.
    also if i remove left outer join and keep order of condition as it is i get result i.e
    select * from custsupp ,state a where (CS_FLAG='C' or CS_flag ='B') and custsupp.state = a.id
    also if i add a to_char to co,umns CS_FLAG i get the result.
    select * from custsupp left outer join Salesperson s on custsupp.sales_rep = s.id ,state a where (to_char(CS_FLAG)='C' or to_char(CS_flag ='B')) and custsupp.state = a.id
    why it is so?
    CS_flag is of type nchar
    Shreyas
    Edited by: shreyasd on Jun 9, 2010 11:07 PM

    First if you don't want to take credit of the free sample then follow the below procedure:
    1. Do the GRN for all the three item and for the free item in the excise tab at the item level select the material as non cenvatable. Just remember to add base value of the item
    2.  If you want to capture the Part1 entry then just do the normal transaction and while posting the excise with J1IEX just remove the excise duties for the free item.
    3. For paying the vendor the excise amount, just do subsequent debit in the MIRO and in the details tab add in the unplanned delivery cost the amount that you want to pay for the excise duties
    Second case if you want to take credit of the duties:
    1. Do the Normal GRN process, add the base value and excise values for the free item.
    2. Post the Excise duites with J1iEX.
    3. The with the account entry you can settle the excise payment
    Hope this will help you
    Enjoyyyyyyyyyyy
    Akshit

  • Free item & Conditions

    Dear Experts,
    I created a free item in the PO but the problem is i want to add value conditions to it .. the condition tab in the item details doe not exist .. but i used the condition tab in the header .. and i did a GR against this PO .. but no FI documents was generated for this GR .. and when I tried to create Invoice for it using MIRO .. the system told me that there are no suitable items in this PO
    Please Advice

    Thanks first for your quick response .. but let me explain more :
    The business  is that there are free items comes from abroad but there are conditions like fright have to apply for it .. how to do such case on SAP ??
    Thanks in advance

  • Basic excise duty calculated in duty free deemed export

    Hi Experts,
    We are facing an issue where system calculates basic excise duty in case of deemed export(duty free) . In some invoices it calculates basic excise duty though it should not calculate as it is duty free.
    Our scenario is like this:-
    At sales order  in deemed export we take alternative tax classification as "7"( Header level - Billing tab). Due to this my JMOD value becomes Zero which is ok. Another condition type is JEX2 which is 100% of JMOD.
    Now while creating invoice at VF01, value of JMOD AND JEX2 are Zero which is absolutely OK. But at the time of release to accounting system update 12% value in JEX2 only which flows to G/L.
    Example:-
    This case is ok.
    Condition type                                      Price
    PR00                                                  100
    UTXJ(100% Of PR00)                           100
    JMOD                                                 0
    JEX2(100% OF JMOD)                         0
    Wrong duty calulation
    Condition type                                      Price
    PR00                                                  100
    UTXJ(100% Of PR00)                           100
    JMOD                                                 0
    JEX2(100% OF JMOD)                         12
    In our most case this work fine means if JMOD is 0 then JEX2 is also 0, But in some invoices system calculate or update JEX2 with 12% value after release to account which is not at all required.
    We have checked all the customization setting which are ok.
    Please advise why system is behaving this way only in case of some invoices.
    Your efforts will be highly appreciable.
    Regards,
    Dharminder

    Dear Experts,
    If anyone face this issue please give your valuable inputs. I will highly appreciates if got some advise or suggestion on the  issue in J1IIN
    We have done the debug at our end and following is the observation
    The name of the include is - MJ1IINF01
    The variable that needs to be watched is - CUST_TYP
    The perform called during the execution is DETERMINE_INVOICE_TYPE
    1) Export first and deemed next
    When we first create invoice for export the variable CUST_TYP is set to
    “F” and the invoice is created as per expected with correct duties.
    After this if we create a deemed invoice without exiting the screen the
    invoice type under “UTILIZATION”, include keeps CUST_TYP as “F” and
    do
    not change it to “L”. Hence it remains export. Which is the cause of
    problem we are facing at present..
    But in next case it changes CUST_TYP properly as explained below.
    2) Deemed first and Export next
    When we first create invoice for deemed the variable CUST_TYP is set to
    “L” and the invoice is created as per expected with correct duties.
    After this if we create a export invoice without exiting the screen the
    invoice type under “UTILIZATION” include changes CUST_TYP as “F” and
    hence we get desired effect.
    Our analysis shows that the include is not able to change variable
    CUST_TYP to “L” from “F” in first case. But in second case it is
    correctly changes to “F” from “L”.
    Please advise.
    Regards,
    Dharminder

  • Force free item (TANN) in the sales order?

    Is there any way to force a free item (TANN category) to be added to a sales order (VA01)? Standard configuration cannot be used because users want the item to be added after they have filled in an custom (Z) field on a line.
    With standard free goods determination free item is added immediately after user hits [Enter]. But in this case they enter data for the line, hit [Enter], SAP goes through all its stuff and only then the field becomes available. After they fill in the field and hit [Enter] SAP doesn't go back to the same place where normally free goods are determined.
    Could I use some flag to fool the program into going back or is there an FM that I could call? Does anyone know where exactly standard free goods determination is performed?
    I've been debugging the whole day, so your help will be trully appreciated. Thanks!

    Thanks for your response. Basically yes, they want just to add a free item to the order, it's just not based on the material entered (otherwise standard would have worked fine) but on the custom "deal" field.
    User expectations are along these lines:
    1. User enters material, quantity, sales unit.
    2. Use goes to the tab 'Additional data B' on the item
    3. User enters 'Deal" and hits Enter (or goes back to the overview screen).
    4. Free item appears.
    The problem is that standard free goods determination happens between 1 and 2. Nothing happens between 3 and 4.

  • Free goods-more than one material as a free item in sales order

    Hi,
    We have a requirement for our client in free goods scenario in which the client wants to give more than one material(2or3 etc) as a free item in the sales order.I have already explored the slaes BOM functionality,anyother suggestions other than Sales BOM will be of great help to me.
    Thanks

    Hi Sam,
    Check out my [post|Re: Free goods process requirement] wherein I had the same problem once upon a time.
    We tried all possible things, however concluded that through std SAP functionality the same is not possible.
    FYI:  Free Goods doesnt support BOM, Sub items, Product selection. etc.
    Regards,
    Amit
    Edited by: Amit Iyer on May 12, 2011 3:01 PM

  • Free items in automatically created POs

    Hello gurus,
    we would like to create POs automatically using MRP. The problem is that some of the materials are always free goods.
    So if I created the PO manually, i would tick the free item checkbox. Can this be done automatically?
    Thanks
    Alicia

    Hi,
    yes , it is possible to get the free goods indicator automatically,
    ask your ABAPer to develop a program to get the indicator automatically wrt to the document type,
    related check box field is " UMSON " in the table EKPO,
    here is the code, which may be helpful to you,
    DATA: WA_EKPO TYPE BEKPO.
    *TABLES ekko.
    Making Free Item Checkbox Mandatory for IMF Doc. Type
    IF SY-TCODE EQ 'ME21N'.
    IF I_CEKKO-BSART EQ 'IMF'.
    READ TABLE IT_BEKPO INTO WA_EKPO WITH KEY UMSON = ' '
                                              EBELN = ' '.
    IF SY-SUBRC EQ 0.
    MESSAGE E033(ZMEG) WITH WA_EKPO-EBELP.
    ENDIF.
    ELSEIF I_CEKKO-BSART EQ 'IM'.
    READ TABLE IT_BEKPO INTO WA_EKPO WITH KEY UMSON = 'X'
                                              EBELN = ' '.
    IF SY-SUBRC EQ 0.
    MESSAGE E034(ZMEG) WITH WA_EKPO-EBELP.
    ENDIF.
    ENDIF.
    ENDIF.
    rgds
    Edited by: lakshmi reddy on Mar 2, 2010 12:22 PM

  • Calculation of sales tax for free item

    Dear SAP B1 Experts
    I have query regarding sales tax calculation for free item .
    For EG.  I have two item for sales (A = 1000,  B = 100)   Sales tax is VAT4%
    But when i am doing sales, i am selling B for free of cost with A for Rs 1000/- 
    here my tax calculation is (1000 *4%)  = 1040/-
    but as per the govt sales tax rule, we are liable to pay the tax for free item as well
    So I this case, In SAP B1 how we will calculate the tax 4% for free item  .
    Please help me.
    Thanks

    i have checked, its working okay, but
    in Invoice print out unit price and line total is showing for free item.  How i make the unite price 0 .
    Tax only calculation is based on the Line total and the line total is based on the unit price.
    in that case when i give the invoice to the customer.
    It should show like this
    Item A       100   * 10         1000
      "    B           0   * 1              00
                                             1000
    4% tax                               44
    Doc Total             =           1044
    thanks
    Regards

  • Free item contained saleorder showing  openorder after released to accounts

    Dear Consultants,
                           Created a sale order with normal item with free offer.Free Item category is TANN.After the sale order is created
      and saw the overall status in va02 it is open.It is OK.
          If i do delivery for the sale order there is no problem in saving.Delivery number is generated.
    Now if check the open sale order in VA05N it is showing this order in open.(Now in VA02 if i check the overall status of the items normal item is showing status complete but free item is showing Overall status as being processed.
    When this problem  is raised open orders ratio is increasing in VA05N.
    Pl show me a solution at the earliest.Useful answer is awarded without fail.
    This is an immediate requirement.
    Edited by: akdevavarapu on Jun 25, 2010 6:27 AM

    Hi,
    Check if you have userexits running that handle the data of status, for instance, USEREXIT_MOVE_FIELD_TO_VBEPKOM
    in the include MV45AFZB or FORM USEREXIT_MOVE_FIELD_TO_VBEP in include MV45AFZZ.
    I hope this helps you
    Regards
    Eduardo

Maybe you are looking for