KP26 need to allow  the Activity rates by Date instead of period

Dear Friends
Currently KP26 only allows you to enter activity rates by period.
To simulate the product cost during off season we need the to load rates
Do you have any ideas to overcome this?
Thanks
SB

HI,
activity rates are planned/stored per period+year not for a single date.
Create a planning layout (T-code KP75) by copying an existing suitable layout and remove  the period from the general data section. Create a new lead column using "period".
Add this layout to the planner profile used and plan the act. rates per period.
Best regards, Christian

Similar Messages

  • Activity rate is changing in every period

    Hi Gurus ,
    I am facing problem when we are using KP26 there we have given activity rate for the first time from period 1 to 6 as usd 1/min
    and for period 1 to 7 same figure usd 1/ min .
    but when i go back and see activity rate for period 1 to 6 it is changing to usd 0.90/min .
    here distribution key is 2 and we have set indicator AVERAGE PRICE and price indicator as 1 .
    my client requires that rate of activity should not change .
    please help me on this as it very critical .
    thanks and regards
    abhi

    Hi
    So should i remove distribution key or change distribution key which could resolve my problem
    rgds
    Abhi

  • I need to increase the sample rate to 50KHz to allow for arc detection

    In an effort to get our arc detection software running we need to
    capture data with a sampling rate greater than 10kHz. Would setting the 'samples per cycle'
    to 512 (as opposed to 192) would allow us to use your re-sampled data at the
    RT-Controller (permitting us to use the FPGA VI un-altered) at a sample rate greater than 50KHz?

    The number of samples per cycle can be specified from 128 to 512 without having to recompiling the FPGA VI. But even with 512 samples per cycle, the sampling rate after resampling is about 512*50 or 512*60, still less than 50k Hz.
    Could that meet your arc detection requirement?

  • Need to get the heart rate in run keeper without bying expense additional hardware

    Hi,
    I am using runkeeper to track my activities.
    Till now, there is no compatible bluetooth device that can work directly with the iPhone in order to get the heart rate, this is very dispapointing.
    Any project in progress on this point?

    archman-cro wrote:Just a wild guess here: Try putting "resume=" in menu.lst as "by-uuid" like you have with the root partition.
    Nope, that didn't help. now the dmesg related lines appear as:
    TuxOnIce 3.2-rc1 (http://tuxonice.net)
    TuxOnIce: Can't translate "/dev/disk/by-uuid/4564e7cd-aa5b-4b41-a7b5-20db4069bf1b" into a device id yet.
    Also, that 6GB swap partition you got is a pure waste or resources. You need 3GB of swap max, and that is only if you want to store all your cache when you hibernate. If not, you don't even need a swap. If you're a normal user (means, you're not using some resource heavy apps, like those for editing HD vids or similar).
    Sadly I realized that quite late Can't do a thing about it now.

  • I need help calculating the "occupancy rate" of a lodge.

    Hello there. I have a spreadsheet that shows check in, check out times for guests in 5 units: unit 1, 2, 3, 4, & 7 (5 and 6 aren't being rented).
    I would like to have a chart that automatically displays the occupancy rate for each room as a guest is entered into the table. I'm not great at all with charts in numbers and another difficult part is creating formulars that detects the changes of a new month. So I've drawn a rough draft of what I'd like the chart to look like. Can anyone help me come up with a formula to make the chart display this?

    Hi Caleb,
    If I'm reading your table correctly, the unit numbers are i column C, In date in column E, Out date in column F and duration of stay in column G.
    For stays that do not cross from one month to another, a simple SUMIFS statement woud work to calculate the number of occupied days in a given month. As you've found, theough, the stays that begn in one month and end in another are a bit trickier.
    One way to resolve the issue is to use an auxiliary table which calculates the occuped days (for all units) using a separate column for each month, then a summary table to sum the monthly data for each unit.
    Here's an example, using random data over a two and a half month span.
    Note that the dates in the header row of Aux and Summary are actual Date and Time Values set to the first of each month, and formatted to show only the month and year. These are used in the calculations.
    The only formula in Bookings is =F-E in each cell of column G (Stay).
    Aux has two formulas:
    A2, and filled down: =Bookings :: C2
    This simpy copies the values from column C of Bookings to column A of Aux.
    B2, and filled down and right:
    =IF(AND(Bookings :: $E2>=B$1,Bookings :: $F2<EOMONTH(B$1,0)+1),Bookings :: $F2-Bookings :: $E2,IF(AND(Bookings :: $E2<B$1,Bookings :: $F2>B$1),Bookings :: $F2-B$1,IF(AND(Bookings :: $E2<=EOMONTH(B$1,0),Bookings :: $F2>EOMONTH(B$1,0)),EOMONTH(B$1,0)+1-Bookings :: $E2,"no")))
    Same formula, separated into sections:
    =
    IF(AND(Bookings :: $E2>=B$1,Bookings :: $F2<EOMONTH(B$1,0)+1),Bookings :: $F2-Bookings :: $E2,
    IF checks if the IN date AND the OUT Date are both in the month for this column. If so, the calculation is done and the formula is done; if not, control is passed to the next if:
    IF(AND(Bookings :: $E2<B$1,Bookings :: $F2>B$1),Bookings :: $F2-B$1,
    IF checks it the IN date is before the month for this column AND the OUT date is after the beginning of this month. If so,th calculaton is done and the formula is done; if not, contorl is passed to the thrid IF:
    IF(AND(Bookings :: $E2<=EOMONTH(B$1,0),Bookings :: $F2>EOMONTH(B$1,0)),EOMONTH(B$1,0)+1-Bookings :: $E2,
    IF checks if the IN Date is before the end of the month for this coumn AND the OUT date is after the end of the month. If so, the calculation is done; if not, the text blow is returned to the cell.
    "no")))
    This text was chosen to give me a visual indication of the result. In practice, I would replace it with the empty string ( "" ).
    Summary has a single formula:
    B2, and filled down and right:
    =IFERROR(DUR2DAYS(SUMIF(Aux :: $A,$A2,Aux :: B))/DAY(EOMONTH(B$1,0)),"")
    SUMIF sums the duatons of Stay for each unit in a specific month for each column.
    DUR2DAYS converts the duration to a number of days.
    DAY(EOMONTH(B$1,0) returns the number of days in the month whose date is in row 1.
    The first is divided by the second, and the result is formatted as percentage, with 0 decimal places.
    IFERROR traps the error that occurs when the source column on Aux contain only text values, and replaces the error message with the empty string.
    Regards,
    Barry

  • Non-Cisco guy here needs to install the activation key for AnyConnect

    Hi,
    I downloaded the key(s) and there seems to be an "Authorization Key" and below the list of services the key provides
    the serial number of my 5510 and then 5 groups of numbers. I assume the 5 "goups" of numbers is the activation-key.
    I tried using putty at the console and typed:
    >conf t
    conf>activation-key -->and then the series of numbers. I assumed I had to put a 0x in front of them all but itkind of flakes out as i
    put i the last number and overwrites a little. What's going on?
    Also we have the ASDM, if I can use that it would be simpler. How would I do that?
    HELP!
    --ar                  

    Activation key is one of those odd commands you enter from enable mode, not from config mode. If you're in enable mode (# prompt), just type "activation key ___" (without quotes, just using your key in place of the ___). Reference.
    In ASDM you can enter it via Choose Configuration > Device Management, and then choose the Licensing > Activation Key or Licensing Activation Key pane, depending on your model. Reference.

  • How can I monitor the active access point + data c...

    My privider (o2 Germany) requires me to use different access points (APN, proxy) on my phone (N80) depending on the type of browsing I want do do (WAP vs. "normal" access), and each of them has a "high cost trap" if I use the wrong one for the particular service.
    Very annoying - up to the point that I consider not using the phone for online access at all because I'm so scared to run into uncontrollably high fees.
    Anyways. I wonder if there is add-on software for my phone that helps me monitor my data connection, i.e.:
    * show me the currently used access point at the top of the display (yes, I know I can go into some deep menus to look it up, but that's not very helpful or even easy to use)
    * automatically disconnect when the conn is idle for a while (One of the data modes is time-based, meaning I do not want to have it open all the time by accident)
    Currently, all I can see at the top of the display is that I have a data connection at all, but that does not give me enough information to know I'm in the right mode for what I'm doing.
    Thomas

    You can force a disconnect by pressing the red/hangup key for a couple of seconds when the phone is in the standby state.
    And in menu > Tools > Settings > Connection > Packet data change the setting "Packet data conn." to "When needed" and leave the "Access point" setting there to "None".
    When you or apps on your phone are not doing any data transfer, then regardless of whether it is a WAP or "full" Internet packet data connection, you should not cumulate any charges.
    You can also move the Connection Manager app from the Tools submenu to the main menu, or even to the Active standby apps list (or the softkeys) for quicker access. No need to deep dive into menus for it then.
    And for individual apps, you can usually set the default access point to whatever is best to use for that particular app. For the browsers ("Web" and "Services") you can also make them ask you to pick the access point every time you connect.

  • I just purchased a wireless connection for my Tivo but the signal strength from my airport express does not allow the tivo to load data. How do I increase the signal strength?

    I just purchased a wireless N network adapter for the TIVO premier and am trying to use my apple airport express to connectand it  is in the another room. I am only receiving one  bar of strength on my network adapter. How can I raise the signal strength of my airport express.

    There are several things that might help, not all of which would be feasible depending on your situation:  (1) Move the TiVo unit and AirPort Express closer together.  (2) Use another AirPort Express to "extend" the network of the first AirPort Express.  Put the second AirPort Express half way between the first AirPort Express and the TiVo unit.  (3) In the general case, Power-Line equipment might allow the TiVo unit to get a good signal, but it's likely that the Ethernet port of your AirPort Express is probably connected to your broadband modem, so that solution wouldn't work for you.  (4) Changing the band or channel that the AirPort Express is using might help.  If the TiVo unit is connection on the 5 GHz band, try one of the three-digit channels, which are allowed to use higher power.

  • Need help regarding the maximum limit for data type

    Hi,
    this is Sravan. for my application am inserting the bulk data in XML format into a column of Database table.
    the sample inserted XML data will be in format... like
    '<ACC count = "10">
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    <Acc ac_no = "1111111111" cn_nr = "US" eflag = "Y" />
    </ACC>'
    this data in XML can have more than 1000 accounts.
    now, i need to take a Parameter value from XML node and write into a file. for this i have written a procedure by looping the Nodes from XML data and building Dynamic Query like..
    if nvl(v_int, 0) > 0 then
    v_sql := '';
         for v_count in 1..v_int
         loop
         if v_sql is null then
              v_sql := 'select extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@ac_no'')||extractvalue(empdetails, ''/ACC/Acc' || v_count
    ||'/@cn_nr'')||extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@eflag'') string from sample1';
         elsif v_sql is not null then
                   v_sql := v_sql || ' union all select extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@ac_no'')||extractvalue(empdetails, ''/ACC/Acc' || v_count
    ||'/@cn_nr'')||extractvalue(empdetails, ''/ACC/Acc' || v_count ||'/@eflag'') string from sample1';
              end if;
         end loop;
    end if;
    i will get this variable "v_int" from <ACC count = "10"> ACC count Attribute, here 10 is the value for v_int variable but in real time the variable value can be more than 1000.
    at the time of Building Dynamic Query I make using the Variable v_SQL which is of Data Type "Long",
    this variable stores dynamic query which is build at the time of executing procedure but this v_sql Variable is throughing Exception that ....
    "numeric or value error Character String Buffer is Too Small"... but Long Data type will store upto 2GB..
    this variable cant able to hold much data which is dynamically build.
    will you please help me to resolve this issue Or will u suggest me another method to pick the data from XML column.
    thanks,
    sravan.

    user11176969 wrote:
    i changed the code, now its working fine.
    direct assigning the dynamic query to a Clob variable raised error.
    for dynamic query building i used another variable and assigned this variable value to actual query variable.Nice!

  • I need to load the reference/check table data in to MDM Server - help

    Hi,
      I need to load the referece table/check table data from ECC50 into FTP server/Ports. I am intrested only in Material and vendor extraction. Is this is possible with MDMGX or I need to use old zreports to extract reference table data? Any help on this is appreciated.
    Thanks,
    Daniel.LA

    Hi Daniel,
    U have to use generic extratctor MDMGX to extract reference data(customizing data) from R/3.
    Prerequisite:
    MDMGX to be installed.
    Procedure to use it.
    A)Setup Execution.
    1) Define Object type as per ur requirement (drop down list standard objects are provided like customer,vendor,products etc.).
    2)Define Repository and ftp server name.
    3)Upload ports and check table.
    4)Maintain ports and check table.
    B)Execute Generation and Extraction.
    1)Generate XSD.
    2) Starrt Execution.
    For each check table u have to create a separate port in MDM Repository.
    zreport is a older version ,it can be but neednot contain latest updates in check table .
    Reward Points if helpful.
    Regards,
    Neethu Joy.

  • HT4864 I'm confused with the syncing of email with Icloud.  Do I need to use the new Icloud email account instead of my existing outlook accounts?

    I set up Icloud and an icloud email account in outlook 2010.  The calendar dates transferred to my Iphone but nothing of the emails.  The only email that go to my iphone are those that go to the new Iphone email account in outlook.  Do I have to use the Icloud email account instead of my existing outlook accounts in order for my email to sync?  If not what can I do to get my outlook email to sync with my iphone? Thanks.

    iCloud only "syncs" data in the iCloud account, not data in other external accounts such as Gmail, Yahoo, etc.  If your email, contacts and calendars are hosted by another external account, such as Gmail/Google, you may want to not sync this data using iCloud as you would have import it all to the iCloud account in order to do so.  Instead, add your external account to your iOS devices and in Settings>Mail,Conacts,Calendars>Add Account and turn on contacts and calendar syncing with your external account.

  • How can i only allow the activation of the JDialog on top?

    Hi to all,
    i have a problem with a mask swing
    Well, my problem is this:
    In a window, when i click on save button, it's open a customizing JDialog. But i would like how i can deny a click out of this JDialog, that is on top.
    In other words, in this situation, with a jdialog on top, if the user click once again on the save button or out of this jdialog, the jdialog must stay on top and active.
    How i can this?
    Please help me!!
    the code that realize my class is this:
    public class ConsegnaOrdineDialog extends JDialog implements ActionListener {
         private JOptionPane optionPane;
         private String dataOrdine;
         private JButton si, no;
         private JTextField dataConsegna;
         public ConsegnaOrdineDialog(String dataOrdine) {
              this.dataOrdine = dataOrdine;
              dataConsegna = new JTextField();
              si = new JButton("Si");
              no = new JButton("No");
              si.addActionListener(this);
              no.addActionListener(this);
              JPanel panel = new JPanel();
                 panel.setLayout(new BorderLayout(5, 10));
                 panel.add(dataConsegna, BorderLayout.NORTH);
                 panel.add(si, BorderLayout.WEST);
                 panel.add(no, BorderLayout.EAST);
              Object[] options = {panel};
              optionPane = new JOptionPane("La data �:",
                    JOptionPane.QUESTION_MESSAGE,
                    JOptionPane.NO_OPTION,
                    null,
                    options,
                    dataConsegna);
              setContentPane(optionPane);
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() == si) {
              if (e.getSource() == no) {
                   super.dispose();               
    }

    in the constructor
    setModal(true);

  • Need to fix the exchange rate in KB15N

    Hi Gurus,
    We are actually posting actual to WBS element using cost center using KB15N in different currency. We want to fixed value of exchange rate before posting (means overwrite actual exchange rate). Can anyone tell can we fixed value of exchange rate in CO side like in PO.
    Thanks Kiran

    Hi Kiran,
    You may create a screen variant of KB15N and bring the field for exch rate (with ABAP help).
    Regards,
    Mrinal

  • I need help on the activation date

    I bought the iphone 6 and activate October 16, 2014 but check the information is incorrect. September 16th, 2014 iphone 6 has not been sold but why reactivate information such statement?

    Hi Friends\Seniors,
    This is the Table with Data....
    COMPANY_ID COMPANY     YEAR     DUE_DATE     STATUS     CURRENCY_CODE     CREATE_DATE     LAST_UPDATE_DATE     LAST_UPDATED_BY          
    10001     Lanscer ltd     2005     01.11.2005 16:06:25     Scheduled     USD     08.01.2005 16:06:00     07.12.2006 10:07:17     1005150
    10002     Wipro ltd     2006     01.06.2006 00:00:00     Rejected     USD     08.02.2006 16:06:25     08.11.2006 16:41:44     1005150
    10003     Sector Ltd     2006     01.10.2006 16:06:25     Approved     INR     01.01.2006 16:40:22     09.11.2006 11:04:19     1005151
    10004     Creative ltd     2007     20.12.2007 00:00:00     Approved     USD     21.01.2007 16:27:06     21.04.2005 16:27:06     -1
    10005     Simpsons ltd     2007     01.07.2007 00:00:00     Scheduled     USD     21.01.2007 16:27:06     21.04.2007 16:27:06     -1
    10005     Signs ltd     2007     01.12.2007 00:00:00     Scheduled     USD     21.01.2007 16:27:06     21.04.2007 16:27:06     -1
    and i need the records of the Due Dates based on the Year
    Thanks in Advance
    Regards
    Seenu

  • I need to bypass the activation screen on my iPad

    I have just done a factory reset on my Ipad. I have forgotten my Icloud password and can't remember my security answers which were set over three years ago. HELP!
    I'm locked out and can't use my device. Please help me.

    You need to contact Apple’s Account Security team. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (120506)

Maybe you are looking for

  • Explain Plan

    Just Question about Explain Plan. Q- 1. Is it Possible to trace a current session query from other session without altering that session. If How can i do it. I can not do it with v$session becuase it will be different sessionid. Also i ndon't want to

  • CCMS agent not getting registered

    Hello, No activities carried out on Solman 7.1 & managed system CRM 7 As I was getting error in RZ21 of solman for agent of our CRM7 system while testing connection,I was trying to re-register sapccm4x agent on managed system CRM 7 So first I stopped

  • Manipulating RAM from C

    I'm trying to copy a display buffer from RAM into a BitmapData object in C. I'd prefer to do this in C rather than AS3 as it would lead to a cleaner library design (I'm porting SDL - http://github.com/emcmanus/flashsdl/tree/master). Most techniques t

  • Album art gets shuffled to wrong podcasts

    Sometimes when I sync, my podcast's album art gets shuffled to other podcasts. it only seems to happen to podcasts that stay on my iphone and don't get updated, but I'm not entirely sure if that definite. Anyone has this problem? Is there a fix? Than

  • Give me help,thank you!

    will report articles about Oracle.I have seen two blogs :one is (http://www.killtest.com.tw),the other one is (http://www.ciscoblog.org) But I didn't understand the meaning of these articles about Oracle in the blogs.Who knows it please tell me ?Than