Key Range Limit

Hi,
I have a problem defining the memberset of the row key range.
By useru2019s needs it has to be a dynamic Excel workbook and you have to write the ID members in the member set.
I know the content of the key range cells can only be 254 characters long; in my case are 222 characters. The weird thing is that if I delete a member and have 213 characters I can expand the workbook; when I add a new member is when I get an error retrieving data.
Any ideas of what could the problem be?
Thanks

In my use of the row or column key ranges, I have tested this before and found that 12 ranges is the limit.  I would then add the 13th and the DRE would stop working.  After many various attempts, this has become my magic number to stop adding ranges.  If you need more, just add a second or 3rd evdre that leverages the original except where the range box is concerned.
Hope this helps.

Similar Messages

  • Read out key range in Mainstage via scripter?

    Hey people,
    I just realized, that scripter seems to be a powerful plugin.
    Anyways I didn't find a "detailed" tutorial to the scripter. I found the documentation of apple called "mainstage effects" and it says a bit about the scripter. But I'm wondering (for example), which parameters is the scripter able to get with the function GetParameters? There is no list in the internet, which shows the possible or processable parameters.
    The main thing I'm interested in:
    Mainstage has a pretty good workflow. But it's anoying that it's not possible to assign the learn-buttons for key ranges to buttons. This would be nice, if I can create two buttons that handle this.
    And another thing:
    Is the scripter able to read out the key range which is set in the channelstrip and send it out the lowest and highest key as single CC command? (I'm right now into creating a key-light-system, based on to what Native Instruments implemented in their new keyboards).
    Thank you very much,
    Chris

    Here's script for Scripter with a Learn button.
    It has an extra parameter for learning.
    Hope this helps!
    DaCaptain
    >>>>>>>
    // limit pitch range of notes
    var activeNotes = [];
    function ParameterChanged(param, value)
        switch(param)
        {                          // if it's the slider you just created
           case 0:  HandleMIDI.maxPitch = value; break;
           case 1:  HandleMIDI.minPitch = value; break;
           case 2:  HandleMIDI.learnState = value;  break;   
    function HandleMIDI(event)
      if (event instanceof NoteOn)
        if(HandleMIDI.learnState != 1)
          var pitch = event.pitch;
      if(HandleMIDI.learnState == 0) // first note
         HandleMIDI.minPitch = pitch;
         HandleMIDI.learnState = -1;
         SetParameter('Minimum Pitch', pitch);
      else if(HandleMIDI.learnState == -1)
           HandleMIDI.maxPitch = pitch;    
           SetParameter('Learn', 1); 
           SetParameter('Maximum Pitch', pitch);
      if (event.pitch > HandleMIDI.maxPitch)
      return undefined;  // don't send if too high
      if (event.pitch < HandleMIDI.minPitch)
      return undefined;  // don't send if too low
      else {
      activeNotes.push(event);
      event.send()
      else if (event instanceof NoteOff) {
      for (i=0; i < activeNotes.length; i++) {
      if (event.pitch == activeNotes[i].pitch) {
      event.send();
      activeNotes.splice(i,1);
      break;
      else { // pass non-note events through
      event.send();
    var PluginParameters = [
      { name:'Maximum Pitch', type:'lin',
      minValue:0, maxValue:127, numberOfSteps:127, defaultValue:115},
      { name:'Minimum Pitch', type:'lin',
      minValue:0, maxValue:127, numberOfSteps:127, defaultValue:30},
      {name:"Learn", type:"menu", valueStrings:["On", "Off"],
      defaultValue:1}

  • BPC for Excel: Are multiple key ranges really possible?

    Hi Experts,
    in a training document I found to possibility of multiple key ranges, to make an input schedule sheet more attractive or insert rows with excel formulas etc.
    For example: ColKeyRange: EVRNG(H13:J13;M13:O13)
    RowKeyRange: EVRNG(G15:G20;L15:L20)
    In my case I want the balance sheet separated. On the left side asset positions, on the right side liability positions (in columns for bot: Previous Year | Actual | Plan
    If I define my input schedule like that it gets messed up. No figures, weird formatting etc. Have you implemented an input schedule with multiple key ranges and did it work ok?
    Thank you,
    Cora

    Hi Cora,
    Yes, multiple key ranges do work, but it is a bit complicated as Dzmitry suggests. Your example row expansion will not work, as the row expansion needs to remain in the same columns for each part of the expansion. (In other words, EVRNG(G15:G20;L15:L20) is wrong but EVRNG(G15:G20;G25:G30) is ok.) To achieve your result, Dzmitry is correct that you will probably need to use two EVDREs.
    That said, multiple expansions work as follows:
    If you are not using an expansion, or you use NOEXPAND in your columns or rows, you can use a multiple key range for formatting purposes and simply hardcode in the members that you wish to see in each key range.
    If you want to see different expansions in each key range, then you need to use a special expansion syntax. To take your example, say you have a single dimension in your column with column range defined EVRNG(H13:J13;M13:O13). You could have your column expansion on the category dimension be "PRIORYR,ACTUAL,PLAN|PLAN,ACTUAL,PRIORYR", giving you the same set of categories reversed in each column.
    Ethan

  • Input schedule: Derive key for key range from Dimension member properties

    Hey guys,
    I'm facing the problem within a input layout. There are three keys in the row key range.
    The first row key is filled by the members of a dimension. The second and third row
    should be filled by the dependencies shown in the dimension members.
    Example:
    Dimension:
    - Order number
    Properties:
    - Client (also implemented as standalone dimension where all required characteristics are maintaned)
    - Costcenter (also implemented as standalone dimension where all required characteristics are maintaned)
    Entries in dimension members of Ordern number:
    Order number, Client, Costcenter:
    1000, 10, 511
    2000, 10, 533
    3000, 12, 511
    4000, 15, 588
    Entries in dimension Members of Client:
    10,11,12,13,14,15,16,17,18,19,20
    Entries in dimension Members of Costcenter:
    511,533,555,588
    My row key range is defined as follows: Exp1: Order number, Exp2: Client, Exp3: Costcenter
    For Planning purposes i need a input schedule that schows only the valid combinations shown above
    in master data of order number. Is this possible or do I have to leverage script logic to use dependencies shown in master data for reporting oder planning purposes !
    Cheers,
    Moritz

    Hi Moritz,
    As Nilanjan said, this is not really possible with a basic EVDRE at the moment. Your best bet is probably to either build your own solution using EVEXP, EVGET, and EVSND, or to use an EVDRE based on only the Order # to get the values and an EVSND based on the Order # and the properties of the Order # in the AfterRange of the EVDRE.
    I actually like the second option a lot better (EVDRE with EVSND in the AfterRange) because for larger queries the read performance should be better and it will be more maintainable in the long run.
    Ethan

  • EVDRE - Multiple Key Ranges - Formatting

    I am building a report that uses Multiple Key Ranges, both column and row, as shown below.
    ColKeyRange
    Sheet1!$N$101:$AA$104,Sheet1!$N$164:$AA$167,Sheet1!$N$213:$AA$216
    RowKeyRange
    Sheet1!$I$110:$I$160,Sheet1!$I$173:$I$209,Sheet1!$I$222:$I$261
    My formatting range has a line with HEADING="GREYBG" in the Criteria column.
    However, when I use keywords in my COL Heading area, only the column heading on the first key range is used.  For example, if I use a keyword GREYBG in cell N168, it wonu2019t apply to my second data range.  The second data range is formatted only from what is in the first column header.
    Is this the normal behavior?  Is there any way to make the second data range use the formatting from the second column header?

    Hi,
    Did you manage to find an answer to this?
    I have tried doing similar, with HEADING="B" and putting B in the column directly to the left of the key, yet it doesn't work on any of the data sets except the first

  • EXS-24 key range and note velocity data in name of file?

    Hi all,
    Cheers for any help in advance. Basically someone told me that if i was to put the key range and note velocity in the name of a file i want to put into EXS-24 it will automatically assign those values within the edit page.
    All i want to know is how do i do this and what order do i need to put this in the file name?
    cheers

    I already answered this in another forum where you posted it.

  • TIMESTAMP(6) Partitioned Key -   Range partitioned table ddl needed

    What is DDL syntax for TIMESTAMP(6) Partitioned Key, Range partitioned table
    Edited by: oracletune on Jan 11, 2013 10:26 AM

    >
    What is DDL syntax for TIMESTAMP(6) Partitioned Key, Range partitioned table
    >
    Not sure what you are asking. Are you asking how to create a partitioned table using a TIMESTAMP(6) column for the key?
    CREATE TABLE TEST1
        USERID                 NUMBER,
        ENTRYCREATEDDATE     TIMESTAMP(6)
    PARTITION BY RANGE (ENTRYCREATEDDATE) INTERVAL(NUMTOYMINTERVAL(1, 'MONTH'))
        PARTITION P0 VALUES LESS THAN (TO_DATE('1-1-2013', 'DD-MM-YYYY'))
    )See my reply Posted: Jan 10, 2013 9:56 PM if you need to do it on a TIMESTAMP with TIME ZONE column. You need to add a virtual column.
    Creating range paritions automatically

  • Filter in page key range

    Hi experts,
    I'm trying to do a filter for two members in a report. I put this two members in the page key range in one dimension following with comma.
    Example:    Costcenter   France,Italy
    It works fine but when i try to put in the same dimension two members that are nodes of hierarchies it doesn't work. And the reports shows nothing.
    Any idea.
    Thanx in advance
    Best regards

    The EVDRE is fine and no data should be supressed. There is no suppression.
    So it doesn't work at least in my report.
    To implement the other solution you gave me i suppose that i've to insert the cost center in the expansion and add the property in the member set, is that the way.

  • Change Col-key range with

    Hi gurus,
    Scenario:
    We want to distribute reports offline using the offline distribution wizard (Lockdown and save to folder). And we want to change the column-key range of the report when the category changes. So a different Colkeyrange for BUDGET and for ACTUAL (in the same template). In that way we can manage more than one report in one template without having performance loss of a large colkeyrange.
    I've tried it with an "Workbook_open" VBA but that isn't triggered BEFORE the execution of the EVDRE when distributed.
    Does anyone know which VBA statement will be triggered at distribution before the evdre is executed?
    Thanks a lot in advance.
    Kindest regards,
    Vincent Beumer

    Hi All,  I have one scenario to read the source file . The file delimiter is '|' . The no of pipeline for each line is 17. So if a line containing more than 17 , send an error email. For this first i am printing tota pipeline in ecah line to afile called pipelinecount.txt . Then i will read this file and send each value to while loop /for loop , where it will get > 17 , it will exit the process and send an email.  But here in script i am getting error at while line. Could anyone help.   #! /bin/kshset -x SOURCE_DIR=/vp01/SrcFilessed 's/[^|]//g' /vp01/SrcFiles/Test.txt | awk '{ print length }'> /vp01/SrcFiles/pipelinecount.txtcd $SOURCE_DIRwhile line in `cat pipelinecount.txt`; do if [ $line -eq 17 ];thenecho "No issue in pipeline"exit 0;fiif [ $line -gt 17 ];thenecho "No of pipelines exceeded the expected. Please verify the source file." | mailx -s "WKFS Load: Failed" [email protected]

  • Can input range limit be modified while AI Read running

    Is it possible to increase the precision on the PC-6052E by having an auto detection of the input signal and reducing the input range to increase the precision of the A/D conversion?
    We are continuously acquiring the signal from DAQ Analog Input. Say input signal (range -10V to 10V) came in at 1V, can we reset the input range limit to (0to+1V) to increase the precision to 15.3microV instead of 305microV for (-10to+10V). i.e. To have an auto-detection mode for the signal and readjust the input range accordingly.
    Gaston

    Configure the acquisition to sample the same channel multiple times, each at a different gain. Use a short (10 or 100 usec ?) interchannel delay so these samples are taken close together in time to each other. Then in software examine the data from all the gain setting to determine the highest gain that did not saturate. If the gains are well matched (a signal of 0.5 V gives the same data value on a 1V input range as on a 10 V range), then the values can be combined into one final data array. If not, then keep a running separate array for each gain and only use the array from the gain which did not saturate over all data values.

  • Key Range with Flat File

    Hi people, Anybody has a example how it works Key range with Flat file ? Tks

    Hi All,  I have one scenario to read the source file . The file delimiter is '|' . The no of pipeline for each line is 17. So if a line containing more than 17 , send an error email. For this first i am printing tota pipeline in ecah line to afile called pipelinecount.txt . Then i will read this file and send each value to while loop /for loop , where it will get > 17 , it will exit the process and send an email.  But here in script i am getting error at while line. Could anyone help.   #! /bin/kshset -x SOURCE_DIR=/vp01/SrcFilessed 's/[^|]//g' /vp01/SrcFiles/Test.txt | awk '{ print length }'> /vp01/SrcFiles/pipelinecount.txtcd $SOURCE_DIRwhile line in `cat pipelinecount.txt`; do if [ $line -eq 17 ];thenecho "No issue in pipeline"exit 0;fiif [ $line -gt 17 ];thenecho "No of pipelines exceeded the expected. Please verify the source file." | mailx -s "WKFS Load: Failed" [email protected]

  • Payment term key with limit days in Extended Classic Scenario

    Hello,
    We have an SRM 4.0 implementation (SRM Server 5.0 with Support Package
    9) using the Extended Classic Scenario.
    When a shopping cart is created, it must be approved, and then a
    purchase order is generated (first locally at SRM, and then is
    replicated to the backend).
    The problem is that the payment term key (field at header level EKKO-
    ZTERM) of the backend purchase order is empty, only in cases when we use a payment term key which have several different values for the
    field "limit days" (T052-ZTAGG in backend, BBP_PAYTERM-ZTAGG in SRM).
    Example:
         ZTERM     ZTAGG
          K180           09
          K180           19
          K180           31
    If the payment term key selected has no several values for the field "limit
    days" (one single entry), the payment term key arrives correctly at the backend purchase order.
    Example:
         ZTERM     ZTAGG
          E000           00
    In SRM table BBP_PAYTERM we have upload the backend payment terms
    (using report BBP_UPLOAD_PAYMENT_TERMS). In other threads it is said that you must copy the entries generated by the report with the logical system of the SRM system, but in extended classic scenario it seems to be not necessary.
    We have already implemented note 846009, in order to use always the backend payment term, but the error didn’t get resolved.
    We have our vendor business partners mapped to the local and backend
    purchasing organizations, but it is only necessary indicate the Payment term key for the Backend Purchasing Organization.
    Regards

    hi,
    Pls see the foll notes:
    Note 576349 - Terms of payment in the ECS
    Note 541934 - Modification note: Copying base date from T052
    Note 953999 - ECS: Terms of Payment values not in PO header
    <b>Note 940453 - Backend payment term data not updated in the extended PO
    Note 945018 - Incoterms data not transferred to the back end</b>
    BR,
    Disha.
    Pls reward points for useful answers.

  • Annoying problem with shift key in limit dialog Brio 6.6.4

    <p>My company uses Brio Insight & Designer v6.6.4.  We (meaning almost all users) are encountering an annoying problem whenadding a limit to a query using the limit dialog.  When try toenter a limit value using the shift key, as in Shift T to enter acapital T, the limit value field ends up with a value like"TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT".  Thisis very annoying and widespread problem with us.  It seemed tostart when we upgraded to Win XP SP2.  Is there a solution forother than to "upgrade to the latest version"?</p>

    Unfortunately not. The only way we avoided this issue was to upgrade or write the text into a text editor and cut and paste the text into the section name box.

  • ActiveX pie chart range limit

    I have a problem with creating a pie chart using ActiveX that seems to be related to the range. When I give it a source of 8 cells (source 1) the pie chart works fine (Right Pie). If I give it 9 cells (source 2) the pie chart data has 9 series instead of the 1 it should have (Wrong Pie). If I go into Excel I can correct it manually. I have been using this sub VI for a while with no problems but always with fewer than 8 cells. 
    I am using Excel 2007 version 12.
    Attachments:
    M-51539-001 Create Pie Chart.vi ‏108 KB
    Right Pie.JPG ‏124 KB
    Wrong Pie.JPG ‏114 KB

    Attached is part of the sub-vi where I am having the problem. I tell Excel which cells to use for the pie chart. If I use "Source 1" (8 cells) the pie chart is created successfully. If I use "Source 2" (14 cells) the pie chart only uses the first cell. I can go to the Excel file and select all 14 cells manually and the pie chart displays correctly. I also tried 9 cells with no luck, it seems that 8 cells are the limit. I am trying to find what is causing the limitation. I have also attached the sub-vi. 
    Attachments:
    Pie chart block diagram.JPG ‏61 KB
    M-51539-001 Create Pie Chart.vi ‏108 KB

  • Product key exceeded limit

    I've had my windows 8 computer for less than a year and I just reset it for the second time. Now its asking for a product key to active windows, I downloaded Belarc to find my key and put it in and its still not working. I keep getting an error code and
    its says the product key has exceeded its unlock limit. Is there anything I can do?

    Please repost your question in the
    Windows 8 Install, Upgrade and Activate Forum.  Thank you!
    Carey Frisch

Maybe you are looking for

  • Windows vista error 1910

    im running windows vista(i know P.O.S.) but i cannot get itunes to stay running it is a new problem i just incountered, it says windows detected a problem checking for solution, finds nothing and kicks out of itunes,  im getting a error 1910 short cu

  • N79 is not playing youtube videos

    hey guys i got n79 and i am playing youtube on it via web and it do not play for a second, what should i do? (I am familiar with youtube app)

  • Pointless to use iCloud on my iOS5 devices if don't have Lion on my MacBook?

    I don't have the iCloud option for my MacBook becuase I have not upgraded to the new Lion OS (I'm on OS X 10.6.8).  As tempted as I am to upgrade, I am going to pass for now becuase I have read far too many bad reviews from people. Specifically that

  • Problems iSync'ing my Ti PowerBook G4 with my Nokia N73?

    Can anyone help me iSync my Ti PowerBook (OS 10.3.9) with my new Nokia N73 mobile phone? My mobile doesn't show up when I 'Add devices' in iSync.

  • MAC OS 8.1 CRASHED

    Hello all, The boss just gave me his last mac. i use pc so i'm not familiar with mac. however, if I can get this fixed for free great! Anyways, gave me the mac with wireless keyboard and mouse. However, as soon as you turn on the machine... the follo