Value filed wrong update....

Hi Gurus,
I have 2 gl accounts 100(cec 11) and 102(cec12).
In  SD I have A,B,C,D Condition types
For below two condition types assigned ZZZ ACCT CAT The GL is 100
A=+/-(v/06 sign)
B=+
NO +/_ ARE ASSIGND IN KE4I? NEED ANY SYMBOL?
And assigned to VALUE FILED (VVFRE) Revenue Value field(KE4I)
A and B u2013Condition types
For below condition type assigned XXX ACCT CAT The GL is 200
D=-
Mapped Under deductions in Value field VVFRO(Under deductions)
D-Condition type
When I saw in the billing document
The condition type A(POSITIVE VALUE ) is adding in the Condition type D and showing under Deductions(actually that is revenue part).
eX-A IS +100,D is -10 in value field showing 110(deductions value fied)
Please tell me where I am doing wrong and how can I do configuration?
Any one doubt IF WE CHANGE ANY VALUE FIELED AGAINST CONDITION TYPE, THE OLD DATE WILL SHOW UNDER NEW VALUE FIELD OT NOT?
Plese give me advice......
Thanks,
Chandu

Are you sure your router is WRT54G-RG(see the bottom) ?
What firmware did you download/upgrade ?
Did you reset the router and try the correct firmware update/upgrade ?

