BED value getting ZERO.

Hi Friends,
When  i create Excise invoice(Exports Under Bond),In the initial screen the BED value is showing,but
when I click on Utilization button, the BED value getting "Zero".
Pls help me.
Regards,
Azeez.

Hi
  Under "Maintain Excise Defaults" ( CIN customization), If you are using only one BED condition type say for example JEXP. Then you have to maintain JEXP under A/R BED Cond and BED Perc.
If you are using both total and percentage condition type in your pricing procedure. Say for example JEXP (perc) and JEXT or JEX2 (total cond) then you have to maintaine A/R BED cond JEXT or JEX2 and JEXP under BED perc.
Also please check you have classified condition type for JINFAC as well as your pricing procedure under classify condtion types.
Regarding user exit:
You can set a break point for Suppress Calculation and run J1IIN transaction and select utilization screen then system will go to debug mode. Here you just change the Suppress calcualtion = X and change it and save it. If BED is flowing then obtain the access key.
Regards
MBS

Similar Messages

  • BED value displaying zero while creating J1IIN

    Dear SD Gurus,
                                   I created VA01, VL01N and VF01 with excise condition & i got Bed value is showing in VF03 but when I created J1IIN from billing document, BED value is zero.
                        i have maintained below fields
                       1) Maintain Excise Defaults.
                       2) Classify Condition Types.
                       3) Account Determination.
                       4) Outgoing Excise Invoices.
                       Please provide the solution in which i can get BED value at the time of j1iin.
    Regards
    Puneet

    Hello
    Please follow
    SPRO>IMGO>LOGISTICS GENERAL>TAX ON GOODS MOVEMENT>INDIA>BASIC SETTING>DETERMINATION OF EXCISE DUTY>MAINTAIN EXCISE DEFAULTS
    I guess you have taken TAXINN Procedure and now you will will go with TAXINN and in the 7TH Column i,e. A/R BED Condition..Please provide your condition type here from Pricing Procedure when you have chosen for BED....
    This Will solve your issue

  • Zero BED value when posted J1IIN excise invoice from billing document

    Hi Guys,
    I created VA01, VL01N and VF01. Bed value is showing in VF03 but when I created J1IIN from billing document, BED value is zero. I checked several places like below
    a) Logistics-General > Tax on Goods Movements > India > Account Determination > Specify Excise Accounts per Excise Transaction. Here ensure that for DLFC, necessary Account names are maintained.
    b) Similarly, in the next tab, Specify G/L Accounts per Excise Transaction, ensure that for that Excise Group, relevant G/L Accounts are assigned
    c) Finally, in Business Transaction tab, select Outgoing Excise Invoices where you need to ensure that you have assigned billing type to delivery type and also the default Excise Groups and Series Groups are maintained.
    I couldn't figure it out where the problem is. Please help me where to check and what should be done for this?
    Thanks,
    Manohar.

    I maintained excise defaults for TAXINN, I am maintaining A/R BED % which is coming in billing document but not in J1IIN. When I click on simulate it is giving a popup box saying 'No defaults could be proposed for Excise utilization' and click on continue then it is giving another message saying 'Excise modvat accounts not defined for GRPO transaction and E2 excise group'. Please help me what is it?
    Thanks,
    Manohar.

  • BED , AED , SEC value as zero

    Hi ,
    When I posting invoice I am getting warning message as  BED , AED , SEC value as zero. How do I sort out the issue . What are the pre-requisites required to be maintained for the same.

    please maintain
          tax code in ftxp
         condition records for tax codes in fv11
        in J1ID please maintain
                    material chapter id
                   material chapter id combination
                   vendor excise details
                   cenvat determination
                   plant excise indicator
      assign tax code to company code in log gen > tax on goods movement > india> Basic setting

  • Cess anf H cess valu 0(Zero)

    HI,
    iam maintain PP for Jinfac ....But iam not getting Cee and H cess value ....in Sales order iam getting Zero Values.....
    10     0     PR00     Price                                                                            ERL
    15     0     JASS     IN A/R Assessable Va               
    200     0     JEXP     IN: A/R BED %                         10                                       EXD
    201     0     JMAN     IN Manual excise                10       
    202     0     JEXQ     IN A/R BED                           10                                 EXD
    203     0     JCEP     IN A/R CESS %                        202                                     EXD
    204     0     HCES     IN A/R HIGHER CESS %         202                                      EXD
    Thanks in Advance
    Regards
    Raj.

    Hi,
    This is what i defined in my JINFAC Pricing procedure........for JEXP condition type i maintained 10 in From Filed.....so iam getting BED on Base price.....
    now what i did, i maintained 2 condition types called Cess (JCEP) AND H Cess(HCES) condition types....1% & 2% respectively.....everything is fine...now i need to add some discount and freight and Insurance......finally i need to see the Net value of the document....How can i check this in my sales order..
    Please revert me back if you need more clarity
    Regards
    raj

  • Check if field has value 0 - zero value on field

    Hi,
    I've got the following code:
    DATA: v_qtd TYPE i.
    SELECT-OPTION s_qtd FOR v_qtd.
    I'm using a Z table Z001 and there's a numeric field there that's filled with values >0 (greater then zero).
    If I have 6 materials and only 4 have the field QTD with a value:
    MAT 1000 QTD 1
    MAT 1002 QTD 5
    MAT 1003 QTD 1
    MAT 1005 QTD 2
    MAT 1001 and 1004 exist but don't have any entries in table Z001.
    I'm making a report to get the values from table Z001 depending on how s_qtd is filled.
    My problem is how can I get the materials 1001 and 1004? How can I check if s_qtd is the value 0 (zero)?
    If I check s_qtd IS INITIAL then I get all the materials (1000 to 10005).
    If I check s_qtd-low = 0 it's the same as IS INITIAL.
    IF s_qtd IS INITIAL.
         (all materials 1000 - 10005)
    ELSE.
         IF s_qtd IS NOT INITIAL.
              (materials with entries in Z001 1000, 1002, 1003, 1005)
         ELSE.
              (never gets here)
    I can't check s_qtd-low = 0 and s_qtd-high = 0 because it's the same as s_qtd IS INITIAL.
    Thank you.

    Hi Carlos,
    Try the below code:
    TABLES: z001.
    DATA: it_z001 TYPE TABLE OF z001,
    wa_z001 TYPE          z001.
    SELECT-OPTIONS: s_num for z001-qtd.
    START-OF-SELECTION.
    IF s_num-low is INITIAL and s_num-high is INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001.
    ELSEIF s_num-low is not INITIAL and s_num-high is INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001
    WHERE qtd eq s_num-low.
    ELSEIF s_num-low is NOT INITIAL and s_num-high is not INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001
    WHERE qtd BETWEEN s_num-low and s_num-high.
    ELSEIF s_num-low is INITIAL and s_num-high is NOT INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001
    WHERE qtd BETWEEN s_num-low and s_num-high.
    ENDIF.
    LOOP AT it_z001 INTO wa_z001.
    WRITE:/ wa_z001-mat, wa_z001-qtd.
    CLEAR: wa_z001.
    ENDLOOP.
    Revert back in case of any issues.
    With Regards,
    Giriesh M

  • Posting Unplanned Depreciation when asset net book value is zero

    We recently transferred some assets from one company code to another.  However, when they transferred, the depreciation all reversed out YTD.
    We are now trying to post the YTD depreciation back in under the original company code, but when we try posting unplanned depreciation, the following error message appears -
    "In area 01, you can only post manual dep. up to the amount 0.00"
    I believe this is because the asset does not have any net book value now.
    Any suggestions on how to resolve this?
    Many thanks,

    Hi Susan,
    do you have the option to reverse the transfer postings? If so, you could specify another period control for transfer postings (such as fiscal year start, etc.) in your depreciation key, with which you can influence how much depreciation is left back respectively transferred.
    It is correct that you can´t post an unplanned depreciation on the sending asset now, because the net book value would go below zero. As unplanned depreciation does not influence the ordinary depreciation in the year of posting, this value below zero can not be adjusted with a reduction of planned ordinary depreciation.
    I am wondering which effect you´d like to have on the sending asset. Did you post a complete retirement? If so, there should be no APC left which you can depreciate on the sending asset. And as the net book value is zero already, which effect do you want to get? You have to keep in mind that the non-depreciated APC will be continued to depreciate (normally) on the receiving asset. But maybe I misunderstood the problem here ...
    Regards,
    Markus

  • Eror message FF805 when mwst based condition value is zero

    Good morning,
    I got the FF805 (Tax statement item missing for tax code L1) error when i am trying release a billing document to accounting.
    I have three pricing conditions to the item: z001, mwst and z002. The tax condition is based on z001. Sometimes the z001 value is zero and z002 has always value. When the z001 is zero i get that error message.
    The tax value (mwst condition) only is required if the z001 has value.
    The z001 condition may have a value or may be 0. When the z001 has value there is no problem.
    There is a way that i can have this without getting this error?
    Thanks in advance.

    Hi Sandrina,
    Please Go thru the threads below,
    Error : Tax statement item missing for tax code
    FF805 Tax statement item missing for tax code
    FF805 Tax statement item missing for tax code O0
    Tax code error
    Thanks,
    Swamy H P

  • Can I have mannual condition value as zero in Sales order

    Hi
    I need to enter a mannual condition type in sales order in %, but it should not give me any value and it should be zero. In Pricing procedure I haven't maintained any values in from & to column, but then it is taking the value either from the base price or from some other value. Can any one tell me how to control this....and get zero as value in sale order though I enter in %.
    Regards,
    Ragu

    Hi,
    What is the function of the condition type if its effect is not to be evaluated in the pricing screen.
    anyways if thats the case, in the pricing procedure you can specify the counter no. in the from and to fields related to the condition type.
    you can enter the counter no. of the base price on which you want the percentage of the particular condition type to be executed.
    hope it would solve your problem.
    regards,
    Siddharth.

  • Net value is zero

    hi all,
              This is aravindh and i need your help to grow as a consultant.hope i will get support from u all..
               While creating sales order the net value is "Zero".. i have maintained condition technique,condition records.
              is there any other setting that has to be done to get the net value..waiting for the solution..thank u.
    Edited by: aravindh222 on Jan 27, 2011 6:50 PM

    Hi,
    You have not maintained the condition record for your material.
    Step 1 Go to VA02 and select item and go to conditions, there press analysis push button .This analysis will show the pricing procedure and the condition type attched to it.
    Step 2 Check if for the condition type like price PR00 , and discount K005/K007 Is accessed by the system ,the access and access sequence is mentioned with why the condition is found or not on the right side.
    Step 3 If the same is not maintained go to VK11 and maintain the same.
    Glad to help
    Regards
    Deepak

  • Current net value is zero in retro billing VFRB

    Hi Friends,
    we have used some z fields in pricing, almost all the fields are z fields in price determination includes condition base value.
    we are able to create sales order and billing document and price is also getting determined as required.
    Now the issue is we are unable to use retro-billing functionality, there the system is showing current net value as zero.
    Ex : My price is basing on weight (it is a service material), this weight is a z field.
           Landing Charges - 60 MT @ 100/mt, condition base value is 60 MT and price is getting determined as 60MT@100 equal to 6000.
    Z field is available in VBAK table and not in VBRK table.
    Now i am changing weight in sales order and running retro-billing, then it is showing current net value as zero.
    i am unable to find out the reason, what could be ????, pl help
    thanks in advance,
    Srini

    FYI -
    Retro Billing is used when you go for mass change of Base Pricing Condition Type in Billing doc(complete) based on Sold-to party & Material for a given range Billing date from & to. To do this you need agreement of your customer, and accordingly you make necessary changes in Base Pricing Condition Type condition record with proper validity date. Open ending validity date, might not be of much help to you in retro billing. So, when you execute Retro billing transaction for a particular date range, it considers condition records for Customer & Material key combination with validity of record laying in the date range provided.
    So, that might give insight, why retro billing is working for you scenario.
    Regards
    JP

  • Sysjobs: originating_server_id is getting zero instead of server id

    Hi 
    I am getting zero value in column originating_server_id of SysJobs table instead of getting server id whenever i am firing command like below
    use msdb
    select job_id,originating_server_id,name,enabled,description,start_step_id,category_id,owner_sid,notify_level_eventlog,notify_level_email,notify_level_netsend,notify_level_page,notify_email_operator_id,notify_netsend_operator_id,notify_page_operator_id,delete_level,date_created,date_modified,version_number
    from sysjobs
    How to bind @@servername instead of that originating_server_id  

    Use the below:
    select job_id,originating_server_id,B.name,A.name,
    enabled,description,start_step_id,category_id,owner_sid,notify_level_eventlog,
    notify_level_email,notify_level_netsend,notify_level_page,notify_email_operator_id,
    notify_netsend_operator_id,notify_page_operator_id,delete_level,date_created,date_modified,version_number
    from msdb.dbo.sysjobs A
    LEFT JOIN [msdb].[sys].[servers] AS B
    ON A.[originating_server_id] = B.[server_id]
    EDIT: Please refer the below link for more info related to SQL Job:
    http://gallery.technet.microsoft.com/T-SQL-Script-Get-Job-231229b4

  • 'Excise Balse value  is Zero

    Hi expert
    i am doing MIgo for STO Po, while doing Migo i am getting error 'Excise Balse value  is Zero
    regard
    nabil

    Hi,
    Check SAP Notes: 1171753 , 1042035 , 1035545
    Regards,
    Biju K

  • FSD Value getting rounded off in ECC

    Hi Experts
    I am  facing an issue at the time of transferring the FSD document  from TM to ECC. My FSD has 3000 USD value (approx) but at the time when it goes to ECC this value gets converted to 30 USD only i.e. the Service PO & Service entry sheet gets created for 30 USD only.I am using only one charge type FB00 is my TCM.
    I am not able to figure out how is the automatic rounding taking place. Even the payload from TM is bringing this value (3000) to ECC.
    Note: My FSD doc currency and company code currency are same.(USD)
    Would request your comments or inputs on this
    Thanks
    Edited by: Sanjeev Bose on Jan 20, 2012 9:57 PM

    Hi Michael
    Thanks for your reply
    Well somehow i was able to resolve this but this is not supposed to be required.Anyhow i feel there might be a bug.
    Anyways, i went down to the ECC>IMG>SAP Netweaver>general settings>Currencies>Set decimal places for currencies>Maintain blank OR zero for USD.
    That somehow resolved our issue.But i seriously dont think this should have been done. Maybe it just worked.After going into deep we found that if no entries are being maintained in the table TCURX then the system will be default taking a rounding upto 4 decimal places for the document currency that you are using.
    Thanks
    Sanjeev Bose

  • While posting po an error net value is zero

    hi everybody,
      while processing po i am getting an error that net value is zero inspite of entering the net price in the item data..
    can any one rectify this.
    cheers
    amith

    Hi,
    The Schema Group of Vendor is not assigned ur Vendor, U are entering during creation of Purachse Order.Check, If not assigned , assign it in XK02 in Purcahsing Data In Purchasing Organisation Data Segment and save.
    Now  try   creating PO..
    Regards,
    Biju K

