Calculate Excise amount as per duty rates check box in J1IEX

Hi,
              In J1IEX Duty rates tab, there is one check box as Calculate excise duty base on duty rates , but thta check box is Disable i How to make it as enable so that we can click to to recalculate the excise rate,
also my problem is that in case of import PO, the basic price in our PO is diffrent compare to basic price of custom . because custom is addding the basic frieght and insurance charges in Basic price, so while Doing J1IEX ref. to MIRO number it is taking properly amount of all excise duties but excise base amount is diffrent and when we correct the excise base amount as per custom Bill of entry all excise amount are change and it is not coming as per duty rates which are present i Duty rates tab so I want to recalculate it.
regards,
zafar

Hi ,
             As per detail which I have mention in my question,  the process which we are following is after recieving import Material   first we are doing   MIRO  for custom delivery cost   and there we are entering tax amount as per custom bill of entry,   and we are getting the MIRO Documnet number    after that we are Doing    Capture Excise invoice thorugh J1IEX  and ref. document we are selecting as PO,  after pressing enter we get a small pop up window as customs invocie number  and year  there we are entering the MIRO document number and Year   then  ref. to that miro number  All duty and duty rates  are coming as per MIRO   but  Excise base amount is different  because it is coming from PO basic amount and there is diffrence between  Custom excise base amount and PO bae amount becasue  in custom bae amount they are adding frieght basic amount into excise base amount , and then  we have to correct amnually  exsice base amount in J1IEX   for all materials,  is this proceess is same in all  or we need to do some modification in pricing procedure or at any other place .
          At bottom in excsie duty tab in J1IEX  there is one check box as Calculates excise amount base on excise duty  but that check box is also disable   How to make that enable.
I also have found one FM : J_1IEX_DEFAULT_EXCISE_DUTY,   by doing some changes in this FM we can get what we requied , is there any other solution to get our requirement.
  regards,
   zafar
Edited by: zafar_karnalkar on May 15, 2010 1:47 PM

