How to restrict the function if values are not correct.

Hi,
In my requirement i am reading the actual data, for example my full week data is $70(for 7 days).
above week values i am distributing to 7 days by equally  for example D1 is $10 d2 is $10...d7 is $10 and i am giving flexibility to my user he can change the data on those days but always total equals to $70.
if plan total is not equal to actual total i have to pass the error message, how can i check the plan total and actual total are equal or not?, and if the total is not equal i am passing the error message and i have to restrict the user don't save the data into TR cube,how can i restrict the save button.???
i don't want to allow the not equals data into my cube.how can i do it???
If you have sample code please can you share with me if don't have code can you give idea...
Thanks in advance..
Happy weekend.

Hi ,
Thanks for your reply..
here i am creating planning function which contains parea and key figure name.
but in actual layout having month days like 28 or 29....
i have to read the all the actual values of month  and i have to read all the plan values from another layout after user done the modifications on plan values.
here why i am reading the all days data is full value is not available but in layout i created full value it is total value of Column one c(1).
once user done the modification & refresh then i have to read the plan values.
how can i read and compare if you have any sample code welcome.here i am using version zero for plan and actual.
it is very urgent can you help me..
thanks...

Similar Messages

  • How can we restrict the absence status (Which are not yet to be approved)in team calendar(MSS)

    How can we restrict the absence status (Which are not yet to be approved)in team calendar(MSS)

    Hi user570596,
    I think there is no method to actually restrict the date picker popup, but you can use the ApexLib Framework (http://apexlib.sourceforge.net/) to define a min/max value for your date field. This will prevent the user from submitting the page when the date value is outside the defined range.
    See http://inside-apex.blogspot.com/2007/03/min-max-value-validation-in-browser.html
    for details.
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com
    Check out the ApexLib Framework: http://apexlib.sourceforge.net

  • How to restrict the functions in People Enter and Maintain - Others LOV

    I want to restrict the functions appearing when i click on People Enter and Maintain -> Others screen.
    Can this be done through form personalization ?
    If not how can this be achived.
    I want to restrict the list in Assignmnet -> Others list also.
    Thanks in advance
    -Debojyoty

    Change the underlying taskflow.
    In the form function parameters, you can find the taskflow name for the WORKFLOW parameter.
    Make a copy of the seeded taskflow and add/remove nodes as you wich.
    4 nodes in a taskflow can be checked to appear as a button, if you have more nodes linked to the form, they will appear under the other button.
    This is configuration, no customization or personalization!

  • How to restrict the user in MIRO for not modifying  price

    Hi All 
    My requirement is How to restrict the users in MIRO screen for not modifying Material Prices  of only the for specific  ROH types .
    For example :
    Valuation class             RM description
      3021                             RM - A
      3022                             RM - B
      3024                             RM - C
    when ever we procure  the above Raw materials A,B and C and
    the Quantity of each Raw material @ 10 units  and value @ 1 INR  for each unit
    RM - A procured qty 10 @1 total price is INR  10
    RM - B procured qty 10 @1 total  price is INR 10
    RM - C procured qty 10 @1 total  price is INR 10
    total price of PO is INR 30
    when we received invoice material prices are  assume it INR 1 is excess for each material.Now the invoice price for each RM has become INR 11.
    in MIRO we want restrict the user to change the price from INR 10 to 11.
    suggest the best possible ways to restrict in MIRO screen
    Thanks & Regards
    Mala

    Dear:   
                      Take help of ABABPER fo implement exit using INVOICE_UPDATE or MRMH0003 Logistics Invoice Verification: Revaluation/RAP exit. If this does not help then seek help of MM functional who will help you to find exit for the required task.
    rEGARDS

  • How to clear the form fields which are not rendered

    I have a creation form. There is a document_type list set up as a partial triger. When user change the document type, only the filed related to that document type will be rendered. This caused a problem when we need to clear the form . The input in the field which is not render won't be cleared when reset button is pressed. Can anybody give a sugestion on how to handle this?
    I tried to use the following function to clear the fields. It does not work since it get the list value before the list value change and clear the fields after the new field rendered.
    public void clear_action(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    System.out.println("test1");
    String coutcase = null;
    if(EL.get("#{bindings.Proxy.inputValue}") != null){
    coutcase = EL.get("#{bindings.Proxy.inputValue}").toString();
    System.out.println(coutcase);
    AttributeBinding a11= (AttributeBinding)getBindings().getControlBinding("INT_FNAM");
    AttributeBinding a12 = (AttributeBinding)getBindings().getControlBinding("INT_LNAM");
    AttributeBinding a13 = (AttributeBinding)getBindings().getControlBinding("TIT_PROG");
    AttributeBinding a14 = (AttributeBinding)getBindings().getControlBinding("T_OF_INT");
    AttributeBinding a15 = (AttributeBinding)getBindings().getControlBinding("NETWORK");
    AttributeBinding a16 = (AttributeBinding)getBindings().getControlBinding("IN_DATE");
    AttributeBinding a17 = (AttributeBinding)getBindings().getControlBinding("PE_FNAM");
    AttributeBinding a18 = (AttributeBinding)getBindings().getControlBinding("PE_IN_LNAM");
    AttributeBinding a19 = (AttributeBinding)getBindings().getControlBinding("WEBSITE");
    AttributeBinding a20 = (AttributeBinding)getBindings().getControlBinding("URL");
    AttributeBinding a21 = (AttributeBinding)getBindings().getControlBinding("INT_DATA");
    AttributeBinding a22 = (AttributeBinding)getBindings().getControlBinding("D_ACCESS");
    AttributeBinding a23 = (AttributeBinding)getBindings().getControlBinding("CASE_NUM");
    AttributeBinding a24 = (AttributeBinding)getBindings().getControlBinding("COURT");
    AttributeBinding a25 = (AttributeBinding)getBindings().getControlBinding("PLAIN");
    AttributeBinding a26 = (AttributeBinding)getBindings().getControlBinding("DEFEN");
    if(coutcase.equals("Interview")) {
    a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);
    /*a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);
    a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);*/
    } else if(coutcase.equals("Internet")){
    /*a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);*/
    a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);
    /*a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);*/
    } else{
    /*a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);
    a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);*/
    a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);
    }else{
    System.out.println("coutcase is null");
    }

    Hi,
    The easiest way to modify the screens in the Std transactions using ITS is to modify the ITS templates corresponding to that transaction.
    E.g In you case,there will be a ITS service corresponding to the ESS transaction.This ITS service will have  number of HTML templates which will actually correspond to the diffrent screens in the Trascn.What you need to do is find out the HTML template in the ITS service which corresponds to the screen(which you want to modify) in the STd transacn.To do this ,the easiest way is to right click on that Web page and say VIEW SOURCE.It will show you a HTML code with the ITS service name and the template which is being used for that particular screen.
    So after you find out the correct HTML template to be modified,you can simply hide the fields by putting the HTML code lines in between the symbols
      <!   and  -->
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • How can I get into my ipad if I don't have the password or the original computer to reset or resynch? It's locked now since the passwords I thought are not correct. What can I do?

    How can I get into my ipad if I don't have the password or the original computer to reset or resynch? It's locked now since the password I thought was set is not correct. What can I do to get back in or reset? Thanks

    http://support.apple.com/kb/ht1808

  • I have downloaded the kindle app , but I am unable to registrar as it says the username and password are not correct . I don't think I have used this app before ( but not sure). How do I reset ?

    I have downloaded the kindle app but I am unable to registrar as it keeps saying username and password incorrect ( I don't rember using this app before) and I am at a loss at how to reset

    Are you entering your Amazon account id and password ?

  • I need to reset my security questions because it says the answers I provided are not correct. How can I reset with new security questions and answers

    I need to reset my security questions and answers. But nit is saying my birthday for a verification is invaid. How can I reset all of this?

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (99552)

  • All the functions under file are not working. I cannot save as image, I cannot save, etc

    All of a sudden, I cannot "save as other" or "save" I cannot open a new file. I can print. I can use feature "get document signed". When I click on any of those non-working features, nothing happens. In save as other, the drop down menu opens but if I click on something, nothing happens.

    I fixed it somehow.
    Sent from my iPhone
    On Sep 28, 2014, at 10:55 AM, Gilad D (try67) <[email protected]>

  • The opened web pages are not correct even though the address in the link roperty is correct. The web page opens a blank page and says "Done"

    When I search for a web sites, it gives a list of connected web site.
    If I click a particular web site, it immediately opens a blank page and says"done" at the bottom of the page. The opened web address is wrong even though the link property shows the correct address.
    What is wrong?
    Chandra Dhas

    Publish your site to a local folder and launch it in your browser by double clicking the index.html file to see if the problem exists there.

  • After saving the invoice, excise values are disappearing in invoice

    Hi,
    While creating invoice, we have entered all the required conditions and clicked on update button to pick new conditions
    then all the invoice values are getting updated.
    when we save the invoice and open once again the excise values are disappearing.
    net value showing without duty.
    even in the printout the excise duty values are not coming.
    your inputs & suggestions will be appreciated.
    thanks
    Regards
    Suresh.

    This is due to wrong assignment of condition types.

  • EA Version 4.0 - Partition high-values are not displayed (NULL)

    The partition high values are not schon in the "partitions" tab of the table. Only NULL was displayed.

    Sorry i slept, this is referenced partitioned table. Only in the parent rtable there will be the high-values displayed.

  • Qualifier values are not part of a qualified lookup record

    Hi
         I am getting the exception "Qualifier values are not part of a qualified lookup record" when I serach for a record in the Qualified table. The Table has both Qualfier and non-Qualifier fields, but all are of type display fields.
    My question is If the filed is of type Qualifier then is it mandatory that it should be non-display Field?
    if  not can any one suggest me to get the record.
    If we make Qualifier fields as NON-Dispaly fields in repository then it is working fine.
    Here with I am providing the code
                   Search serarch = new Search(repoSchemaCmd.getRepositorySchema().getTable("QT_NOTES").getId());
                   serarch.addSearchItem(new FieldSearchDimension(repoSchemaCmd.getRepositorySchema().getFieldId("QT_NOTES","USER_PMF_ID")),new TextSearchConstraint("test", TextSearchConstraint.EQUALS));
                   ResultDefinition rd =new ResultDefinition(repoSchemaCmd.getRepositorySchema().getTable("QT_NOTES").getId());
                   //Returns the array of IDs for all display fields associated with the table
                   rd.setSelectFields(repoSchemaCmd.getRepositorySchema().getTableSchema("QT_NOTES").getDisplayFieldIds());
                   RetrieveLimitedRecordsCommand retrievedRecords =new RetrieveLimitedRecordsCommand(conn);
                   retrievedRecords.setSession(userSessionID);
                   retrievedRecords.setSearch(serarch);
                   //retrievedRecords.setIds(RID);
                   retrievedRecords.setResultDefinition(rd);
                   try {
                        retrievedRecords.execute();
                   } catch (CommandException e) {
                        throw new CommandException(e);
    Regards,
    Sandeep.

    Hi Sandeep
    I have a similar problem, would like to know what is the resolution to this issue.
    Regards
    Dilip

  • Editable alv using OO ALV(newly edited row values are not updating )

    Hi friends,
    i am facing a problem. i am displaying an output alv  using OO ALV.
    i am creating a new row and validating the newly created row values and changing if it is not according to the criteria. but the newly edited values are not capturing in method
    pr_data_changed->mt_inserted_rows as it contains values only entries entered for the first time .
    i am not getting the newly edited values in it.
    please do the needful.
    Thanks and Regards,
    srinivas

    Hi!
    to rectify the problem in the Code.....
    You can Go through this program....for changed values....
    https://wiki.sdn.sap.com/wiki/x/AwBIBQ
    Regards.

  • Now, in photoshop elements 9 when editing, colours displayed are not correct, seems gama number has changes ?

    up to now I had no problem when editing photos with photoshop elements 9. Due to an  unknown  reason/event the colours displayed , now, are not correct : it looks like the gama adjustment has been changed and the photo rendition is uncorrect. If I display the same photos with other photo editing software ( DPP from Canon for example, or Xnview) , the colours are correct !!... Can you help me ?
    Thanks  a lot !
    JJ Etienne

    Thank you for trying to help me. In fact, I resolved my problem by changing the default ICC profile for my screen : I entered the parameters settings panel, screen definition and then advanced settings where I could choose another ICC profile.
    Thank you anway !!
    JJ

Maybe you are looking for

  • I dowloaded some songs from soundcloud and they wont sync to my device

    I downloaded some songs from soundcloud as a .m4v file, then went to itunes to convert it as a mp3 file. It converted it, but then it didn't sync the song to either my ipad nor my iphone.  Help?

  • How to get the values of all elements and sub elements from  following xml

    how to get the values of all elements and sub elements from following xml... <?xml version="1.0" encoding="UTF-8" ?> <List_AML_Finacle xmlns="http://3i-infotech.com/Cust_AML_Finacle.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schem

  • Opening Raw Files

    How do I open raw files in Photoshop Elements 9 (Nikon D5000 camera)

  • Illustrator 17.1.0 update issues

    Mac 10.8.5, Illustrator CC 17.0.0.  Uninstalled Illustrator and CC Desktop App manager, reinstalled. When uninstalling the App Manager, this shows up in the error long.  Permissions errors also show up when uninstalling Illustrator 17.0.0.  I have re

  • Batch Action through Image Processor Leaves Files Open in CS4

    I am not sure if this is a change in CS4 or something that I am doing incorrectly. But when I run Bridge CS4 < Photoshop < Image Processor (running an action that I have been running since CS2) the files do not close in photoshop after running the ac