Maybe you are looking for

  • How can i print an email without printing the attachment?

    I just got my new macbook pro retina display.  I am using Mac mail and want to know how I can print an email without printing the attachement.  Any suggestions and solutions would be appreciated.

  • Doubts in ale/idoc

    hi abapers please guide me 1. what is process code why use this? 2. what is collect idoc in partner profile? 3. diffrences between enhance idoc custom idoc and extending idoc?

  • Flash toolbar shows on initial load, but not on subsequent pages

    Hi! I have a flash toolbar which loads when you first hit the site, but if you go to any other page, it doesn't appear until you hover over it. Once you move your mouse over it, it pops right up. This only happens in IE, not firefox. Does anyone have

  • Launching Flash Builder 4 Help takes 20 secs (ACH or browser)

    We have 5 flex developers on our team who are all running into the same issue with the dynamic help: 1) Hit F1 (display help section) 2) Select a class (ArrayList for example) 3) Click on the Related API (mx.collections.ArrayList) in the help section

  • Can't Sync My iPAQ - Activesync Error support code 85010014

    Very frustrating. I just installed the connector, and now ActiveSync 3.5 gives me the error above. It tries to sync and then stops cold. We have Outlook 2003. I have deleted partnerships, profiles, etc., but nothing seems to work. Any suggestions? Th