How to create Formula based value field in COPA

Hi,
I want to know how to create formula based  value field in COPA
My Requirement is i want to collect some value in formula based value field and want to use in copa allocation cycle as a tracing
factor.
anybody give some light on the same topic or requirement ?
Thanks
Nilesh R

The key figure you are creating in KE2K is not a value field, i.e. you can't post to it and you can't use it in a report. It is a caluculated value that can be used only in assessment and top-down-distribution.
In Ke2K, enter a name for your key figure, then click on the the white sheet button to create it. Now the formular area is open for input. Input your formular (e.g. VV001 + VV002 - VV003 .... where VVXXX are the technical names of value fields).
Now click the "check formuar"-button. Then save.
Before you can use the key figure in assessment, execute TC KEUG.
Now the key figure is available as any value field in the tracing factor selection of your assessment cycle.
I hope this made it clearer.
Regards
Nikolas

Similar Messages

  • How to create formula based on Sales for each week

    Hi,
    I have a requirement to show Variance in Sales in a separate column. My data in the cube is like this.
    Week         $Sales
    1                  80
    2                 100
    3                 120
    Now I want the report output like this.
    Week      $Sales          Variance
    1              80          
    2             100           1.25 (100 / 80)
    3             120           1.2 (120/100)
    Formula for Variance column for row 2 (Week 2) will be week 2/week1 sales.
    I do not want to use cell editor because this will give fixed rows/columns and also I want to display week in the rows.
    Any help will be greatly appreciated
    Thanks,
    Laxma

    Hi,
    Thank you for your time but probably I misguide you with less data in my example..
    Here is my scenario.
    Data in the cube is stored by week as shown below
    Week         Sales         
    01/2007      45           
    02/2007      65             
    03/2007      55              
    04/2007      80             
    05/2007      95           
    Required output   
    Week        Sales         Build %
    01/2007      45             0
    02/2007      65             1.44
    03/2007      55              0.85
    04/2007      80             1.45
    05/2007      95             1.19
    Formula for Build % = Current Week Sales / Previous Week Sales.
    Example for week 03/2007 (i.e Row 3) build % = 55 / 65 that will give 0.85.
    Any help will be greatly appreciated
    Thanks

  • How to create the sub type field in hr abap infotype

    hi ,
        how to create the sub type field in hr abap infotype.
    regards,
    venkat.

    Try like this also
    creating of infotype please follow these steps ...
    Step 1: Create Infotypes
    i. Goto Transaction PM01 – To create Infotypes:
    ii. Enter the Infotype Number and say create all.
    iii. The following message would display:
    i. PSnnnn Does not exist. How do you want to proceed?
    iv. Click
    v. A maintain Structure screen appears.
    Fill in the short text description and the PS structure of the Infotype.
    Since the fields Personnel No, Employee Begin Date, End Date, Sequential Number,Date of Last Change, Name of user who changed the object are available in the PAKEY and PSHD1 structure, define the PSnnnn structure with only the fields you required.
    vi. Once the PS Structure is created, save and activate the structure.
    vii. In the initial screen of PM01, now click on .
    Create a new entry for the infotype.
    Fill in the values as mentioned below and save.
    Infotype Characteristics:
    Infotype Name of the infotype_ Short Text: __Short Description________
    *General Attributes :
    Time constraint = 1
    Check Subtype Obligatory
    Display and Selection:
    Select w/ start = 3 “Valid record for entered data
    Select w/ end = 5 “Records with valid dates within the period entered
    Select w/o date = 6 “Read all records
    Screen header = 02 “Header ID
    Create w/o end = 1 “Default value is 31.12.9999
    Technical Data:
    Single screen = 2000
    List screen = 3000; List Entry Checked.
    viii. In the initial screen of PM01, now click on .
    Choose the infotype entry in the list.
    Fill in the values as mentioned below and save.
    Technical Attributes:
    In tab section,
    The following attribute values are given:
    Applicant DB Tab = PAnnnn “Infotype Name
    Subtype field = SUBTY
    Subtype table = T591A
    Subty.text tab. = T591S
    Time cnstr.tab. = T591A
    Prim. /Sec. = I Infotype
    Period/key date = I Interval
    and .
    ix. Infotype Screen Modification:
    Edit Screen 2000 from PM01 for the Infotype.
    ABAP Editor for the Infotype Program MPnnnn00 will be displayed.
    Click . Flow Logic will be displayed. There string coding of your own logic.
    Regards
    Pavan

  • How to create Using Formatted Text Field with multiple Sliders?

    Hi i found the Java Sun tutorial at http://java.sun.com/docs/books/tutorial/uiswing/components/slider.html very useful, and it tells how to create one Formatted Text Field with a Slider - however i need to create Formatted Text Field for multiple Sliders in one GUI, how do i do this?
    my code now is as follows, and the way it is now is scroll first slider is okay but scrolling second slider also changes value of text field of first slider! homework due tomorrow, please kindly help!
    // constructor
    label1 = new JLabel( "Individuals" );
    scroller1 = new JSlider( SwingConstants.HORIZONTAL,     0, 100, 10 );
    scroller1.setMajorTickSpacing( 10 );
    scroller1.setMinorTickSpacing( 1 );
    scroller1.setPaintTicks( true );
    scroller1.setPaintLabels( true );
    scroller1.addChangeListener(this);
    java.text.NumberFormat numberFormat = java.text.NumberFormat.getIntegerInstance();
    NumberFormatter formatter = new NumberFormatter(numberFormat);
            formatter.setMinimum(new Integer(0));
            formatter.setMaximum(new Integer(100));
    textField1 = new JFormattedTextField(formatter);
    textField1.setValue(new Integer(10)); //FPS_INIT
    textField1.setColumns(1); //get some space
    textField1.addPropertyChangeListener(this);
    //React when the user presses Enter.
    textField1.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),  "check");
            textField1.getActionMap().put("check", new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    if (!textField1.isEditValid()) { //The text is invalid.
                        Toolkit.getDefaultToolkit().beep();
                        textField1.selectAll();
                    } else try {                    //The text is valid,
                        textField1.commitEdit();     //so use it.
                    } catch (java.text.ParseException exc) { }
    label2 = new JLabel( "Precision" );
    scroller2 = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 8 );
    scroller2.setMajorTickSpacing( 10 );
    scroller2.setMinorTickSpacing( 1 );
    scroller2.setPaintTicks( true );
    scroller2.setPaintLabels( true );
    scroller2.addChangeListener(this);
    textField2 = new JFormattedTextField(formatter);
    textField2.setValue(new Integer(10)); //FPS_INIT
    textField2.setColumns(1); //get some space
    textField2.addPropertyChangeListener(this);
    //React when the user presses Enter.
    textField2.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),  "check");
            textField2.getActionMap().put("check", new AbstractAction() {
                public void actionPerformed(ActionEvent e) {
                    if (!textField2.isEditValid()) { //The text is invalid.
                        Toolkit.getDefaultToolkit().beep();
                        textField2.selectAll();
                    } else try {                    //The text is valid,
                        textField2.commitEdit();     //so use it.
                    } catch (java.text.ParseException exc) { }
    // State Changed
         public void stateChanged(ChangeEvent e) {
             JSlider source = (JSlider)e.getSource();
             int fps = (int)source.getValue();
             if (!source.getValueIsAdjusting()) { //done adjusting
                  if(source==scroller1)   {
                       System.out.println("source ==scoller1\n");
                       textField1.setValue(new Integer(fps)); //update ftf value
                  else if(source==scroller2)     {
                       System.out.println("source ==scoller2\n");
                       textField2.setValue(new Integer(fps)); //update ftf value
             } else { //value is adjusting; just set the text
                 if(source==scroller1)     textField1.setText(String.valueOf(fps));
                 else if(source==scroller2)     textField2.setText(String.valueOf(fps));
    // Property Change
        public void propertyChange(PropertyChangeEvent e) {
            if ("value".equals(e.getPropertyName())) {
                Number value = (Number)e.getNewValue();
                if (scroller1 != null && value != null) {
                    scroller1.setValue(value.intValue());
                 else if (scroller2 != null && value != null) {
                    scroller2.setValue(value.intValue());
        // ACTION PERFORMED
        public void actionPerformed(ActionEvent event) {
        if (!textField1.isEditValid()) { //The text is invalid.
            Toolkit.getDefaultToolkit().beep();
            textField1.selectAll();
        } else try {                    //The text is valid,
            textField1.commitEdit();     //so use it.
        } catch (java.text.ParseException exc) { }
             if (!textField2.isEditValid()) { //The text is invalid.
            Toolkit.getDefaultToolkit().beep();
            textField2.selectAll();
        } else try {                    //The text is valid,
            textField2.commitEdit();     //so use it.
        } catch (java.text.ParseException exc) { }
    ...

    if :p3_note_id is null
    then
    insert into notes (project_id, note, notes_month, notes_year) So, p3_note_id is NULL.
    Another option is that you have a trigger on table NOTES that generates a new note_id even for an update.

  • How to create Rules with Flex Field mapping in the bpm worklist

    I Have created a flex field label and was able to map to the flex field attributes .
    But when i try to create a rules , I don't see the label or the flex attributes in the task payload .
    Can someone please help is understanding how to create Rules with Flex Field mapping in the bpm worklist .
    Even I am also searching for any scripts which will take the flex fields prompts and can directly create a label in the bpm worklist .
    Any pointers or suggestion is highly appreciated .

    Hi,
    SE38 -> Enter program
    Select Variants button and display. In the next screen, enter a variant name, (If not existing , press Create to create new one), else click on Change.
    Now the selection screen will display with a button "Variant Attributes" at the top.
    Click on that button.
    In the next screen, go to the selection variable column of the date field. Press F4 or drop down and select 'D' for date maintenance.
    In the column "Name of Variable (Input Only Using F4)" press F4 or drop down, select whichever kind of date calculation you want and save the variant.
    Now whenever you run the prgrm with this variant, date will be displayed by default.
    Regards,
    Subramanian

  • For Mayank Guptha : how to create formula variable in IP

    Hi,
    How to create formula variable, such that it will appear in the variable screen.

    Hi,
    the variables you create in formula function are local to the function.
    Ex., DATA  CST_ELMNT TYPE 0COSTELMNT.
           DATA QTY TYPE 0QUANTITY.
    To get the variables listed in the variable screen you need o create variables at aggregation/filter level for the required characteristics.

  • How to create Profile Based Rule in Endeca Studio Developer

    Hi,
    Can anybody tell me how to create Profile based rule in the Endeca Studio Developer. and how to fecth the data in the JSP. what are the parameter required to pass in the ENEQuery
    Thanks
    Shailesh

    I use visual studio 2012.
    I dont see rule set editor which can help me create busineesss rule.
    Where can I find it?
    Hi Rajesh,
    If you want to learn more information about RuleSet Editor in .net framework 4.5, check out https://msdn.microsoft.com/en-us/library/ee960221(v=vs.110).aspx
    for more information. 
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to create HeatMap based on Country Credit Rating?

    How to create Heatmap based on Country Credit Rating i....
    Credit Ratings are AAA, -AAA, +AA, AA, -AA, +A, A, -A, +BBB, BBB, -BBB, +BB....... From Green To Red
    Country    Credit Rating
    Angola
    BB-
    Botswana
    A-
    Burkina Faso
    B
    Ethiopia
    B-
    Ghana
    B
    Morocco
    BBB-
    Nigeria
    BB-
    Sierra Leone
    B-
    South Africa
    BBB
    Tanzania
    B
    Zambia
    B+
    Australia
    AAA
    India
    BBB-
    Indonesia
    BB+
    Pakistan
    B
    Philippines
    BBB
    Thailand
    BBB+
    Uzbekistan
    BBB
    Turkey
    BB+
    Chile
    AA-

    Thanks Jim for the solution.
    Also, this article should be helpful for you:
    Create a Heat Map Using Excel’s Conditional Formatting -
    http://peltiertech.com/heat-map-excel-conditional-formatting/
    (Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee
    the accuracy of this information.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Hi Ethan, If you trying to get points i understand but please do assume that googling is done first.
    If you want to get help from others, you should first be polite to those who are trying to help you, rather than "i already new the option of converting to numbers" or "If you trying to get points i understand but please do assume
    that googling is done first.".
    You didn't make it clear in your initial post that what you already tried, or which articles you already reviewed, how should us people know this?
    I'm sorry but here all is asked politely and please, politely do not  change the subject.

  • HOW TO CREATE PROMPT BASED ON ANOTHER PROMPT IN OBIEE

    HOW TO CREATE PROMPT BASED ON ANOTHER PROMPT IN OBIEE.
    Requiremenst is as follows.
    Year ,Qtr columns in first prompt.Based on selection on these prompts second prompt should display corresponding prompts
    Second prompt will have Month ,Week and Day columns.Second prompt should be hidden and based on first prompt selection second prompt should display with constraint based on first prompt.
    Any help would be highly appriciated!!!

    hi,
    Using Guided navigation it is possible,
    Please refer the below links.
    http://gerardnico.com/wiki/dat/obiee/dashboard_prompt_1_eq_0
    http://businessdecisionsystems.com/blog/?p=448
    Hope this help's
    Thanks,
    Satya

  • How to create ajax based tabs ..??

    Hi all,
    How to create Ajax based Tabs (or Tab like) in a JSF page..?
    Any clues..?
    Thanks and regards,
    Jijo

    You need to write your own jsf component for this.

  • How we create dynamic add form field in web form

    How we create dynamic add form field in web form?

    Hi,
    Thanks for reply.
    I need to create a form in which "add more" input field dynamically. For
    example sometime we need field on or more. Please look at the demo, I need
    to create form as per demo in business catalyst:
    http://www.openjs.com/scripts/examples/addfield.php

  • Transporting New Value Fields in COPA

    Hi All,
    I have created new value fields in COPA and regenerated the Op Concern in Dev. I need help to transport them to Quality and then to Production.
    Basically I need help on the Objects I need to select and pre-cautions I need to take.
    Appreciate your help on this.
    Thanks.
    Sree

    HI sree,
    ofter creation value field and saving that time reqwest number appeare copy the reqwest number and go through the se01 select that reqwest number select and transport click the truck symbole, and draft a mail to basis guyw.
    Thank You!
    Best Regards,
    pradheep.

  • Assign direct material cost to value field in copa while issue to Prod orde

    Dear All,
    My requirement is like this:
    There are some 16 material groups from A to P each containing some materials(finished goods).
    I want to allocate overhead to different material groups(Charecteristic in copa) in COPA using the periodic assesment cycles. I am able to allocate overhead(admin & sales cost) to different value fields in copa from different cost centers.
    I want to analyse the product cost and also the profitability of each material group in COPA using Report painter. Iam able to pull all the costs which i assign to value fields using assessment. But, i am NOT able to get the direct material cost which is issued to production orders using BOM.
    My question is whether we can assign the direct material cost to any user defined value field(material cost value field) while the material is being issued to production orders. Is there any automated way where we can directly assign the direct material cost to value field in copa while issuing the material to Production orders.
    Pls explain me whether we can do it. if yes how?
    Thank you very much in advance.
    Regards,
    Vishnu
    VST-IT.

    PA is a Profitability analysis tool. That means it gets updated when a sale is made, not before. (Except for settlements and assessment of overheads.)
    Goods issues for production gets updated in CO-PC, and needs to be analysed there. If you don't, you loose all the inbuilt tools for variance analysis, cost estimate comparisons, Wip Calculation etc. To the best of my knowledge, a Profitability Segment cannot be used as a cost object in Production Planning, because amongst others, you need to be able to capitalise the produced materials to stock at the end of the production run, or to WIP at the end of the Financial period,which is not possible with PS.
    Similarly, overheads are recorded in CCA and needs to be analysed there.
    If one goes against these big groupings in SAP, you always run into problems.

  • Origin Group as Value field in COPA - Is that Possible

    Hello Gurus,
    The business requirement is to see all the Origin Groups as Value fields in COPA - Is that Possible? If Yes, Please suggest me the steps to follow.
    Thanks a lot for your time.
    Regards,
    PM

    Hi Praveen
    Origin group cant be a Value Field.. It can be a Characteristic...
    Try with these 2 options
    1. KEA5 - Click on Create/Change a new Char and Try to create it with reference from table MBEW... If this is allowed, you will be able to plug in the Field Origin group in yur COPA data structure... regenerate your op concern after this
    2. If (1) is not allowed, then create a WW char and write a derivation rule in KEDR with ref to Table LOOKUP and use table MBEW
    Regards
    Ajay M

  • Only on value field in COPA gets values from SD

    Hi,
    I created two value fields for COPA. I assigned one of them to the condition VPRS (a cost) which works properly. The other condition, assigned, VKP0 doesnt appear in the COPA-document. We are using record type F.
    But when I ran an flow analysis I can see that the value from VKP0 has flown to COPA in record type A?
    I will assign point directly to a working solution.
    Best regards
    Carl-Johan

    HI,
    Billing document value flow is as per KE4I mapping to value fields.
    There are some value flow analysis tools under CO-PA to check your settings with respect to value flows. Use transaction KE4ST (Simulate billing document transfer -> Value flow (<Ctrl +F7>) to check where things went wrong.
    Hope this helps.

Maybe you are looking for

  • Address and Mail group issue

    I am unable to send emails to the entire group that I have created in Address book. If I have say ten emails I cannot send email with a couple of clicks I must open the group and add each email one at a time. I have multiple Macs and only have this p

  • Process chain names

    HI I hav doubts about process chains.Can u tell me some process chain names??How many process chains wil run per day in supporting project??Can u explain detaily?? Thanks & Regards Senthil

  • SUS :- Employee for vendor

    Hello Folks, We are implementing SRM SUS (5.0) (EBP SUS scenaio).  We are able to successfully replicate vendor to SUS. We can se ethe vendor org in SUS. My concern is - 1. How can we create employee for vendor (business partner) in SUS. 2.  When we

  • Tnserror

    Hi All, I'm getting following error while pinging, Can anyone suggest. TNS Ping Utility for Linux: Version 10.2.0.1.0 - Production on 10-APR-2013 08:21:59 Copyright (c) 1997, 2005, Oracle. All rights reserved. Used parameter files: /oraeng/app/oracle

  • IP Profile stuck for 3rd time since beginning of J...

    Download speedachieved during the test was - 0.11 Mbps  For your connection, the acceptable range of speeds is 0.05 Mbps-0.25 Mbps.  Additional Information:  Your DSL Connection Rate :5.06 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)  IP Profile for your