Similar Messages

  • Vendor discount value from FB65 to COPA is getting updated in wrong value filed

    Hi Experts,
    As per the Business requirement vendor discount during the credit memo should be updated in COPA report. some times system posts the vendor discount value into VVXXX value filed as per the configuration done in PA transfer structure. some times its getting updated with another VVYYY value filed. It should update only single value filed as per the PA transfer structure.
    It will be good if you can share your thoughts on the above issue.
    Regards
    Sambasiva

    Hi Samabasiva,
    Do you mean system is posting the discount value in FB65?
    May I know what Accounting Entry is posting with discount for Credit Memo?
    And also is there any Exit or Substitution Rules are Implemented.
    Regards
    Srinu

  • 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

  • POPUPKEY_FROM_QUERY returning value to wrong row

    Hi,
    I'm running Apex 3.0.1. I have a tabular report that I'm trying to add a popup from query that returns the key/code value (instead of the display value).
    I can call the pop-up okay, but it's returning the value to the wrong table row. I can see in the naming of the Javascript functions that it's looking at the wrong row. For example, here are 4 rows in display order and the names of the Javascript function calls:
    1. javascript:genList0_f15_1()
    2. javascript:genList0_f15_3()
    3. javascript:genList0_f15_2()
    4. javascript:genList0_f15_0()
    I can see in the function call that it's passing an index that doesn't match the displayed row number here:
    "&p_element_index=" +  escape ('1') + So if I click on the LOV icon for row 1 and select one of the LOV values, it will return the value to the second displayed row (zero-based index).
    I've read here of some issues with not having all rows make the call (e.g. in this post from Patrick Wolf date_popup returning value to wrong row but all my rows have values.
    The tabular report allows sorting by column headers, which I would guess is (at least part of) what's messing the function numbering? The query generates the rows, including the function calls, but the report displays in a different order?
    Any suggestions would be greatly appreciated.
    Thanks,
    Stew
    Good luck,
    Stew
    My Oracle Community blog: http://www.oraclecommunity.net/profiles/blog/list?user=stewstryker

    Christina,
    You hit the nail on the head! The tabular form region was defined as SQL Query - without the Updateable part! I'm not sure why I didn't have it that way from the start...
    Now I just have to find and implement the Javascript that will copy the updated value that's returned by the LOV to the correct column (defined as apex_item.text). That was the only way I could figure how to allow the user to enter a value directly or select from a LOV. Clumsy but functional I believe!
    Thanks to you and Scott for the tips.
    Stew

  • In import GRN - excise duty is wrongly updating..

    hi frnds..
    In import GRN - excise duty is wrongly updating.. How to resolve this...
    Regards
    Raghav.KH

    Hi,
    After Bill of Entry(MIRO), when u do MIGO, pop up will appear, where ur BOE number will reflect, make sure that u r putting year as 2009.
    Regards,
    Piyush

  • Field value not getting updated in R/3

    Hello Experts!!
    I am facing a problem while updating a field value back in R/3.
    The Syncbo is of type U01 and the field has data type char 40.
    The meRepMeta.XML file has following description
    Field name="DESCR1" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
    <Input type="modify">false</Input>
    1) when i test the function module in R/3. The field value is gets updated.
    2) when i create a record for the sync BO from client , i can see the field value being created on the client.
    3) when i synchronize, i dont get any error or warning and get a successful message.
    S        15.07.2008 12:19:09 All updates for one TOP block were successful (seq. no.=65, TOP cntr.=0000000001)
    15.07.2008 12:19:09 Synchronizer UPLOADER completed successfully (mobile ID=0000002646, SyncBO=ZDBMSERORD)
    I am not able to locate where is the problem
    Please suggest!!
    Regards,
    Priya Ghosh

    Hi,
    please check your maping in the create handler in MEREP_SBUILDER. Perhaps the value is created on the client but not mapped to the field of the function module. Furthermore have a look into MEREP_MON and see if the data gets forwarded in there.
    At last I would dump the information received by the function module into a table without any logic. So you can see what data actually is forwarded into the funct module - if brake point i not possible.
    Hope this helps.
    Regards,
    Oliver

  • I bought the wrong update, I need a Mac-Version but ordered a Windows-Version. What can I do?

    I bought the wrong update, I need a Mac-Version but ordered a Windows-Version. What can I do?

    Since this is a user to user help forum, not Adobe support or sales, nobody here will be able to help... you must talk directly to Adobe
    Information for anyone else with a similar problem
    Adobe contact information - http://helpx.adobe.com/contact.html
    Help for Download & Install & Setup & Activation http://forums.adobe.com/community/download_install_setup
    Next link has a "Chat Now" button near the bottom http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

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

  • Open Sales Order values not getting updated after run RVKRED77 & RVKRED88

    Hiiii,
    In Production Server. We run the reports RVKRED77 & RVKRED88. Credit info structure and and Open Sales Order values not getting updated. In FD32, Status - Sales value it showing '0". At the time of creating Sales Order Dynamic Credit check not happening coz of Tables S066 not updating. Please provide me Solution.
    Best Regards,
    Sridhar . P

    Dear Heagal,
    I followed your suggestions and implemented in the Development and moved the changes in to Quality Server. I tested it thoroughly by creating New Customer and maintained Credit Limit. I come to know that Problem is in all Servers. I made 3 changes.
    1. In Pricing Procedure Sub Total A it was not maintained against Net value. I placed it.
    2. Removed Credit groups for Delivery Type.
    3. In OVA8 i maintained Max. Doc Value :99,999,999.00 before it was with 1.00
    I checked the OMO1 Settings it was Asynchronous. As SAP Notes Suggesting to use Synchronous but here it's a client setting. So, It's Can't possible to change. Changes will affect other Company Codes.
    Tested both in DVP and QTY Dynamic Credit Check is working Perfectly and Status in FD33 Sales Value field getting update.
    If i move these changes in to Production, Will i need to run the reports again or not? How it will affect on Old Cusomer Billing and  Credit Limit data. For few of the Customers the Credit Limit data it was exceeded. Please provide me advice. The issue need to be Solved immediately.
    Best Regards,
    Sridhar

  • 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

  • MC$4 report shows PO value in wrong currency

    MC$4 report shows PO value in wrong currency EUR (EURO) eventhough PO
    was created with SEK (swiss) currency. Report picks data from info
    table S012 that also reflects wrong currency.
    Please check attached example....
    Currency is getting picked up in table S012 info-structure from company
    code table T001 (PO belongs to) not from purchase order.
    This is certainly bug in standard SAP LIS report. This is inbuilt LIS feature given by SAP & we cannot do any fixing.
    Can you provide solution how we can correct this error. How to display correct currency in report & info-structure S012.

    hi
    in the report the system might be taking the co code currency
    what u have to do is go to  MC$4  press ctrl+F7
    u will get the currency change option change it to what u want
    regrads
    kunal
    awrad if helpful

  • Get OLD&NEW value of an UPDATED column selected dynamically in a Trigger

    Hi All,
    I am writting a trigger which take column name dynamically. And on the basis of that column it should give me old value as well as updated value of a column corresponding to a modified row.
    OOO_SCHEDULE is my table name;
    Note: This is only for test so I am writting only for update not for insert and delete.
    create or replace trigger "OOO_SCHEDULE_AUDIT"
    BEFORE
    insert or update or delete on "OOO_SCHEDULE"
    for each row
    begin
    DECLARE
    v_username varchar2(30);
    AUDIT_EMP_ID varchar2(30);
    AUDIT_EMP_ID_NEW varchar2(30);
    v_Column_name VARCHAR(30);
    v_stmt1 VARCHAR(40);
    v_stmt2 VARCHAR(40);
    CURSOR C1 is
    select COLUMN_NAME from user_tab_columns where table_name='OOO_SCHEDULE';
    BEGIN
    OPEN c1;
    LOOP
    FETCH c1 into v_Column_name;
    EXIT WHEN c1%NOTFOUND;
    v_stmt1:=('OLD.'||v_Column_name);
    v_stmt2:=('NEW.'||v_Column_name);
    AUDIT_EMP_ID:=v_stmt1;
    AUDIT_EMP_ID_NEW:=v_stmt2;
    INSERT INTO TEMPTEST VALUES(v_stmt1);
    INSERT INTO TEMPTEST VALUES(AUDIT_EMP_ID);
    END LOOP;
    CLOSE c1;
    END;
    end;
    Suppose OOO_EMP_NAME is the column name where user made the change.
    If i do like this..
    AUDIT_EMP_ID:=OLD.OOO_EMP_NAME;
    AUDIT_EMP_ID_NEW:=NEW.OOO_EMP_NAME;
    Then it is working fine because I have given column name statically. But I want the column name to be selected dynamically and I am able to do it through cursor. Also I am able to fetch all column names in v_Column_name variable one by one dyanamically for the cursor.
    But by executing these statements
    AUDIT_EMP_ID:=v_stmt1;
    AUDIT_EMP_ID_NEW:=v_stmt2;
    I am getting OLD.OOO_EMP_NAME and NEW.OOO_EMP_NAME rather then old and new values of the updated column.
    Please help me identifying the problem, where I am doing the mistake? What is the correct way to execute these statements? So that I can get old and new values of the column (updated column).
    I have tried it by passing in a procedure also but don't know how to execute this dynamic statement to get the old and new values.
    Thanks,
    Ishrat.

    In the given link, column name has been selected statically. But i want that column name should be selected daynamically throgh loop and then check the
    condition for any update corresponding to that column value. I don't want to write as many if condition as the no. of column name. I just want one if condition for all column namesDon't be lazy. Write all column names into your trigger. Or use a way to create the trigger "dynamically".
    What is the problem that you have with static column names? "I don't want to write many..." is not a problem, but an opinion.

  • 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

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

