Assesable value is not updating in RG1

Hi frnds,
Please solve this prob. which I am facing.
i am selling finshed goods.
RG1 register is updating very well except the assesable value on which the excise is levied.
Please guide me ,Is there any customizing setting are there ?
I am using Jass condition typein my pricing procedure for assesable value.
TaxINN is the tax procedure I am using.
Please help me
Sunil

Why u maintained J1ID for TAXINN !
J1ID only for TAXINJ
In taxinn system caliclates excise duty based on , What is the base value in the sales pricing procedure for JASS.so it never consider assessbul value in J1ID..

Similar Messages

  • Excise values are not updating in factory sales

    Dear SCN's,
    I'm facing an issue while doing factory sales, while creating sales order and billing I'm using J1IIN for excise invoice and then updating in J1I5 transaction but the values are not updating in table J_2IRG1BAL. Can anyone suggest what to do in order to get the values updated in table.
    Thanks & Regards,
    Kumar

    The following note explains how you need to update J_2IRG1BAL table.
    Note 951955 - CIN: General clarifications for RG1 goods
    Have a look at this.
    G. Lakshmipathi

  • Open value is not updating in credit workbench

    Hi
    we are using crm 7 ehp2 system currently facing issue in our credit scenario which is integrated with ERP credit configuration.
    Open value is not updating in Credit Analyst Workbench(CRM_CAWB) and the same is not updating in erp t-code FD32   field sales value.
    I have tried to run the initial load CMDOC_NOTIFY to update opened order value but its showing below error.
    The following Errors/Warnings occured. Do you want to continue?
        Message no. SMOF164
    The data replication requires the processing of single BDoc instances
       Message no. SMOF197
    Pl advise how we can resolve this issue.
    thanks Warm Regards
    Manoj

    Hi
    we have resolved this issue. please follow below solution hope it will help you
    SPRO - Customer Relationship Management - Basic Functions - Credit Management - General Settings - Maintain Credit Group
    Mark flag in the credit update field for the relevant credit group.
    Best Regards
    Manoj

  • Asset acquisition value is not updating in Asset history sheet & AW01N

    Hi,
    The issue is the asset acquisition values are not updated in AW01N & Asset history sheet report for particular asset acquisition transaction only.
    it`s showing in asset history sheet but its nt added in the current APC value in the asset history report & also its showing in AW01N transaction but in acquisition change column its not updating.
    I have also checked the below link but still i am persisting the same problem.
    Asset acquisition value not updating
    Regards
    Amit

    Hi Amit,
    check note  366848.
    Implement reports RACORR110_B and the report RACORR55 from the note 366848 in your system.                                                                               
    At first run the report RACORR110_B. Check the  field ANLC-ANSWL bevor and after running the report.                   
    The report RACORR110_B accumulates the values of the asset line items  and writes the result in the field ANLC-ANSWL.                                                                               
    After this, please start the report RACORR55. This report forwards the  values in the following year.
    (If this is not the reason (ANLC is correct), the report makes nothing.) 
    Regards Bernhard

  • Condition Value is not updated

    Hi All,
    I am using bill of services, so i have a sales order and as a subsequent document a service entry sheet, my invoice is created with reference to the service entry sheet.
    In my price procedure i have a percentage guarantee condition.
    In the sales order i insert a percentage for the condition, afterwards i create a service entry sheet with reference to the sales order and all the conditions values are copied correctly, till here everything ok.
    In the SES i change the guarantee condition value and then i create the invoice, but the guarantee condition value is not updated and takes the value i inserted before in the sales order.
    I already tried to change the condition copy control but no sucess.
    Anyone can help me with this issue??
    Thank you.
    Best Regards,
    Tiago Ferreira

    Hi Madhu,
    Here is my code:
        SALES_CONDITIONS_IN-ITM_NUMBER = I_UPLOAD-ITMNUMBER.
        SALES_CONDITIONS_IN-COND_TYPE = I_UPLOAD-COND_TYPE.
        SALES_CONDITIONS_IN-COND_VALUE = I_UPLOAD-COND_VALUE / 10.
        APPEND SALES_CONDITIONS_IN.
        CLEAR SALES_CONDITIONS_IN.
        SALES_CONDITIONS_INX-ITM_NUMBER = I_UPLOAD-ITMNUMBER.
        SALES_CONDITIONS_INX-COND_TYPE = I_UPLOAD-COND_TYPE.
        SALES_CONDITIONS_INX-UPDATEFLAG = 'U'.
        SALES_CONDITIONS_INX-COND_VALUE = 'X'.
        APPEND SALES_CONDITIONS_INX.
        CLEAR SALES_CONDITIONS_INX.
    I am just creating a CMR with reference to billing document. Its creating condition recod 'ZAP0' correctly, which i am passing manally. But, its not  populating condition value to levy condition it should determine automatically.
    Please suggest.
    Regards,
    Srikanth.

  • Custom propertie's values are not updated for workflow metadata

    Hi,
    I've a requirement where I need to add and update some properties. to /etc/workflow/instance/<Instancename>/data/metadata node.
    I've two workflow Process steps,
    Process step 1:
        Adds some properties to metadata.
    Process step 2:
        Updates the propertie's values which are added in Process step 1.
    But the issue is update is not working when the node is /etc/workflow/instance/<Instancename>/data/metadata.
    i.e. In the step 1, Properties are added to metadata node but In the step 2 propertie's values are not updated to the same node.
    Here is my process code:
    =================================================
    import java.util.Locale;
    import java.util.StringTokenizer;
    import javax.jcr.Node;
    import javax.jcr.Session;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Properties;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Reference;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.Constants;
    import javax.jcr.Value;
    import com.adobe.granite.workflow.WorkflowException;
    import com.adobe.granite.workflow.WorkflowSession;
    import com.adobe.granite.workflow.exec.WorkItem;
    import com.adobe.granite.workflow.metadata.MetaDataMap;
    import com.adobe.granite.workflow.exec.WorkflowProcess;
    import com.adobe.granite.workflow.model.WorkflowModel;
    import org.apache.sling.api.resource.ResourceResolver;
    import org.apache.sling.api.resource.ResourceResolverFactory;
    import org.apache.sling.jcr.resource.JcrResourceUtil;
    import org.apache.sling.api.resource.PersistableValueMap;
    import org.apache.sling.api.resource.PersistenceException;
    import org.apache.sling.api.resource.Resource;
    @Component
    @Service
    @Properties({
           @Property(name = Constants.SERVICE_DESCRIPTION, value = "Test"),
           @Property(name = Constants.SERVICE_VENDOR, value = "Adobe"),
           @Property(name = "process.label", value = "Test 1")})
    public class Test1 implements WorkflowProcess
        @Reference
        private ResourceResolverFactory resourceResolverFactory;
              public void execute(WorkItem workItem, WorkflowSession wfsession, MetaDataMap metadata)
                                  throws WorkflowException {
                        System.out.println("Testing");
            try{
                ResourceResolver resolver;
                resolver = resourceResolverFactory.getAdministrativeResourceResolver(null);
                String instancePath = workItem.getWorkflow().getId();
                Node instanceNode=null;
                Session jcrSession = wfsession.adaptTo(Session.class);
               String payload = (String) workItem.getWorkflowData().getPayload();
               //instanceNode=JcrResourceUtil.createPath(payload+"/jcr:content", "nt:resource","nt:resource", jcrSession, true);
                                  instanceNode=JcrResourceUtil.createPath(instancePath+"/data/metaData", "nt:resource","nt:resource", jcrSession, true);
                                  System.out.println("Test: instance PAth:"+instanceNode.getPath());
                Resource resource = resolver.getResource(instanceNode.getPath());
                    if(resource != null)
                        PersistableValueMap valueMap= resource.adaptTo(PersistableValueMap.class);
                        valueMap.put("name", "Rajesh");
                        valueMap.put("id", "A002");
                        valueMap.put("designation","SE");
                        valueMap.save();
                        System.out.println("Name:"+valueMap.get("name"));
                        System.out.println("Id:"+valueMap.get("id"));
                jcrSession.save();
                resolver.close();
            }catch(Exception e)
                System.out.println("Exception:"+e.getMessage());
    ===================
    The code works fine when the node is payload/jcr:content.
    Note : Process 1 and Process 2 code is same expect the values I'm passing to the PersistableValueMap.
    Any pointers would be more helpful..
    Thanks
    Siva

    Is there anything wrong in my code/ it's a bug..  
    Thanks
    Siva

  • J_1IRG23D Excise Duty Base Value is not Updated

    Hi all,
    while doing the Depot sales after Depot Excise Invoice J1IJ the Excise Duty Base Value is not updated in J1iDEPOTSTOCK1 (display depot stock) and also in table J_1IRG23D.

    hi
    check this SAP Notes
    1348970 Incorrect Ship to / Sold to party filled in J1IJ 11.06.2009
    1322071 RG23D entry deleted from J_1IRG23D in case of cancellations 16.04.2009
    1233836 Additional depot EI status set as 'C' for partial reference 20.03.2009
    1263061 J1IJ - material quantity conversion leads to rounding error

  • Condition value is not updating in shipment cost documents.

    We are creating a shipment cost document and condition value is not updating automatically when we enter the amount.
    Regards,
    Jagadeesh

    Dears,
    The material master of the material is not maintained with gross weight and net weight, hence automatic updation for condition value is not taking place, i resolved the issue.
    Thanks,
    Jagadeesh

  • KP06 Plan Values are not updating in Cost center  report

    Hi,
    I have configured KP06 and uploaded through excel,It is getting uploaded successfully.
    But after uploading planned values are not updating in the S_ ALR_87013611 Report.
    What could be the reason.kindly give me some inputs regarding this.
    Thanks
    Supriya

    Hi Supriya,
    After uploading the entries have you saved or have you verified with excel values.
    Please check.
    Sateesh

  • Value is not updating to infoobject

    Hi experts,
    I am facing a strange issue.
    Issue is , Value is not updating to the infoobject in master data attribute.
    I am able to see the value at PSA level.
    what may be the reason, the object is consistent.
    regards,
    rajesh.

    Check the transformation for the master data attribute and make sure it is mapped to the right field from source.
    Also check if there is any start routine written and if you are deleting records in that.
    Make sure that once the load is completed, the request is green, available for reporting and some records have been addes as well.
    Another thing need to be checked is if you have written any routine for the attribute which may cause no data because of the logic in that code.
    Do these checks and provide some more details if issue is not resolved.
    Regards,
    Gaurav

  • Contract Release value is not updated with Limit item value

    We have SRM 4.0 with ECS scenario.
    Contract are created in SRM and replicated to ERP.
    If we create PO with Service line and Limit line using contract in both of these line items, contract Release value is getting updated only with Service line item value.
    But the contract Total value is the addition of Service and Limit value of PO.
    Why Contract Release value is not getting updated with Limit item value. Please help as early as possible.

    Hi Sandeep
    Yes. there are various reasons .upon your contract incorrect status and linkage not establised / or more attachment in SRM GOA.
    what type of contract are you using? GOA or CCTR
    If it is GOA - which version of SRM and service pack ?are you in ?
    If it is a GOA , BLAREL idoc might failed to post the release value in the SRM .
    How contracts are created material / mat group ?
    to fix or understand the issue, you need to recreate the issue.
    what is the ERROR in BLAREL in SRM idoc monitoring ?

  • Contract Release Value is not updated with Confirmation or Invoice value

    The release value for a contract in SRM EBP shows the value of purchase orders created using that contract.  It does not take into account confirmation and/or invoice values.
    For example I create a PO for 10 items at £100/each using Contract ABC.  The total value of the PO is £1000 and the release value contract ABC would be £1000.  If I then only confirm and invoice 5 items (£500) for the PO, the release value of contract ABC stays at £1000 even though I would expect it to update to £500
    Therefore the release value of the contract could be incorrectly overstated if purchase orders are created against the contract but not actually invoiced/confirmed for their total value.
    Please could you confirm the correct functionality and how I could find out the the true invoice value of purchases made using a contract?

    Hi
    <u>Which SRM and R/3 versions are you using ?</u>
    <b>Meanwhile, please go through the following SAP OSS Notes, which will help in this case -></b>
    Note 622045 Net value in release overview of contract is incorrect
    Note 493519 Release quantities are not updated
    Note 1108322 BBP_CONTRACT_CHECK wrong calculation of values
    Note 1102886 Contracts: Lesser Field length for Target Value
    Note 1082548 Check of Released quantity and released value in contract
    Note 656181 Release synchronization of releases on services
    Note 874920 Currency not allowed to be changed for a 'Released' Contract
    Note 703771 Resetting release values during purchase order item deletion
    Note 643823 BLAREL: Incorrect values in service segment
    Note 519879 BBP_CTR_MAIN: No message when values in Contract are reset
    Note 520734 Target value not converted if currency is changed
    Note 528897 Documents not displayed in contract release order overview
    Note 430373 BBP_CON_MNT: No releases available
    Note 491993 Entry of contracts with target values
    Note 437491 Purchase contract: Incorrect update of the call-off values
    Note 406799 BBP_CON_MNT: Fields after contract release ready for input
    Note 398168 Purchase contract: Target value is not changed
    <b>Do let me know.</b>
    Regards
    - Atul

  • Sales value is not updated in fd33

    Dear Team,
    I have an issue, Full Advance payment has been received from the customer, after Sales order has been created against this customer, Even Credit Exposure Value shows the more than the order values, but the order still goes for credit block,
    There is no open due items for this customer,
    When I checked in FD 33, Sales Value(the one which is raised currently) is not updated it shows 0.01, Sales Order is open now with credit block, Can any body clarify why the sales order value is not get updated in FD33.
    How do i re update the value and remove the block without releasing from VKM3,
    Thanks in Advance,
    Muralidharan S

    *

  • Asset values are not updating in ledgers

    Dear Experts,
    Currently for company code 1000, system calculating depreciation   properly and posting,
    If there is a change in depreciation % rate, user can able to change the depreciation % in Dep key and successfully posting while running the depreciation run.
    Accordingly to the asset dep calculation, retirements, transfers, partial retirements etc there were no issue and everything is working fine for company code 1000.
    Only thing is those values not updating L5 ledger.
    Regards
    Venkat

    http://scn.sap.com/message/13115490#13115490
    Refer to the above Thread
    3. SPRO-Financial Accounting (New)-Financial Accounting Global Settings (New)-Ledgers-Ledger-Define Ledger Group
    We have one ledger group, We one leading ledger (OL) and 3 non leading ledger L5 _US GAAP Ledger, L6_IFRS Ledger, L7 _Fiscal year Jan – Dec Ledger and
    We have created one ledger group and selected the ledger group and clicked the ledger assignment
    Representative Ledger in Group ticked only for the OL ledger, we have to maintain Representative Ledger in Group tick for the remaining non ledger
    Also?
    Regards,
    Venkataswamy

  • Values are not updated in Assets if posted via Purchase order

    Hello Gurus,
    I have done all the customization relaed to Asset Accounting. When I am trying to procure Assets through Purchase order it is updating quantity but not updating values. Can any one give me some suggestion on this.
    Regards,
    Pawan Kumar

    Hi,
    Please check the account assignment category in OME9. Check Category A. GR Receipt will on the basis of non valuated. Just do MIRO. I think your value will be updated.
    Regards,
    Jigar

Maybe you are looking for

  • I'm suddenly missing audio files. Can they be recovered?

    A number of tracks in my iTunes Library seem to be missing. These tracks appear with an ! symbol to the left of the track name. I'm a Mac guy but this is a problem on my wife's Windows machine. I think I had this problem in the past on my Mac  with b

  • ITunes 11.1.4 totally snarfed my iTunes and ability to properly sync the associated iPhone. Any advice?

    Computer in question is a 13" mid 2007 White MacBook running OS X 10.6 (Snow Leopard). I do not have core specs in front of me but I can look them up later if needed. Phone in question is an iPhone 4s iOS is most current viable version for this gener

  • Anyone know how to fix Bluetooth headset not working properly after iOS 8 update?

    I have an iPhone 5S and I use a Plantronics PLT M20 model bluetooth headset. I am no longer able to answer calls by pressing the button on the headset, since updating to iOS 8. I also also cannot end calls by pressing the button on the headset. This

  • Why can't I convert a PDF document to Word?

    I just recently purchased the Adobe system in order to be able to easily convert PDF documents to Word. After successfully enrolling, I got a side screen that provide the steps to make the conversion. It seemed simple enough although I kept getting e

  • J2ee hangs in PI 7..0

    Hi Friends With ref from SDN i have a question. I have installed a landscape with 3 pi 7.0 With my IE 7 and 8 the PI 7.0 screen after logins gets hanged out to whihc ever tab we click. at botton left it says void value 0. Can you plz assist for the s