Similar Messages

  • J1iex duty rate tab calculate excise base rate check box is disable in impo

    Hi,
    We have done Import PO and wrt we have done the GRN as part 1 and we try to complete the part 2 as J1iex, but in j1iex duty rate tab calculate excise base rate check box is disable, we required is activate.
    its working in domestic scenario.
    Thanks
    shital

    Go to J1IEX- Change (Instead of Post). Try & change the rate.
    But why do you want to change it in J1IEX? as duties are flowing from PO-MIRO.

  • Separate notice per dunning level check box

    Hi
    While do FBMP Dunning customization, I have not selected the "separate notice per dunning level check box" and saved the Dunning procedure in Transport and released from Development system.
    Whereas while do assinging the dunning procedure in the Customer Master in Quality system. The system showing error message "No dunning settings have been maintained for company code:abc
    How can I do the settings for "separate notice per dunning level check box" in the system?
    Thanks,
    Sahara

    Go to tCode FBMP Then menu bar select Environment->company code data then enter your company code and select your account type(customer/vendor) -> for your company code tick on by dunning level

  • Check box Calculate Excise Duty base on rates in J1IEX

    Hi,
      In J1IEX  Duty rates tab,  there is one check box as Calculate excise duty base on duty rates  ,  but thta check box is Disable i  How to make it as enable so that we can click to to recalculate the excise rate,
    also my problem  is that in case of import PO,  the basic price in our PO is diffrent compare to basic price of custom .  because custom is addding the basic  frieght and insurance charges in Basic price,  so while Doing J1IEX  ref. to MIRO number it is taking properly amount of all excise duties  but excise base amount is diffrent    and when we correct the excise base amount as per custom Bill of entry   all excise amount are change  and it is not coming as per duty rates which are present i Duty rates tab  so I want to recalculate it.
    regards,
      zafar

    Hi,
      Can you help on this issue.
    regards,
      zafar

  • How to calculate Excise on Customs Duty?

    Dear All,
    My client wants to calculate excise on the customs duty for the imported goods for which they can take CENVAT credit. So, the calculation should be on the following components:
    (Price*Quantity)Customs DutyPacking
    Currently, the customs duty is entered in Landed Costs and Packing is entered in "Freight" where we cannot use CENVAT Codes.
    How can we do this in SAP b1?
    Bharath S

    Hi!
    Use Assessable Value (INR) Field in PO/GPRO/Invoice RowLevel to give the BaseValue of CENVAT. Also, you need to Change your CENVAT Formula accordingly. Search the forum with Key word Assessable

  • Single or multiple check box values displayed in a text field

    My apologies, this may be a duplicate discussion.
    I'm using the following script to display the values of check boxes in a text field.  I would like the word "and" to separate the values if two check boxes are selected. If more than two boxes are selected I want the values to be separated by a comma and then the last value be separated by "and".  Example of two check boxes selected:  A and B.  Example of two or more: A, B, C, and D.  Can this be done?
    form1.page1.page1SF.programs::calculate - (JavaScript, client)
    //displays the values of check boxes named programCB
    var aChkBx = [];
    var vChecks = programCB.all;
    for (var a=0; a<vChecks.length;a++){
    if(!vChecks.item(a).isNull) {
    aChkBx.push(vChecks.item(a).rawValue);
    this.rawValue = aChkBx.join(", ");

    My apologies, this may be a duplicate discussion.
    I'm using the following script to display the values of check boxes in a text field.  I would like the word "and" to separate the values if two check boxes are selected. If more than two boxes are selected I want the values to be separated by a comma and then the last value be separated by "and".  Example of two check boxes selected:  A and B.  Example of two or more: A, B, C, and D.  Can this be done?
    form1.page1.page1SF.programs::calculate - (JavaScript, client)
    //displays the values of check boxes named programCB
    var aChkBx = [];
    var vChecks = programCB.all;
    for (var a=0; a<vChecks.length;a++){
    if(!vChecks.item(a).isNull) {
    aChkBx.push(vChecks.item(a).rawValue);
    this.rawValue = aChkBx.join(", ");

  • Single or multiple check box values displayed in a textbox

    Hi Experts!
    I'm using the following script to display the values of check boxes in a text field.  I would like the word "and" to separate the values if two check boxes are selected. If more than two boxes are selected I want the values to be separated by a comma and then the last value be separated by "and".  Example of two check boxes selected:  A and B.  Example of two or more: A, B, C, and D.  Can this be done?
    form1.page1.page1SF.programs::calculate - (JavaScript, client)
    //displays the values of check boxes named programCB
    var aChkBx = [];
    var vChecks = programCB.all;
    for (var a=0; a<vChecks.length;a++){
    if(!vChecks.item(a).isNull) {
    aChkBx.push(vChecks.item(a).rawValue);
    this.rawValue = aChkBx.join(", ");

    So, the way I see it, you actually have four scenarios. Nothing is checked, one item is checked, two items are checked, and three or more items are checked.
    Here's how I did it.
    I have four checkboxes all with the same name, cb. (You could have many more, and it wouldn't matter as long as they're all named the same thing.) I'm presuming that you will use the captions from the checkboxes as the text you want to enter. I called my text area where I enter the information tfSentence. (It's not a text field, it's just called "Text" in the Object Library.)
    //we need to count how many boxes are checked
    var checked = 0;
    for (i=0; i<=cb.length; i++){
      if (xfa.resolveNode("cb["+i+"]").rawValue == 1) checked ++;
    //create a string variable to store our sentence
    var str = "";
    //look at the checked variable and choose our case from that
    switch(checked){
      case 0:
        //you may want to do more than just type out a sentence here, like a message box
        tfSentence.rawValue = "Nothing was selected";
        break;
      case 1:
        //you can set text that will appear before your list of items here
        //str = "preliminary text";
        for (i=0; i<=cb.length; i++){
          if (xfa.resolveNode("cb["+i+"]").rawValue == 1) str += xfa.resolveNode("cb["+i+"].caption.value.#text").value;
        //you can set text to appear after your list of items here
        //str += "ending text";
        tfSentence.rawValue = str;
        break;
      case 2:
        //str = "preliminary text";
        for (i=0; i<=cb.length; i++){
          if (xfa.resolveNode("cb["+i+"]").rawValue == 1){
            if (checked == 1) str += " and " + xfa.resolveNode("cb["+i+"].caption.value.#text").value;
            else str += xfa.resolveNode("cb[+i+"].caption.value.#text").value;
            checked--;
        //str+= "ending text";
        tfSentence.rawValue = str;
        break;
      default:
        //str = "preliminary text";
        for (i=0; i<=cb.length; i++){
          if (xfa.resolveNode("cb["+i+"]").rawValue == 1){
            if (checked == 1) str += "and " + xfa.resolveNode("cb["+i+"].caption.value.#text").value;
            else str += xfa.resolveNode("cb["+i+"].caption.value.#text").value + ", ";
            checked--;
        //str += "ending text";
        tfSentence.rawValue = str;
        break

  • How to Auto-populate TextField in Acrobat x with a value determined by user check box selection?

    I have a group of 3 Check Boxes for user to select their Work Shift:  The check boxes are set up to be mutually exclusive (same name: "EMP_Shift", different Export Values: Day, Evening, Night).
    Form Field properties name:      EMP_Shift (for all 3 check boxes)
    Acrobat edit panel field names:  EMP_Shift#0, EMPShift#1, EMPShift#2
    Export Values:                         Day, Evening, Night (chose these only because they are descriptive)
    I need to Auto-populate a Text Field named EMP_WorkShift with "Day" if EMP_Shift#0 is selected, "Evening" if EMPShift#1 is selected, or "Night" if EMPShift#2 is selected.
    Is there a script I can use to accomplish this in Acrobat Pro X.

    The simplest is to set up the text field to be calculated using the following custom Calculate script:
    // Get the value of the check box
    var v = getField("EMP_Shift").value;
    // Set this field value
    event.value = v !== "Off" ? v : "";
    You'd normally set the text field to be read-only, but if you want the user to be able to edit the text field, you can instead use the following script in the Mouse Up event of each check box:
    // Get the value of the check box
    var v = event.target.value;
    // Set the value of the text field
    getField("EMP_Workshift").value = v !== "Off" ? v : "";

  • Logic for a report with check boxes

    Hi All ,
    I m writting a report , I need to put FOUR check box in this report ,
    For example you  can say Check1 ( material1)
                                           Check2 ( material2)
                                           Check3 ( material3)
                                           Others
    In selection critriea I defined one select option ( eg materail )
    Now I have to diplay data accordingly checkboxes
    If Check box '<b>check1'</b> is selected -list must contains only material1
    If Check box '<b>check2'</b> is selected -list must contains only material2
    If Check box '<b>check3</b>' is selected -list must contains only material3
    If Check box '<b>check1</b>' or any other one is  selected -list must contains  material1 and other materail as per other selected check box .
    If Check box<b> others</b> is selected then all other fields ( except the selected check box ) are the out put of this report .
    IF you need more explaination of my query , plz let me know .
    Regards ,
    Narender

    REPORT ZTEST3 line-size 400.
    tables : mara.
    data i_mara like mara occurs 0 with header line.
    data i_marc like marc occurs 0 with header line.
    data i_mcha like mcha occurs 0 with header line.
    data i_mkol like mkol occurs 0 with header line.
    select-options: s_matnr for mara-matnr.
    parameters : p_check1 as checkbox.
    parameters : p_check2 as checkbox.
    parameters : p_check3 as checkbox.
    parameters : p_check4 as checkbox.
    start-of-selection.
    if p_check1 = 'X'.
    select * from mara into table i_mara where matnr in s_matnr.
    loop at i_mara.
    endloop.
    endif.
    if p_check2 = 'X'.
    select * from marc into table i_marc where matnr in s_matnr.
    loop at i_marc.
    endloop.
    endif.
    if p_check3 = 'X'.
    select * from mcha into table i_mcha where matnr in s_matnr.
    loop at i_mcha.
    endloop.
    endif.
    if p_check4 = 'X'.
    select * from mkol into table i_mkol where matnr in s_matnr.
    loop at i_mkol.
    endloop.
    endif.

  • Task check box shaded dark grey

    This is a very bizarre issue I just noticed after the recent December updates to SharePoint 2013. We have Project Server 2013 running in our deployment of SharePoint 2013 and after this last set of updates for SharePoint 2013 all of the task check boxes
    in a project are a solid dark grey. When you click on one of the boxes to mark the task as completed, it just has a small amount of movement in the check box and remains a solid dark grey. Before the update the check boxes were normal and white and when you
    complete a task it would show the check mark in the box.
    Does anybody know why my task check boxes are like this, or has anybody seen this before? Not a show stopper, but a bit annoying.
    Thank you,
    D. Graf

    I've got the exact same issue, no idea what the cause is and this is the only thing I could find when searching for a solution.
    Did you manage to solve it?

  • Mulitible check boxes but only select one in each row who I do it with Acrobat Pro X?

    Dear Forum Readers
    First, if I should post my entry in the wrong forum, forgive me but I didn’t found the right place!
    I start to learn about the Adobe Pro X to create a form with different checkboxes, everything goes very well but now I decide it would be better if I could only check one checkbox in each row (see picture) .
    Each checkbox in each row has its own value from 1-4 (left checkbox=1 and right checkbox=4) and on the end of the form “Sub Total” all the value in each column who are checked I accounting together.
    1.  1. First I change the check boxes into radio button and give them a different value. Now I can only select one radio button in each row like I want it. But if I go to the field “Sub Total” (properties > calculate > pick) to account the value from each column together then I only can select the whole radio button group and not a single radio button. So my idea doesn’t work because the result is wrong.
    2.  
    2.T2. Then I got back and change the radio button again into check boxes. In each row I give the 4 check boxes the same name (so they act like radio buttons) and this works fine as well but with the same result as you read above. I could only “Pick” (properties > calculate > pick) the whole group of the check boxes and not only one and therefore my result at “Sub Total” is wrong again.
    I search the internet as well but I couldn’t found any working solution.
    Now I like to ask you kindly, is there somebody who can help me with the problem?
    I need the form as you can see at the picture but it should be only possible to check one checkbox in each row. But on the time I should be able to calculate each single column together.
    I would appreciate every idea (as simple as possible) because I am a beginner with Adobe Pro X.
    Thank you very much in advance!!!
    Nice regards
    Klaus

    Dear Gkaiseril
    Thank you very much for your answer!
    This I fears already J
    With JavaScript I have even less an idea than with the program Acrobat Pro XI. Is there not a other solution to solve this problem.
    Is it may possible that’s you can show me how such a JavaScript could look like or you know may a existing script?
    Anyway, thank your help.
    Nice regards
    Klaus

  • Calculate excise duties based on rates in J1IEX

    Hi,
    When i am trying to change the duty rates  in J1IEX transaction (in change mode)
    and put tick in check box( Calculate excise duties based on rates ),then the system calculating wrong duty values for SHEcess & Ecess.
    We are using TAXINN here.
    Pls provide me the solution where to do the settings for this issue.
    rgrds
    srini

    THE PROBLEM HAS BEEN RESOLVED. NOW CALCULATE EXCISE TAX CHECK BOX IS APPEARING. I HAVE RESOLVED IT

  • IS Oil TDB excise duty rates

    Hi,
    We give users the responsibility of maintaining the TDP excise duty rates.  hence, they are authorized to use transaction O4K5.
    There's another table to maintain region based ED rates which we want users to maintain and this can be found in :  IS Oil -> TDP -> Excise duty rates -> Define region based external rates.    Can you please advise the transaction code for this menu?
    Thanks!

    Hi Zenon,
    There is no direct transaction for this. But we can use Transaction :SM30 , give the view name "V_OIH01A" and click on Maintain. I hope this helped you.
    Regards,
    Ashok

  • Excise duty rates are not displayed in J1IEX

    Dear friends,
                       Excise duty rates (BED, ECS, SECESS) are not displayed in item level in excise invoice J1IEX, But excise values are updated correctly. I have maintained duty rates in J1ID. Kindly give your valuable inputs.
    Thanks and Regards
    ETR.

    Hi Maladri,
                   Thanks for your reply.
    I have maintained my condition types BED, ECS, SEcess in respective fieslds of BED Condition, ECS condition, SEcess condition already, eventhough the % not updated in J1IEX Excise invoices.
    But it has updated 10 days before all values came properly in J1IEX.
    Can you explain which condition type we have to maintain in BED %, ECS%, SEcess % in Maintain excise defaults, I didnt maintain any condition types there. If it is the reason then how it updated correctly 10 days before?
    Kindly guide me
    Thanks and Regards
    ETR

  • Excise Duty rate updation in order

    Dear all,
    I have recently changed the Excise Duty rate in J1ID.
    Now I want to update the ED rate in the orders that were created before the ED change was done.
    I tried the following ways but none of them was successful:
    1- Update the prices on the condition tab
    2- Changed the Billing date manually
    3- Changed the Pricing date manually
    The thing that worked was changing the Req. deliv. date to a date after the ED change was done. This automatically redetermines the billing date and the orders are updated.
    But I am not clear on what  the ED (JMOD..) rate in an order is dependant upon? Is there any other method of updating ED rate in an order?
    Regards
    Sapshed
    Edited by: Sapshed on Dec 9, 2008 10:47 AM

    The suggestion whatever I gave you was only after testing at my end.  For me, the billing has taken the new excise duty value correctly.  Of course, I have not predated the Actual GI Date.  Since right now, I dont have access to SAP, please test a case without  changing the Actual GI Date. 
    Alternatively, you can process via VF04, where there is a tab "Default Data".   Select this tab and maintain the current date in the field "Date of services rendered"  and execute.  Post the outcome whether this suggestion has helped you.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Problem creating a SQL command object and adding it to a Crystal report

    Hi, I'm trying to add the following SQL command object with the following sql for MYSQL 5.1 SELECT lic.id, lic.productionname, comp.companyname, lic.paymentreceiveddate, lic.licenseissuedate, IFNULL((SELECT sum(licsong.feequoted) from licensesong lic

  • My Macbook air won't turn on

    I was wondering if anyone else had this problem, I was on my Macbook air earlier and it was fine, Then i put it to sleep and closed the screen, I tryed turnong it back on earlier bit it turns on as i can hear it but the screen is just black, Can anyo

  • Why can't I download my recent rental?

    Hi, I just rented my first movie (first ever purchase on Itunes) I had to confirm that I was buying it ... saw the bar move across the screan to indicate that it was being purchased, and them nothing happened. I went to "recent purchases" and my rent

  • Background audio not adjusting after project is paused when published to Flash. Any suggestions?

    Hello, I'm working with: Captivate 6 Mac OS X 10.8.2 Flash Player is updated to most recent version My project contains background audio music set to adjust to slide audio. When I publish to Flash the background audio adjusts appropriately until I pa

  • Audio output options

    Can't find any options for switching on audio in audio options through an output device and can't hear anything when connecting my Mac through Thunderbolt to my external TV. Audio devices only show an option for internal speakers. Video is fine throu