2 Region Conditions on one region

I want my region called Territory Information only to appear on my form if:
P10_INTL_DOM = D (return value)
and
P10_MAIN = Y (return value)
How do I write this when it looks like the conditional section allows only for 1 condition at a time? I am so new at Apex, so please be detailed. Thanks!

I got it! I chose PL/SQL Expression and entered the following in Expression 1.
:P10_INTL_DOM = 'D' AND :P10_MAIN = 'Y'

Similar Messages

  • How to copy the Pricing conditions from one Distribution Channel to another

    Generally we use VK11 transaction to create conditional records .
    but I Need to Know whether is it Possible to copy the Pricing conditions from one Distribution Channel to another with same name and same internal Characteristics .
    Since we have around 70+ of Condition type with different parameter Sequence.So Instead of Going for BDC whether is there any standard Funct Modules/programs/BAPIs to do this?
    How to make a copy Condition types from One Distribution Channel to another.
    since SAP has already provided to copy conditions from Customer to customer.
    Likewise i need to know whether SAP is facilitating for these feature also.
    Iam Dubious in this issue.
    Hope Fully looking for the answers.
    Harish.N

    - IDOC_INPUT_COND_A (you can create IDOC, but also call directly)
    - call transaction / batch input (use transaction XK15, as used by LSMW)
    - use group of function modules RV_CONDITION_COPY, RV_CONDITION_SAVE, RV_CONDITION_RESET + commit.
    if you search SDN on 'RV_CONDITION_COPY' you'll find more info I believe.
    Someone mentioned BAPI_PRICE_CONDITIONS as well.

  • HT201359 The new (09/19/13) Apple terms and conditions require one to click the AGREE button in order to update the apps;  however, there is no such button to click on.  Therefore I cannot update the apps on my iPhone.  Any ideas?

    The new (09/19/13) Apple terms and conditions require one to click the AGREE button in order to update the apps;  however, there is no such button to click on.  Therefore I cannot update the apps on my iPhone.  Any ideas?

    I was having the same problem, I had to go into iTunes on my laptop and agree to the terms there, and now i can download apps on my iPhone.

  • Multiple where conditions in one parameter

    Hi,
    Is it possible to have more than one where condition in one parameter?
    For example, my WHERE_CLAUSE parameter holds the value "where id='12345' and name='john smith'"
    when i run the report, I get a [052008_033528064][][EXCEPTION] java.lang.NullPointerException at oracle.apps.xdo.dataengine.DataTemplateParser.getObjectVlaue(Unknown
    Source) Thus the sql statement did not execute.
    But if I change the WHERE_CLAUSE to "where id='12345'" or "where name='john smith'" it works fine.
    My observation is that if there are two where conditions, BI publisher wont allow it. Am I correct?
    But the report has to be open to the possibility of having more than one where clause condition. Is there a work around for this?
    Thanks,
    Shanak

    nope your mistaken. bip will handle multiple joins.
    1. make sure the where_clause parameter is defined in your package.
    2. make sure use & syntax
    3. make sure your sql is not malformed. This is probably the issue.
    4. also, read my article on bind variables. the practice of coding the actual value in a where clause should be avoided at all costs. Causes the query execution plan to be reparsed each time that particular query is executed.
    http://bipublisher.blogspot.com/2007/10/bi-publisher-what-lexical-understanding.html
    Ike Wiggins
    http://bipublisher.blogspot.com/

  • 2 same surrogate keys with different filter conditions in one report

    how do we put 2 same sr keys with different filter conditions in one single report??
    for example, we have to get the 'count' for tm_sr_key:
    1. count(tm_sr_key) where past_due_flag = Y
    2. count(tm_sr_key) where past_due_flag = Y and N
    to be displayed in one single report.
    it happens that both sr_keys will display the same measure (which is the 1st filter conditions)
    and the filter under criteria tab in anwer will show as :
    tm_sr_key where {filter condition 1}
    AND
    tm_sr_key where {filter condition 2}
    instead of :
    tm_sr_key where {filter condition 1} for 1st measure
    tm_sr_key where {filter condition 2} for 2nd measure
    d only option i could think right now is to duplicate the tm_sr_key data in the same table but with different name say, tm_sr_key_2..
    kindly pls help.
    thanx

    i'm sorry, not really understand.
    could you pls explain a bit more about the filter column? how do we do it? coz i'm really new in this tool.
    r u talking about editing the filter located under the column on the right side of the OBIEE answers?
    or is it by editing the 'edit column formula' for required column; that is by replacing the 'column formula' expression with this:
    FILTER(EXPS_FACT.FAC_SR_KEY USING EXPS_FACT.PAST_DUE_FLAG = 'Y') <----if it is like this, i tried it already & its giving me an error message..
    thanx.
    Edited by: rezza.nasha on May 28, 2009 1:26 AM

  • How to put condition for one date range should not interfear with another ?

    hi friends,
    how to put condition for one date range should not interfear with another  date range.
    my data base table has two fields
    from date
    to date.
    when we enter the date range in the data base , new date range means from date and to date should not interfear.
    can  anybody help me.
    thanks &Regards,
    Revanth
    Edited by: rk.kolisetty on Jul 1, 2010 7:18 PM

    Do it the SAP way....
    First entry...from is today, to is 99991231.
    New dates entered, now we have two rows...:
        from is original date  to becomes yesterday.
        From is today          to is 99991231

  • Multiple "FromAddressContainsWords" Conditions in One Rule via PowerShell?

    My organization recently moved to Exchange Online and I am looking at trying to convert the old mail rules from our old system (Sieve rules from Zimbra) to something that will work in Exchange Online.  My plan is to massage the Sieve output into New-InboxRule
    statements.  The massaging part is the easy part.  What I'm having difficult with is using PowerShell to recreate a rule that should have multiple -FromAddressContainsWords parameters.  Here's what I started off with:
    New-InboxRule -Name "Annoyances" -FromAddressContainsWords roxioemail.com -FromAddressContainsWords "Covalent Technologies" -FromAddressContainsWords process.con -FromAddressContainsWords [email protected] -DeleteMessage $true -StopProcessingRules -Mailbox George.Lenzer
    This didn't work as the -FromAddressContainsWords option can only be used once.  The error also suggested trying to do an array if the parameter would accept one.  I don't know, because that isn't documented anywhere.  The only thing mentioned
    in the help is that it will take a "MultivaluedProperty" which I assume means some sort of string or array that has multiple values in it.
    I then tried this:
    New-InboxRule -Name "Junk Mail" -FromAddressContainsWords {roxioemail.com; Covalent Technologies; process.com; [email protected]} -DeleteMessage $true -StopProcessingRules $true -Mailbox George.Lenzer
    While this worked, when I went into OWA to look at the rule and check the list of words, instead of each word on it's own line, had a single entry containing everything between { and }.  This doesn't look right, and I don't expect it would do what I
    want.  So how does one go about creating an Inbox rule from PowerShell that needs to check multiple conditions, some of the identical type?  It can be done from the GUI, so there must be a way to do it from PowerShell.  Any suggestions?

    Hi George.  Thanks for posting in the forums.  Looking at both of your code snippets, I can see where the problem is.  MultivaluedProperties in PowerShell are exactly as you describe: a set of properties presented as a single argument to a
    parameter.  The mistake you made was attempting to use the semicolon to separate the items in your multivalued property and then trying to present them as a single string.  This is why you get the whole blob of text between the squiggly braces.
    Before I give you the solution, let me say that what you want is to pass an array to -FromAddressContainsWords.  In PowerShell. the comma along with multiple quoted strings is what defines an array.  See here for a better explanation than I can
    give:
     http://theessentialexchange.com/blogs/michael/archive/2008/02/08/Multivalued-Parameters-.aspx
    With that said, here's the solution to your issue:
    New-InboxRule -Name "Junk Mail" -FromAddressContainsWords ("roxioemail.com", "Covalent Technologies", "process.com", "[email protected]") -DeleteMessage $true -StopProcessingRules
    $true -Mailbox George.Lenzer
    Hope this helps!

  • Chart for representing multiple inputs (conditions) and one output

    Hello everyone,
    I am using Microsoft Excel 2010.
    I have a list of sells. Each sell amount can be only one from the following range $25, $30, $50, $40, $75, $85, $100 and number of clients can be any number between 0 and 500 in each month. We assume each client will buy the services at least once a year or
    at most once a month. A sales representative will make 10% profit out of these sells.
    What type of chart representation can best show the minimum and maximum profits per month during a year for a sales rep.?
    Any help is appreciated in advance.
    Thanks

    Hello Ring Gee.
    Thanks for reply,
    Suppose you are working for a company, consider the followings at the end of the first month. They will pay you 10% commission if you sell the telephone services to 100 people. You will continue to receive this amount of commission for 12 months. If you
    sell the telephone services to 300 people your commission rate will be 14% and they will pay you this commission for 20 months. This means in the first case you will receive $3000 to $12000  (varies by sell's amount) and if you sell the services to 600
    clients you will receive between $96000 and $384000 (varies by sell's amount). 
    This way, life time and rate of your commission will increase if you increase the number of sells. 
    Is it clear enough? 
    I want to visualize this scenario using the chart that covers all conditions. There was no option to upload the actual excel file, so I took a picture of it. Look at the image bellow please: 

  • List of Like condition from one Lookup table.

    Hi,
    I have 2 tables.
    SourceData table and LookUp table .
    SourceData table has one column called SName
    SName
    Jayesh  Krishnan
    Karthik Kumar
    Liju    Sharma
    Kumar Jayesh
    Kumar Pradeep
    Lookup table has one column called LName(Lookup table is the one which is required to look up with "like" condition)
    LNamne
    Kumar%
    %Krishnan
    I need to query SourceDate table with the like condition mentioned in lookup table.
    So my result based on above two tables should look like
    Jayesh  Krishnan
    Kumar Jayesh
    Kumar Pradeep
    Please help me in this regard.

    Try this,
    create table sourcetable (SName varchar(200))
    insert into sourcetable values('Jayesh Krishnan')
    insert into sourcetable values('Karthik Kumar')
    insert into sourcetable values('Liju Sharma')
    insert into sourcetable values('Kumar Jayesh')
    insert into sourcetable values('Kumar Pradeep')
    create table lookuptable (LName varchar(200))
    insert into lookuptable values('Kumar%')
    insert into lookuptable values('%Krishnan')
    go
    declare @sql nvarchar(max)
    declare @temp table ([where] nvarchar(max))
    declare @where nvarchar(max)
    set @sql = 'SELECT Substring(COLS,4, LEN(COLS)) FROM (
    SELECT Stuff((SELECT '' OR SName like '''''' + LName + ''''''''
    FROM lookuptable
    FOR xml path('''')), 1, 1, '''') COLS
    ) X'
    insert into @temp exec sp_executesql @sql
    select @where = [where] from @temp
    set @sql = 'SELECT * FROM sourcetable WHERE ' + @where
    exec sp_executesql @sql
    go
    drop table sourcetable
    drop table lookuptable
    Regards, RSingh

  • Multiple conditions in one

    Hi,
    I have to put constants values L1 or L2 or L3 into a single target field but with constants it is not working.
    Is their any other way of doing it?
    Regards,
    Aniruddha

    >
    Aniruddha Bhattacharya wrote:
    > Hi,
    > I have to put constants values L1 or L2 or L3 into a single target field but with constants it is not working.
    > Is their any other way of doing it?
    >
    >
    > Regards,
    > Aniruddha
    Hi,
    On what conditions you need to send these constants to target ??
    Regards
    Rahul grover

  • Conditionally Formatting One Column Based On The Value of Another Column

    I have the following requirement:
    I have 2 columns in a report showing Actual Sales & Budget Sales each year. I am using a bar chart to show the different values for these 2 columns.
    I need to conditionally format the column "Actual Sales" so that if it is less than the "Budget Sales" it will appear in red, and green if "Actual Sales" is greater than "Budget Sales." So in a nutshell,
    CASE WHEN "Actual Sales" < "Budget Sales" THEN
    RED
    ELSE
    GREEN
    END
    Thoughts anyone?

    CASE WHEN (COL1 - COL2) < 0 then Red else Green end
    regards
    John
    http://obiee101.blogspot.com

  • 2 filter conditions in one column in one report

    I want to filter a column with value x  and then the same column with value y in one single report in OBI11.1.7.Is this possible? I appreciate your answer.

    i'm sorry, not really understand.
    could you pls explain a bit more about the filter column? how do we do it? coz i'm really new in this tool.
    r u talking about editing the filter located under the column on the right side of the OBIEE answers?
    or is it by editing the 'edit column formula' for required column; that is by replacing the 'column formula' expression with this:
    FILTER(EXPS_FACT.FAC_SR_KEY USING EXPS_FACT.PAST_DUE_FLAG = 'Y') <----if it is like this, i tried it already & its giving me an error message..
    thanx.
    Edited by: rezza.nasha on May 28, 2009 1:26 AM

  • 6 IF-THEN and OR conditions for one target field mapping

    Hi Mapping experts,
    I have a validation condition involving 2 source fields and 1 target field only, however the number of conditions is 6 (OR)
    Source Fields:
    TYPE
    PONUM
    Target Field:
    BELNR
    If TYPE = 1st value   then   BELNR = PONUM substring (0, 8)  0=start position, 8=character count
    OR
    If TYPE = 2nd value   then   BELNR = PONUM substring (2, 8)
    OR
    if TYPE = 3rd value  then  BELNR = PONUM substring (4, 8) ..........  up to the 6th Validation Condition.
    When I do this using graphical mapping only (multiple IF-THEN and OR's) the validation is successful only on the 1st IF-THEN statement, then it passes the substringed value to the 1st OR function.....    When I "Display Queue" the 1st OR function the substringed value is taken as null (or:in1 <null>)  Is this because OR function is expecting Input as "True or False" value only and not a string value?
    For my requirement above, can I achieve this using graphical mapping only?    or do I have to use UDF for this?
    If it's better to use UDF for this, would anyone give me a jumpstart on the code?  (I have no experience yet in UDFs)
    Thanks, and hoping that somebody will respond accurately and completely.

    Create UDF with two inputs as TYPE & PONUM and use bleow code there..
    String out = "";
    if( TYPE.equals("1"))
    out = PONUM.substring(0,8);
    return out;
    else if( TYPE.equals("2"))
    out = PONUM.substring (2,8);
    return out;
    else if( TYPE.equals("3"))
    out = PONUM.substring (4,8);
    return out;
    else if( TYPE.equals("4"))
    out = PONUM.substring (4,8);
    return out;
    else if( TYPE.equals("5"))
    out = PONUM.substring (4,8);
    return out;
    else if( TYPE.equals("6"))
    out = PONUM.substring (4,8);
    return out;
    return "";
    Note: change the substring range as per your need in above code.
    Now do your mapping as shown below
    TYPE ------>|
                | -----> UDF ---> BELNR
    PONUM----->|

  • SSIS 2008 or 2012 Data Task: How to conditionally choose one of two flatfile columns on a per-row basis

    I searched the textbooks and searchable forum posts for something related to my question, but could not find it. I'm hoping when after I describe my question that it might sound familiar to someone.
    First, the context: another department using a black-box database product stopped use of one column and used a different column instead. However, the data in the flat-file export that I need to use for my own database must contain the entire
    table. If it was a clean binary switch, that would be great: I could split the rows into two groups based on date and deal with it that way. Instead, there was a period of overlap while users slowly got the hang of the practice.  This means that I have
    two columns where a row value is either in one column
    or the other.
    Now, the question: I currently use SSIS to import this flatfile into an SQL Server table and use a T-SQL script in an SQL Agent Job to handle the problem.
    However, I was hoping I could do this on the SSIS side while importing the data so that it appears into the SQL Server destination table nice and clean.
    This is a HIGHLY SIMPLIFIED view of my system, using dummy data and dummy names. The T-SQL script describes in essence my source and destination table and what I would like to do on the SSIS side. If a screenshot of my incomplete data tab will help, I can
    do it, but at this point I'm providing what I hope presents the background without presenting distractions.  
    Thank you for any hints or ideas.
    use Learning_Curve;
    go
    if OBJECT_ID('dbo.Relation_A','U') is not null
    drop table dbo.Relation_A;
    create table dbo.Relation_A (
    Rel_A_ID int primary key,
    Rel_A_Value varchar(20) not null,
    Rel_B_Value varchar(20) not null
    insert into dbo.Relation_A values (1,'Unknown','Measured'),(2,'Measured','N/A'),(3,'Unknown','Measured'),
    (4,'Measured','Unknown'),(5,'N/A','Measured'),(6,'Unknown','Measured');
    if OBJECT_ID('dbo.Relation_D','U') is not null
    drop table dbo.Relation_D;
    create table dbo.Relation_D (
    Rel_D_ID int primary key,
    Rel_D_Value varchar(20) not null
    insert into dbo.Relation_D
    select
    a.Rel_A_ID as Rel_D_ID,
    case
    when a.Rel_A_Value = 'N/A' or a.Rel_A_Value='Unknown'
    then a.Rel_B_Value
    else a.Rel_A_Value
    end as Rel_D_Value
    from dbo.Relation_A a;
    go

    You could have posted question in new thread.
    Anyway, you can achieve it by using below tasks shown in attached picture.
    - Merge Join will join by using first ID column
    - Derived Column will have below expressions
    [Column 1] == "" || ISNULL([Column 1]) ? [AnotherColumn 1] : [Column 1]
    [Column 2] == "" || ISNULL([Column 2]) ? [AnotherColumn 1] : [Column 2]
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • Conditional Copy one to one

    Hi there,
    I use BPC 7.5 NW SP 10
    I want to copy the values ​​from last year to next year as follows:
    I run my package 3 times out:
    Step1: Budget  BAS(current year) to Budget BAS(next year)
    Step2: Counter BAS(current year) to Budget BAS(next year) (must overwrite if %value%<> 0 or <> "")
    Step3: Actual   BAS(current year) to Budget BAS(next year) (must overwrite if %value%<> 0 or <> "")
    In dafault Copy Package that does not work, because with Counter or Actual values come ​​also 0 or "".
    With Boolean'm not progressed.
    Any idea?
    Thanks in advance.
    Alisher
    //---priorization logic
    //---My Package
    //----My Script
    *SELECT(%ERZ_FW%,"[ID]",EDM_PLANT,"[VART]=FW")
    *SELECT(%ERZ_KW%,"[ID]",EDM_PLANT,"[VART]=KW")
    *SELECT(%ERZ_DL%,"[ID]",EDM_PLANT,"[VART]=DL")
    *SELECT(%ERZ_ST%,"[ID]",EDM_PLANT,"[VART]=ST")
    *XDIM_MEMBERSET EDM_ACCT = %EDM_ACCT_SET%
    *XDIM_MEMBERSET EDM_DATASRC = %EDM_DATASRC_SET%
    *XDIM_MEMBERSET EDM_OBJECT = %EDM_OBJECT_SET%
    *XDIM_MEMBERSET EDM_PLANT = %ERZ_FW%,%ERZ_KW%,%ERZ_DL%,%ERZ_ST%
    *XDIM_MEMBERSET EDM_REPCYCLE = KJ
    *XDIM_MEMBERSET EDM_RPTCUR = EUR
    *XDIM_MEMBERSET EDM_TARIFF = TID_NAS
    *XDIM_MEMBERSET EDM_TIME = %EDM_TIME_SET%
    *XDIM_MEMBERSET EDM_VIEW = %EDM_VIEW_SET%
    *XDIM_MEMBERSET MEASURES = PERIODIC
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS BUDGET
    *WHEN EDM_TIME.PERIOD
    *IS JAN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(1,%EDM_TIME_SET%))
    *IS FEB
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(2,%EDM_TIME_SET%))
    *IS MAR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(3,%EDM_TIME_SET%))
    *IS APR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(4,%EDM_TIME_SET%))
    *IS MAY
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(5,%EDM_TIME_SET%))
    *IS JUN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(6,%EDM_TIME_SET%))
    *IS JUL
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(7,%EDM_TIME_SET%))
    *IS AUG
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(8,%EDM_TIME_SET%))
    *IS SEP
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(9,%EDM_TIME_SET%))
    *IS OCT
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(10,%EDM_TIME_SET%))
    *IS NOV
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(11,%EDM_TIME_SET%))
    *IS DEC
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(12,%EDM_TIME_SET%))
    *ENDWHEN
    *ENDWHEN
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS COUNTER
    *WHEN SIGNEDDATA
    *IS >0
    *WHEN EDM_TIME.PERIOD
    *IS JAN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(1,%EDM_TIME_SET%))
    *IS FEB
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(2,%EDM_TIME_SET%))
    *IS MAR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(3,%EDM_TIME_SET%))
    *IS APR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(4,%EDM_TIME_SET%))
    *IS MAY
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(5,%EDM_TIME_SET%))
    *IS JUN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(6,%EDM_TIME_SET%))
    *IS JUL
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(7,%EDM_TIME_SET%))
    *IS AUG
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(8,%EDM_TIME_SET%))
    *IS SEP
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(9,%EDM_TIME_SET%))
    *IS OCT
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(10,%EDM_TIME_SET%))
    *IS NOV
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(11,%EDM_TIME_SET%))
    *IS DEC
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=TMVL(12,%EDM_TIME_SET%))
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *COMMIT

    Hi Vadim,
    I have your first suggestion (* REC (EXPRESSION =% VALUE%> 0% VALUE%?: ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[SOMETIME]),EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=SOMETIME)) taken, and the validation and simulation as well package are successfully gone through.
    Script file:
    //----------------------VART---------------------------------------------------------
    *SELECT(%ERZ_FW%,"[ID]",EDM_PLANT,"[VART]=FW")
    *SELECT(%ERZ_KW%,"[ID]",EDM_PLANT,"[VART]=KW")
    *SELECT(%ERZ_DL%,"[ID]",EDM_PLANT,"[VART]=DL")
    *SELECT(%ERZ_ST%,"[ID]",EDM_PLANT,"[VART]=ST")
    *XDIM_MEMBERSET EDM_ACCT = ACC2210,ACC2230,ACC2240,ACC2250
    *XDIM_MEMBERSET EDM_DATASRC = %EDM_DATASRC_SET%
    *XDIM_MEMBERSET EDM_OBJECT = %EDM_OBJECT_SET%
    *XDIM_MEMBERSET EDM_PLANT = %ERZ_FW%,%ERZ_KW%,%ERZ_DL%,%ERZ_ST%
    *XDIM_MEMBERSET EDM_REPCYCLE = KJ
    *XDIM_MEMBERSET EDM_RPTCUR = EUR
    *XDIM_MEMBERSET EDM_TARIFF = TID_NAS
    *XDIM_MEMBERSET EDM_TIME = %EDM_TIME_SET%
    *XDIM_MEMBERSET EDM_VIEW = %EDM_VIEW_SET%
    *XDIM_MEMBERSET MEASURES = PERIODIC
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS BUDGET
    *WHEN EDM_TIME
    *IS 2013.JAN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.JAN)
    *IS 2013.FEB
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.FEB)
    *IS 2013.MAR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.MAR)
    *IS 2013.APR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.APR)
    *IS 2013.MAY
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.MAY)
    *IS 2013.JUN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.JUN)
    *IS 2013.JUL
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.JUL)
    *IS 2013.AUG
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.AUG)
    *IS 2013.SEP
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.SEP)
    *IS 2013.OCT
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.OCT)
    *IS 2013.NOV
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.NOV)
    *IS 2013.DEC
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.DEC)
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS COUNTER
    *WHEN EDM_TIME
    *IS 2013.JAN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JAN]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.JAN)
    *IS 2013.FEB
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.FEB]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.FEB)
    *IS 2013.MAR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAR]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.MAR)
    *IS 2013.APR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.APR]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.APR)
    *IS 2013.MAY
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAY]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.MAY)
    *IS 2013.JUN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUN]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.JUN)
    *IS 2013.JUL
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUL]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.JUL)
    *IS 2013.AUG
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.AUG]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.AUG)
    *IS 2013.SEP
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.SEP]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.SEP)
    *IS 2013.OCT
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.OCT]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.OCT)
    *IS 2013.NOV
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.NOV]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.NOV)
    *IS 2013.DEC
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.DEC]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.DEC)
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS ACTUAL
    *WHEN EDM_TIME
    *IS 2013.JAN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JAN]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.JAN)
    *IS 2013.FEB
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.FEB]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.FEB)
    *IS 2013.MAR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAR]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.MAR)
    *IS 2013.APR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.APR]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.APR)
    *IS 2013.MAY
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAY]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.MAY)
    *IS 2013.JUN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUN]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.JUN)
    *IS 2013.JUL
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUL]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.JUL)
    *IS 2013.AUG
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.AUG]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.AUG)
    *IS 2013.SEP
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.SEP]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.SEP)
    *IS 2013.OCT
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.OCT]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.OCT)
    *IS 2013.NOV
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.NOV]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.NOV)
    *IS 2013.DEC
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.DEC]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.DEC)
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    UJKT log file:
    LGX:
    *XDIM_MEMBERSET EDM_ACCT = ACC2210,ACC2230,ACC2240,ACC2250
    *XDIM_MEMBERSET EDM_DATASRC = IMPORT
    *XDIM_MEMBERSET EDM_OBJECT = P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004
    *XDIM_MEMBERSET EDM_PLANT = P001_15,P002_15,P003_15,P004_15,P005_15,P006_15,P007_15,P008_15,P009_15,P010_15,P011_15,P012_15,P013_15,P014_15,P015_15,P016_15,P017_15,P018_15,P019_15,P020_15,P025_15,P029_15,P033_15,P043_15,P044_15,P045_15,P046_15,P047_15,P048_15,P054_15,P055_15,P079_15,P080_15,P081_15,P082_15,P083_15,P084_15,P085_15,P086_15,P087_15,P088_15,P089_15,P090_15,P091_15,P092_15,P093_15,P094_15,P095_15,P096_15,P097_15,P098_15,P099_15,P100_15,P101_15,P102_15,P103_15,P104_15,P105_15,P106_15,P107_15,P113_15,P114_15,P115_15,P116_15,P117_15,P118_15,P119_15,P120_15,P121_15,P122_15,P123_15,P124_15,P125_15,P116_20,P021_19,P022_19,P023_19,P024_19,P025_19,P026_19,P027_19,P028_19,P030_19,P031_19,P032_19,P034_19,P035_19,P036_19,P037_19,P038_19,P039_19,P040_19,P041_19,P042_19,P049_19,P050_19,P051_19,P052_19,P053_19,P055_19,P056_19,P057_19,P058_19,P059_19,P060_19,P061_19,P062_19,P063_19,P064_19,P065_19,P066_19,P067_19,P068_19,P069_19,P070_19,P071_19,P072_19,P073_19,P074_19,P075_19,P076_19,P077_19,P078_19,P018_17,P020_17,P025_17,P029_17,P047_17,P054_17,P114_17
    *XDIM_MEMBERSET EDM_REPCYCLE = KJ
    *XDIM_MEMBERSET EDM_RPTCUR = EUR
    *XDIM_MEMBERSET EDM_TARIFF = TID_NAS
    *XDIM_MEMBERSET EDM_TIME = 2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,2013.MAY,2013.JUN,2013.JUL,2013.AUG,2013.SEP,2013.OCT,2013.NOV,2013.DEC
    *XDIM_MEMBERSET EDM_VIEW = COUNTER
    *XDIM_MEMBERSET MEASURES = PERIODIC
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS BUDGET
    *WHEN EDM_TIME
    *IS 2013.JAN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.JAN)
    *IS 2013.FEB
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.FEB)
    *IS 2013.MAR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.MAR)
    *IS 2013.APR
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.APR)
    *IS 2013.MAY
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.MAY)
    *IS 2013.JUN
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.JUN)
    *IS 2013.JUL
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.JUL)
    *IS 2013.AUG
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.AUG)
    *IS 2013.SEP
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.SEP)
    *IS 2013.OCT
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.OCT)
    *IS 2013.NOV
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.NOV)
    *IS 2013.DEC
    *REC(EXPRESSION=%VALUE%,EDM_VIEW=BUDGET,EDM_DATASRC=COPY,EDM_TIME=2014.DEC)
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS COUNTER
    *WHEN EDM_TIME
    *IS 2013.JAN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JAN]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.JAN)
    *IS 2013.FEB
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.FEB]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.FEB)
    *IS 2013.MAR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAR]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.MAR)
    *IS 2013.APR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.APR]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.APR)
    *IS 2013.MAY
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAY]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.MAY)
    *IS 2013.JUN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUN]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.JUN)
    *IS 2013.JUL
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUL]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.JUL)
    *IS 2013.AUG
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.AUG]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.AUG)
    *IS 2013.SEP
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.SEP]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.SEP)
    *IS 2013.OCT
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.OCT]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.OCT)
    *IS 2013.NOV
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.NOV]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.NOV)
    *IS 2013.DEC
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.DEC]) : %VALUE%,EDM_VIEW=COUNTER,EDM_DATASRC=COPY,EDM_TIME=2012.DEC)
    *WHEN_REF_DATA=TRANS_DATA
    *WHEN EDM_VIEW
    *IS ACTUAL
    *WHEN EDM_TIME
    *IS 2013.JAN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JAN]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.JAN)
    *IS 2013.FEB
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.FEB]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.FEB)
    *IS 2013.MAR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAR]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.MAR)
    *IS 2013.APR
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.APR]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.APR)
    *IS 2013.MAY
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAY]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.MAY)
    *IS 2013.JUN
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUN]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.JUN)
    *IS 2013.JUL
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUL]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.JUL)
    *IS 2013.AUG
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.AUG]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.AUG)
    *IS 2013.SEP
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.SEP]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.SEP)
    *IS 2013.OCT
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.OCT]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.OCT)
    *IS 2013.NOV
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.NOV]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.NOV)
    *IS 2013.DEC
    *REC(EXPRESSION=%VALUE%>0 ? ([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.DEC]) : %VALUE%,EDM_VIEW=ACTUAL,EDM_DATASRC=COPY,EDM_TIME=2012.DEC)
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    *ENDWHEN
    LOG:
    FILE:\ROOT\WEBFOLDERS\EON_BAGN \ADMINAPP\EDM\TEST.LGF
    USER:U-DOM1\A39523
    APPSET:EON_BAGN
    APPLICATION:EDM
    [INFO] GET_DIM_LIST(): I_APPL_ID="EDM", #dimensions=10
    EDM_ACCT,EDM_DATASRC,EDM_OBJECT,EDM_PLANT,EDM_REPCYCLE,EDM_RPTCUR,EDM_TARIFF,EDM_TIME,EDM_VIEW,MEASURES
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.MAR,2013.APR,...13 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    SCRIPT RUNNING TIME IN TOTAL:2.62 s.
    In package I passed throug Counter values for all periods of 2013.
    But the results are not correct.
    Data in my Input Schedule:
    Package log:
    LOG BEGIN TIME:2014-07-11 12:12:30
    FILE:\ROOT\WEBFOLDERS\EON_BAGN\ADMINAPP\EDM\14_COPY_VART.LGF
    USER:U-DOM1\A39523
    APPSET:EON_BAGN
    APPLICATION:EDM
    [INFO] GET_DIM_LIST(): I_APPL_ID="EDM", #dimensions=10
    EDM_ACCT,EDM_DATASRC,EDM_OBJECT,EDM_PLANT,EDM_REPCYCLE,EDM_RPTCUR,EDM_TARIFF,EDM_TIME,EDM_VIEW,MEASURES
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    [INFO] GET_DIM_LIST(): I_APPL_ID="EDM", #dimensions=10
    EDM_ACCT,EDM_DATASRC,EDM_OBJECT,EDM_PLANT,EDM_REPCYCLE,EDM_RPTCUR,EDM_TARIFF,EDM_TIME,EDM_VIEW,MEASURES
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JAN]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1139.56 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 1053.01 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :53.93 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.FEB]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 815.05 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 845.12 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :36.03 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAR]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1005.28 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 873.63 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :34.03 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.APR]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 784.39 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 942.94 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :35.09 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.MAY]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1017.02 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 814.13 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :35.08 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUN]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 910.04 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 822.47 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :34.22 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.JUL]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 901.21 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 961.12 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :34.90 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.AUG]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 825.28 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 1003.41 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :33.91 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.SEP]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 884.02 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 947.27 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :34.94 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.OCT]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 965.04 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 775.08 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :36.87 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.NOV]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1075.35 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 1013.55 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :34.88 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    #dim_memberset=10
    EDM_ACCT:ACC2210,ACC2230,ACC2240,ACC2250,4 in total.
    EDM_DATASRC:IMPORT,1 in total.
    EDM_OBJECT:P094_T178_010270001,P094_T178_010270002,P094_T178_010270003,P094_T178_010270004,4 in total.
    EDM_PLANT:P001_15,P002_15,P003_15,P004_15,P005_15,...130 in total.
    EDM_REPCYCLE:KJ,1 in total.
    EDM_RPTCUR:EUR,1 in total.
    EDM_TARIFF:TID_NAS,1 in total.
    EDM_TIME:2013.JAN,2013.FEB,2013.MAR,2013.APR,2013.MAY,...12 in total.
    EDM_VIEW:COUNTER,1 in total.
    MEASURES:PERIODIC,1 in total.
    REC :%VALUE%>0?([EDM_VIEW].[BUDGET],[EDM_DATASRC].[COPY],[EDM_TIME].[2014.DEC]):%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 975.14 ms. 4  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 1080.13 ms. 12  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :33.89 ms.
    4  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 48  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    EDM_ACCT    EDM_DATASRC    EDM_OBJECT    EDM_PLANT    EDM_REPCYCLE    EDM_RPTCUR    EDM_TARIFF    EDM_TIME    EDM_VIEW    SIGNEDDATA
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.JAN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.JAN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.JAN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.JAN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.FEB    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.FEB    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.FEB    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.FEB    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.MAR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.MAR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.MAR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.MAR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.APR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.APR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.APR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.APR    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.MAY    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.MAY    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.MAY    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.MAY    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.JUN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.JUN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.JUN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.JUN    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.JUL    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.JUL    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.JUL    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.JUL    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.AUG    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.AUG    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270003    P094_15    KJ    EUR    TID_NAS    2012.AUG    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270004    P094_15    KJ    EUR    TID_NAS    2012.AUG    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270001    P094_15    KJ    EUR    TID_NAS    2012.SEP    COUNTER    10.00
    ACC2240    COPY    P094_T178_010270002    P094_15    KJ    EUR    TID_NAS    2012.SEP    COUNTER    10.00
    ACC2240    COP