Maybe you are looking for

  • SharePoint 2010 Search Error: "Internal server error exception"

    Hi, We have a SharePoint 2010 Farm with 5 servers: 1 SQL Server Cluster 2 WFE 1 Index Server 1 Search Server Please see bellow a more detailed specification.Our DNS is using a Load Balancer It turns out that when it uses one WFE (SERVWFE05) it throws

  • External Flickering in 10.6.6 (LG M227WDP)

    Hi, i have looked through the forums and seen a lot of people talking about screen flickering on there external monitors in 10.6.5 and then saying that the issue is gone in 10.6.6 sadly this issue started for me in 10.6.5 and still remains even after

  • X121e ( 3045-79G ) anybody Upgraded to Win 8 ?

    Hello Folks, Sorry accidentally posted the same thread over on the Tablet Board by mistake. Any good news or horror stories out there regarding the latest offering from MS in relation to these Lenovo machines ? I have purchased the Win 8 Pro upgrade

  • PATCH SET 11.1.0.6 11.1.0.7

    Hi, This is my error while running runinstaller in putty ......... please help [oracle@db Disk1]$ ./runInstaller Starting Oracle Universal Installer... Checking Temp space: must be greater than 80 MB. Actual 4595 MB Passed Checking swap space: must b

  • Simple Socket Client

    I've posted examples of a socket client and server that provide a simple message switch in the past. May people have found these examples too complex and the most recent is Java 5 only. The simple client was lost some time ago, so I'm reposting it in