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.

Similar Messages

  • 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

  • CST condition value is not updating in p.o.

    Experts,
    I have created a new tax code (purchases) as per the requirement of client with 10% BED and CST(JVRN) 5% , the problem is I am getting 10% BED but I am not getting 5% CST in the P.O, I have maintained conditions records in fv11 also
    Any one can help?
    Edited by: Sap_Fish on Nov 18, 2010 12:47 PM

    Now it is working.
    we have to assign tax code to company code
    path->
    Logistics-General
    Tax on goods movements
    India
    Basic settings
    Determination of excise duty
    Condition based excise determination
    Assign tax codes to company code.

  • 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

  • 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

  • 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

  • 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

  • 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

  • Basic Excise duty condition value is not captured in in Excise tab at GR

    Dear Experts
    i am facing the problem that, Basic excise duty amount is not appearing / captured in Excise tab, Goods Receipt Screen.
    Please guide me on whether the problem is with Excise master data or excise configuration.

    Dear friend,
    please check the your maintained in fv11 or not for the bed, ecess, and secess, and set offs if  your using the taxinn  procedure
    or in case of your using the taxinj at the time for taxcode for the conditions your maintained condition values or not
    and again in j1id excise rates your maintained or not  check for the particular chapterid of that material
    i think this will help you
    Regards
    Pramod

  • 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

  • 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

  • Form value is not updating

    Hi all,
    I use netbean 5.5 (visual midlet) to develop my J2ME application.
    Very headache with my form's value that is not updating whenever i reopen the same form.
    Lets say I have FormA, FormB.
    First, I go to FormA. I enter my name "John" to save in rms.
    Then I go to FormB. FormB will display "John" and allow me to edit.
    So now I edit the name to "Muthu".
    But when I go back to formA, the name still display "John".
    While I check the Output from Netbeans when emulator is running, I found that the application does not load to FormA when I go to FormA again. I wonder it is because FormA has been loaded in the memory, when I try to reload the FormA again, I actually read from memory. (correct me if wrong)
    I think the main reason to cause this is that netbean will generate (if xxx == null) everytime create a new function (screens/ commands / etc)
    example :
    public List get_list1(){
    if (list1 == null)
    bla bla ...
    I've stupidlly to add the following line before the if condition to make it reload again and retrieve new data.
    list1 = null;
    I think there should have some way that allow me to unload FormA when I go to FormB, then reload again when I go to FormA...
    Any ideas?

    so what's the problem
    keep the values in a global static variable
    and after each write to rms update it and during navigation call a method
    to update values from this global variable wherever you want
    for list there are function to set values

  • Freight value field not updating in COPA

    Dear All,
    The customer with account assignment group CA, Freight revenue is not updating in COPA.Where as Customer with out account assignment group CA,then freight revenue is updating in COPA.
    I checked all settings such assigmnet of SD condition types to COPA value field and all, every thing is fine.Even customer with other account assignment groups  is working fine.
    Plz suggest.
    Thanks,
    Ram

    Hi Ram,
    This looks like a KEDR derivation issue. Please check the condition tab in the derivation rule for account assignment group CA. If this does not help then please check if you clear the Freight value field in exit COPA0001 (Trans-SMOD).
    Regards,
    Abhisek

  • 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 ?

Maybe you are looking for

  • Synch Bluetooth - 4S doesn't see my vehicle?

    Just got my 4S yesterday and tried to synch bluetooth with my car.  Bluetooth is on on the phone but it doesn't find the bluetooth in the vehicle?  Anyone else have this problem?  I really need my bluetooth in my car.......

  • Everytime I click play on either the Canvas or the Video it lags?

    Everytime i wanna click play on a project in either FCE or FCP Tried both, it lags for a minute or two. Sometimes even 5 minutes. When I look at the force quit menu, it shows that it in not responding. it there anyway to stop this from happening?

  • BEWARE **DOORSTEP SCAMMERS*****

    BEWARE OF SALESMEN CALLING DOOR TO DOOR - LYING AND ATTEMPTING FRAUD On Friday I had a knock at the door.  It was two young studenty type men in their early 20s They introduced themselves as being "from your local telephone exchange".  They said they

  • How to remove 100% written between - and + ( - 100% + ) zoom in and out icon

    hi friends, does any one know any tweak that could make that box on the left side with100% written in it vanish ? the box is located between the plus and minus (zoom in zoom out) icon on the Firefox 29's navigation bar it is an eye sore and unnecessa

  • Mail for exchange and domain group policy removing...

    Hi, I currently administer 2 domains,  both server 2003 with exchange 2003.  On the one domain I can configure any of our e series ( e51/e71/e72/e6) via MFE and permanently accept the untrusted SSL certificate. When I configure MFE to our other domai