Maybe you are looking for

  • How to turn off NVIDIA when on battery?

    Hi Folks, I have the Optimus thing, and the NVIDIA chip is staying active when I'm on battery (as verified by NVGPUStateViewer64). Is there any way to have it automatically turn off when I'm on battery, or are apps that were attached to NVIDIA while

  • Why is there still a notification on my iPhone 5s after I already downloaded the new ios8 software? Can anyone help me to get rid of it?

    Aftee downloading the new ios8 software there is still a "1" notification on my settings. Can anyone tell me how to get rid of it? there is nothing that calls for attention once I get into the settings app. So I'm not sure what to do.

  • OWC Mercury Pro not showing up to choose for applications

    I bought the OWC Mercury Pro Optical Drive for my cd and dvds as recommended in some discussions, but It doesn't show up anywhere. It's not on my desktop or in finder or any of my applications to choose from. I did get to choose it for itunes. I have

  • Forms 4.5 and Oracle 8 on HPUX

    Does anyone have experiences in working with 4.5 Forms on a HPUX 8 oracle rdms? Please tell me about, for one of our customers we might need this combination. Thanx Michael

  • ORA-12154 - error..Help!

    Hi guys, I know this is a re-curring topic but i am not able to solve the problem i have on hand after going thru' the forum. I am able to test my connection via Net Manager & able to do tnsping. But i failed to login using SQLPLUS, with the error: T