CURSOR across multiple Regions

Hello,
I have a page that I need to display around 300 fields with custom html mixed in. Instead of creating all the page items, I want to just creat a CURSOR and use htp.print. My problem is that its a LOT of code. I want to break it apart across multiple regions. Is their a way to OPEN a cursor so that multiple regions can use it?
Or, back to the PHP days, is their an ARRAY that this can be loaded into and printed like a cursor when needed?

Is their a way to OPEN a cursor so that multiple regions can use it?You can have a process run before all regions to insert records into a collection(by a package call or PLSQL region).
Then refer to this collection in your regions(s)
<li>If you want to separte or split the content across, multiple "regions" , you cab generate them in the same PLSQL code that you posted.
For instance, you have a single PLSQL based region without any template which generate the HTML code that renders like multiple region.
In the Source, you can generate the HTML code for the region(s) in addition to printing out the data.
An Apex region normally consists of div or table elements given some styling using builtin classes(and matching the theme). So if you generate the same HTML, it would render the same as a region.You can copy the HTML content of any region template(or from the rendered page) and add that within the "htp.p" codes.
<li> A third option would be to generate the enclose different sections of your data in some identifiable HTML element and use Javascript to move them under the appropriate region.
Having said this, I have to agree with replies above,there could be a better way of displaying your data than generating the entire HTML yourself.Since you say about using a cursor, I guess multiple SQL reports regions would be a good starting point as they are used for displaying lots of records. You could tweak the look'n'feel with some kind of customized template, rather that redo the whole thing yourself.

Similar Messages

  • Same Region across Multiple Pages

    Hi There!
    Working on a requirement where I need same region across multiple pages.
    One way (Hard way) to do it is , repeat the region in all the pages.
    Is there any other way (smart way) so that I can write region once and reference it in other pages ? ? ?
    Thanks
    Krishna

    Yes, you can design this form on Page 0. Then this form will apply to every page.

  • Forecast Roll-Over Script across multiple years

    Hello Experts,
    I currently have the below Script and Prompt but it only works for one Fiscal year and I need help changing it so that it can be used across multiple years, my issue is below:
    If I have project TEST and it started in 2013.011 and ends in 2014.004, I have forecast values for all periods so when I run the script I'm prompted to "select forecast year" and "select forecast version based on previous period"
    So when I run from 2013.11 (forecast version P11) to 2013.12 (forecast version P12) that works fine but it's not working to roll-over from 2013.012 to 2014.001
    Any help is much appreciated.
    Thx,
    Shane
    *****SCRIPT*****
    //%CATEGORY_SET% - contains P9, STARTMNTH = 10, PREVFC=P8
    *SELECT(%SM%,"[STARTMNTH]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //$YY$ - contain planning year selected by user from DM combobox
    *SELECT(%FCSTMNTH%,"[ID]",TIME,"[ID]>'$YY$.%SM%' AND [YEAR]='$YY$' AND [CALC]='N'")
    *SELECT(%ACTMNTH%,"[ID]",TIME,"[ID]<'$YY$.%SM%' AND [YEAR]='$YY$' AND [CALC]='N'")
    *SELECT(%PF%,"[PREVFCST]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //To copy FORECAST XX we use
    *XDIM_MEMBERSET F_CATEGORY=%PF%
    *XDIM_MEMBERSET TIME=$YY$.%SM%,%FCSTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    //To copy ACTUAL we use
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=%ACTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    *****PROMPT*****
    PROMPT(MESSAGE,"Create Forecast Based on Previous")
    PROMPT(COMBOBOX,%YY%,"Select Forecast Year:",0,,{2014,2015,2016,2017,2018})
    PROMPT(SELECTINPUT,%SELECTION%,,"Select the Forecast Version:","F_CATEGORY")
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SUSER,%USER%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPPSET,%APPSET%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPP,%APP%)
    INFO(%EQU%,=)
    INFO(%TAB%,;)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,TAB,%TAB%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,EQU,%EQU%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SELECTION,%SELECTION%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,LOGICFILENAME,FORECAST.LGF)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,REPLACEPARAM,YY%EQU%%YY%)

    OK - I'll try explain this another way, I have 2 records for "ACTUALS" in 2013 (this is DEV system)
    1st record - Project A-000001 / 2013.010 for $2000
    2nd record - Project A-000036 / 2013.012 for $5000
    Prompts
    PARAM - YY=2013
    DATA REGION - F_CATEGORY=P12
    Here's the Script:
    //%CATEGORY_SET% - contains P9, STARTMNTH = 10, PREVFC=P8
    *SELECT(%SM%,"[STARTMNTH]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //$YY$ - contain planning year selected by user from DM combobox
    *SELECT(%FCSTMNTH%,"[ID]",TIME,"[ID]>'$YY$.%SM%' AND [CALC]='N'")
    *SELECT(%ACTMNTH%,"[ID]",TIME,"[ID]<'$YY$.%SM%' AND [YEAR]='$YY$' AND [CALC]='N'")
    *SELECT(%PF%,"[PREVFCST]",F_CATEGORY,"[ID]='%F_CATEGORY_SET%')
    //To copy FORECAST XX we use
    *XDIM_MEMBERSET F_CATEGORY=%PF%
    *XDIM_MEMBERSET TIME=$YY$.%SM%,%FCSTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    //To copy ACTUAL we use
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=%ACTMNTH%
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=%F_CATEGORY_SET%)
    *ENDWHEN
    RESULT
    PLS note that there is only 1 record for "ACTUAL" and that's the 1st record - Project A-000001 / 2013.010 for $2000
    2nd record - Project A-000036 / 2013.012 for $5000 is MISSING
    LGX:
    *XDIM_MEMBERSET F_CATEGORY=P11
    *XDIM_MEMBERSET TIME=2013.012,2014.001,2014.002,2014.003,2014.004,2014.005,2014.006,2014.007,2014.008,2014.009,2014.010,2014.011,2014.012,2015.001,2015.002,2015.003,2015.004,2015.005,2015.006,2015.007,2015.008,2015.009,2015.010,2015.011,2015.012,2016.001,2016.002,2016.003,2016.004,2016.005,2016.006,2016.007,2016.008,2016.009,2016.010,2016.011,2016.012,2017.001,2017.002,2017.003,2017.004,2017.005,2017.006,2017.007,2017.008,2017.009,2017.010,2017.011,2017.012,2018.001,2018.002,2018.003,2018.004,2018.005,2018.006,2018.007,2018.008,2018.009,2018.010,2018.011,2018.012,2019.001,2019.002,2019.003,2019.004,2019.005,2019.006,2019.007,2019.008,2019.009,2019.010,2019.011,2019.012,2020.001,2020.002,2020.003,2020.004,2020.005,2020.006,2020.007,2020.008,2020.009,2020.010,2020.011,2020.012
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P12)
    *ENDWHEN
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=2013.001,2013.002,2013.003,2013.004,2013.005,2013.006,2013.007,2013.008,2013.009,2013.010,2013.011
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P12)
    *ENDWHEN
    LOG:
    LOG BEGIN TIME:2014-03-14 09:36:23
    FILE:\ROOT\WEBFOLDERS\F_COUNCIL \ADMINAPP\Forecasting\TEST.LGF
    USER:096655
    APPSET:F_COUNCIL
    APPLICATION:Forecasting
    [INFO] GET_DIM_LIST(): I_APPL_ID="Forecasting", #dimensions=8
    F_CATEGORY,F_ENTITY,F_PERSON,F_PROJECT,F_SECTION,F_WBSE,MEASURES,TIME
    #dim_memberset=2
    F_CATEGORY:P11,1 in total.
    TIME:2013.012,2014.001,2014.002,2014.003,2014.004,...85 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1235.46 ms. 285  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :672.78 ms.
    285  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 285  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    F_CATEGORY    F_ENTITY    F_PERSON    F_PROJECT    F_SECTION    F_WBSE    TIME    SIGNEDDATA
    P12    4000    000000    A-000036    000    A-000036.1.01    2013.012    103.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.001    104.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.002    105.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.003    106.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.004    107.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.005    108.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.006    109.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.007    110.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.008    111.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.009    112.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.010    113.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.011    114.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2014.012    115.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.001    116.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.002    117.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.003    118.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.004    119.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.005    120.00
    P12    4000    000000    A-000036    000    A-000036.1.01    2015.006    121.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2013.012    235.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.001    236.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.002    237.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.003    238.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.004    239.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.005    240.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.006    241.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.007    242.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.008    243.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.009    244.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.010    245.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.011    246.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2014.012    247.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.001    248.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.002    249.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.003    250.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.004    251.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.005    252.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01    2015.006    253.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2013.012    344.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.001    345.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.002    346.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.003    347.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.004    348.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.005    349.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.006    350.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.007    351.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.008    352.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.009    353.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.010    354.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.011    355.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.012    356.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.001    357.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.002    358.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.003    359.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.004    360.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.005    361.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.006    362.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2013.012    494.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.001    495.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.002    496.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.003    497.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.004    498.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.005    499.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.006    500.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.007    501.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.008    502.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.009    503.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.010    504.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.011    505.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.012    506.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.001    507.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.002    508.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.003    509.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.004    510.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.005    511.00
    P12    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.006    512.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2013.012    573.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.001    574.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.002    575.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.003    576.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.004    577.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.005    578.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.006    579.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.007    580.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.008    581.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.009    582.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.010    583.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.011    584.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2014.012    585.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.001    586.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.002    587.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.003    588.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.004    589.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.005    590.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02    2015.006    591.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2013.012    663.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.001    664.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.002    665.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.003    666.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.004    667.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.005    668.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.006    669.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.007    670.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.008    671.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.009    672.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.010    673.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.011    674.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.012    675.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.001    676.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.002    677.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.003    678.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.004    679.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.005    680.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.006    404.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2013.012    765.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.001    766.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.002    767.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.003    768.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.004    769.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.005    770.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.006    771.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.007    772.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.008    773.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.009    774.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.010    775.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.011    776.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.012    777.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.001    778.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.002    779.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.003    780.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.004    781.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.005    782.00
    P12    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.006    493.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2013.012    430.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.001    431.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.002    432.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.003    433.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.004    434.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.005    435.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.006    436.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.007    437.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.008    438.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.009    439.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.010    440.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.011    441.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2014.012    442.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.001    443.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.002    444.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.003    445.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.004    446.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.005    447.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03    2015.006    448.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2013.012    584.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.001    585.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.002    586.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.003    587.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.004    588.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.005    589.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.006    590.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.007    591.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.008    592.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.009    593.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.010    594.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.011    595.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.012    596.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.001    597.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.002    598.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.003    599.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.004    600.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.005    601.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.006    602.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2013.012    606.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.001    607.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.002    608.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.003    609.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.004    610.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.005    611.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.006    612.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.007    613.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.008    614.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.009    615.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.010    616.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.011    617.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.012    618.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.001    619.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.002    620.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.003    621.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.004    622.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.005    623.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.006    624.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2013.012    824.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.001    825.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.002    826.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.003    827.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.004    828.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.005    829.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.006    830.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.007    831.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.008    832.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.009    833.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.010    834.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.011    835.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.012    836.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.001    837.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.002    838.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.003    839.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.004    840.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.005    841.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.006    842.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2013.012    125.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.001    126.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.002    127.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.003    128.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.004    129.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.005    130.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.006    131.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.007    132.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.008    133.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.009    134.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.010    135.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.011    136.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.012    137.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.001    138.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.002    139.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.003    140.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.004    141.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.005    142.00
    P12    4000    000000    A-000036    000    A-000036.1.01.03.04    2015.006    143.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2013.012    407.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.001    408.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.002    409.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.003    410.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.004    411.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.005    412.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.006    413.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.007    414.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.008    415.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.009    416.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.010    417.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.011    418.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2014.012    419.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.001    420.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.002    421.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.003    422.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.004    423.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.005    424.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.01    2015.006    425.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2013.012    606.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.001    607.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.002    608.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.003    609.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.004    610.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.005    611.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.006    612.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.007    613.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.008    614.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.009    615.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.010    616.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.011    617.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2014.012    618.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.001    619.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.002    620.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.003    621.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.004    622.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.005    623.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.02    2015.006    624.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2013.012    726.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.001    727.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.002    728.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.003    729.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.004    730.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.005    731.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.006    732.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.007    733.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.008    734.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.009    735.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.010    736.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.011    737.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2014.012    738.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.001    739.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.002    740.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.003    741.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.004    742.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.005    743.00
    P12    4000    000000    A-000036    000    A-000036.1.01.05.03    2015.006    744.00
    285  RECORDS HAVE BEEN WRITTEN BACK.
    WRITING TIME :543.97  ms.
    [INFO] GET_DIM_LIST(): I_APPL_ID="Forecasting", #dimensions=8
    F_CATEGORY,F_ENTITY,F_PERSON,F_PROJECT,F_SECTION,F_WBSE,MEASURES,TIME
    #dim_memberset=2
    F_CATEGORY:ACTUAL,1 in total.
    TIME:2013.001,2013.002,2013.003,2013.004,2013.005,...11 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1019.73 ms. 1  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :140.35 ms.
    1  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 1  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    F_CATEGORY    F_ENTITY    F_PERSON    F_PROJECT    F_SECTION    F_WBSE    TIME    SIGNEDDATA
    P12    4000    000000    A-000001    000    A-000001.1.01    2013.010    2000.00
    1  RECORDS HAVE BEEN WRITTEN BACK.
    WRITING TIME :480.96  ms.
    SCRIPT RUNNING TIME IN TOTAL:5.07 s.
    LOG END TIME:2014-03-14 09:36:28
    Prompts
    PARAM - YY=2014
    DATA REGION - F_CATEGORY=P1
    RESULT
    PLS NOTE - The 2nd record "ACTUAL" - Project A-000036 / 2013.012 for $5000 is MISSING
    LGX:
    *XDIM_MEMBERSET F_CATEGORY=P12
    *XDIM_MEMBERSET TIME=2014.001,2014.002,2014.003,2014.004,2014.005,2014.006,2014.007,2014.008,2014.009,2014.010,2014.011,2014.012,2015.001,2015.002,2015.003,2015.004,2015.005,2015.006,2015.007,2015.008,2015.009,2015.010,2015.011,2015.012,2016.001,2016.002,2016.003,2016.004,2016.005,2016.006,2016.007,2016.008,2016.009,2016.010,2016.011,2016.012,2017.001,2017.002,2017.003,2017.004,2017.005,2017.006,2017.007,2017.008,2017.009,2017.010,2017.011,2017.012,2018.001,2018.002,2018.003,2018.004,2018.005,2018.006,2018.007,2018.008,2018.009,2018.010,2018.011,2018.012,2019.001,2019.002,2019.003,2019.004,2019.005,2019.006,2019.007,2019.008,2019.009,2019.010,2019.011,2019.012,2020.001,2020.002,2020.003,2020.004,2020.005,2020.006,2020.007,2020.008,2020.009,2020.010,2020.011,2020.012
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P1)
    *ENDWHEN
    *XDIM_MEMBERSET F_CATEGORY=ACTUAL
    *XDIM_MEMBERSET TIME=
    *WHEN F_CATEGORY
    *IS *
    *REC(EXPRESSION=%VALUE%,F_CATEGORY=P1)
    *ENDWHEN
    LOG:
    LOG BEGIN TIME:2014-03-14 09:40:55
    FILE:\ROOT\WEBFOLDERS\F_COUNCIL \ADMINAPP\Forecasting\TEST.LGF
    USER:096655
    APPSET:F_COUNCIL
    APPLICATION:Forecasting
    [INFO] GET_DIM_LIST(): I_APPL_ID="Forecasting", #dimensions=8
    F_CATEGORY,F_ENTITY,F_PERSON,F_PROJECT,F_SECTION,F_WBSE,MEASURES,TIME
    #dim_memberset=2
    F_CATEGORY:P12,1 in total.
    TIME:2014.001,2014.002,2014.003,2014.004,2014.005,...84 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 1342.07 ms. 270  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :716.94 ms.
    270  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 270  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    F_CATEGORY    F_ENTITY    F_PERSON    F_PROJECT    F_SECTION    F_WBSE    TIME    SIGNEDDATA
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.001    104.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.002    105.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.003    106.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.004    107.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.005    108.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.006    109.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.007    110.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.008    111.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.009    112.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.010    113.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.011    114.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2014.012    115.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.001    116.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.002    117.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.003    118.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.004    119.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.005    120.00
    P1    4000    000000    A-000036    000    A-000036.1.01    2015.006    121.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.001    236.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.002    237.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.003    238.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.004    239.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.005    240.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.006    241.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.007    242.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.008    243.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.009    244.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.010    245.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.011    246.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2014.012    247.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.001    248.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.002    249.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.003    250.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.004    251.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.005    252.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01    2015.006    253.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.001    345.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.002    346.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.003    347.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.004    348.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.005    349.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.006    350.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.007    351.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.008    352.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.009    353.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.010    354.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.011    355.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2014.012    356.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.001    357.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.002    358.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.003    359.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.004    360.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.005    361.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.01    2015.006    362.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.001    495.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.002    496.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.003    497.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.004    498.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.005    499.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.006    500.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.007    501.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.008    502.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.009    503.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.010    504.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.011    505.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2014.012    506.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.001    507.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.002    508.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.003    509.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.004    510.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.005    511.00
    P1    4000    000000    A-000036    000    A-000036.1.01.01.02    2015.006    512.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.001    574.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.002    575.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.003    576.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.004    577.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.005    578.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.006    579.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.007    580.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.008    581.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.009    582.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.010    583.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.011    584.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2014.012    585.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.001    586.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.002    587.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.003    588.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.004    589.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.005    590.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02    2015.006    591.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.001    664.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.002    665.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.003    666.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.004    667.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.005    668.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.006    669.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.007    670.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.008    671.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.009    672.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.010    673.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.011    674.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2014.012    675.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.001    676.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.002    677.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.003    678.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.004    679.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.005    680.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.01    2015.006    404.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.001    766.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.002    767.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.003    768.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.004    769.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.005    770.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.006    771.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.007    772.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.008    773.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.009    774.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.010    775.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.011    776.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2014.012    777.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.001    778.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.002    779.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.003    780.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.004    781.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.005    782.00
    P1    4000    000000    A-000036    000    A-000036.1.01.02.02    2015.006    493.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.001    431.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.002    432.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.003    433.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.004    434.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.005    435.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.006    436.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.007    437.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.008    438.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.009    439.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.010    440.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.011    441.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2014.012    442.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.001    443.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.002    444.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.003    445.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.004    446.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.005    447.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03    2015.006    448.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.001    585.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.002    586.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.003    587.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.004    588.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.005    589.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.006    590.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.007    591.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.008    592.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.009    593.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.010    594.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.011    595.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2014.012    596.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.001    597.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.002    598.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.003    599.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.004    600.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.005    601.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.01    2015.006    602.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.001    607.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.002    608.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.003    609.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.004    610.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.005    611.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.006    612.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.007    613.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.008    614.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.009    615.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.010    616.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.011    617.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2014.012    618.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.001    619.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.002    620.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.003    621.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.004    622.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.005    623.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.02    2015.006    624.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.001    825.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.002    826.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.003    827.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.004    828.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.005    829.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.006    830.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.007    831.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.008    832.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.009    833.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.010    834.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.011    835.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2014.012    836.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.001    837.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.002    838.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.003    839.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.004    840.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.005    841.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.03    2015.006    842.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.001    126.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.002    127.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.003    128.00
    P1    4000    000000    A-000036    000    A-000036.1.01.03.04    2014.004 

  • Process Chains across multiple BW instances?

    We're considering to implement a "CIF" (corporate information factory) approach for BW, using mutiple BW layers (staging, storage, analysis, across regions).  It seems to make sense from a performance management perspective.
    However one concern is the administration / monitoring.  
    Can standard BW tools (e.g. process chains, admin cockpit) customized to be used across multiple BW instances (plus ideally OLTP reporting, which we also have)? Or would we end up having to log in to each system individually?  My gut / understanding tells me it is the latter one, but would appreciate any thoughts.
    Thanks!

    Hi Ingo,
    Thanks for the information. I too have same scenario to work out.
    Is there any possibility of automatic Source/server name conversion from system A to System B while copying all the Universes and Queries.
    For Example: In BI we have an option to datasource server name change convention while transporting from one system to another system through out the landscape.
    As you said in your reply, in life cycle manager, do we need to edit connection for each & every universe or any option for one and all universes.
    Any documentation on this is appreciable...
    Please provide me information.
    Thanks in Advance.
    Regards,
    Ravi Kanth

  • Spreading a single form across multiple pages

    I'd like to implement a single record form that spreads it's items across multiple pages for the purpose of grouping related information on each page such as "Contact Details"," Education Profile" etc. There are way too many columns for a single page.
    In Oracle forms you can create a form across multiple canvases or on different tabs of a tabbed canvas. Each item has a property to position it on which canvas.
    Is this possible in ApEx? I can see that transaction processing could be complex.
    How do I avoid, for example, inserting the record a second time if I commit from a different page?
    Any comments appreciated.
    Paul P

    Another way to do this without javascript and ajax that works pretty well is to setup a list that represents the logical "sections" and display it as a sidebar list.
    Create a hidden item on the page called PX_ACTIVE_SECTION and set the visibility of each region on the page based on the value of this item. For example: :PX_ACTIVE_SECTION = 'Contact Details'. You can also have multiple regions associated with a single tab. Set the default value to whatever section you wish to display first.
    Next, set each list item to be "current" when :PX_ACTIVE_SECTION is equal to that item ('Contact Details', 'Education Profile', etc.). Also set the URL destination of each item to: javascript:doSubmit('section name');
    Finally, add a branch back to the current page that sets PX_ACTIVE_SECTION to &REQUEST.. This traps the doSubmit call so you can set the hidden item. (Add a condition, if needed, to prevent this branch from executing due to other buttons and requests).
    The result is that the user can switch freely between sections and save after all data is entered. The page does refresh (since it doesn't use AJAX), but if your regions aren't too big, it should be reasonable.

  • Transactions across cache regions

    Hello,
    Can a single unit of work (/transaction) be guaranteed to co-ordinate across multiple cache regions (both with and without a CacheStore plugged into the nodes)?

    Hi good stuff,
    it depends on what you mean transactions.
    Coherence transactions (both via the local transaction API and the Cache Adapters) are available to gather operations on one more caches together, to provide isolation of such transactions from one another with locking and version checking and commit changes to the cache conditionally, subject to version checking).
    However, such operations are NOT atomically rolled back in case an exception was thrown during serialization or from a cache store.
    So provided that your serialization/deserialization code is error-free, and you don't use synchronous writes or removes on cache-stores (write-through operations), then yes, such transactions would succeed or would fail atomically in the prepare phase (due to version checking detecting version mismatch).
    However, in case write-through cache stores are used, it is not guaranteed that the outcome would be an atomic success or atomic rollback, as each cache-store operation is a separate backend transaction on its own, and failure in the writing of a later entry cannot rollback an already committed write from an earlier processed entry, or an entry successfully written on another cache node.
    In case write-behind, the resulting writes due to the put operations are delayed, so failure in those are not thrown back to the client (the transaction). The remove operations are handled synchronously, but I am not sure if failure in those are thrown back to the client. My guess would be that they are not, considering that failures in other operations in write-behind are NOT thrown back to the client. In case of failures of operations not thrown back to the client, from the point of the client transaction Coherence behaves as if no cache stores were used at all.
    Best regards,
    Robert

  • Gradient Annotator across multiple objects - weirdness

    I have six rectangles in a row. I apply a radial gradient to them as a whole, by dragging the Gradient Tool. According to the documentation for CS4, that's what you do if you want only one Gradient Annotator across multiple objects. Problem is, I can see the Annotator, but not the color stops. If I deselect all, and select only one rectangle, I can see and move the stops, but it only effects the selected shape. Further, if I group the objects, the Annotator doesn't appear at all, and when I UNgroup, I get six Annotators.
    None of these examples behave as I think they should. Yes, I have "Show Gradient Annotator" on in the View menu. I've worked with the Annotator a fair amount, but it's always seemed buggy.
    What I want to do is apply the gradient across multiple objects, as in example 1, then edit it across multiple objects. Is that so hard?

    It is still not actually one gradient and you do see actually the 
    annotator with four elements one for each object but if you change the 
    fills you can see them with the annotator which the originally says 
    they cannot see, which is true unless you hover the cursor or one of 
    the annotator you only have to change the fill in one o change them all
    in a relative manner.
    The compound path method will adjust the gradient by stretching the 
    annotator or actually the gradient and that might be desired on many 
    occasions.
    the only difference between prior versions is that you can adjust the 
    markers at the target object or group and you have more directional 
    control as well even if the annotator is a bit ugly and unwieldy.
    In order to see four annotators one seems to have either unselect the 
    object then select them again and the gradient tool or find some kind 
    of sweet spot to make them show up with the markers as you hover.
    Still no gradient that follows the path and no radar gradient.

  • Sharing an iTunes Library across multiple user account and a network.

    Sharing an iTunes Music Library across multiple user accounts.
    Hello Everybody!
    Firstly, this was designed to be run in Mac OS X 10.4 Tiger. It will not work with earlier versions of Mac OS X! Sorry.
    Here's a handy tip for keeping your hard drive neat and tidy, it also saves space, what in effect will be done is an iTunes music library will be shared amongst multiple users on the same machine. There are advantages and disadvantages to using this method.
    • Firstly I think it might be worthwhile to state the advantages and disadvantages to using this approach.
    The advantages include:
    - Space will be saved, as no duplicate files will occur.
    - The administrator will be able to have complete control over the content of the iTunes library, this may be useful for restricting the content of the Library; particularly for example if computer is being used at and education institution, business or any other sort of institution where things such as explicit content would be less favorable.
    - The machine will not be slowed by the fact that every user has lots of files.
    The disadvantages to this system include.
    - The fact that the account storing the music will have to be logged in, and iTunes will have to be active in that account.
    - If the account housing the music is not active then nobody can use the iTunes library.
    - There is a certain degree of risk present when an administrator account must be continually active.
    - Fast User Switching must be enabled.
    Overview:
    A central account controls all music on the machine/network, this is achieved by storing iTunes files in a public location as opposed to in the user's directory. In effect the system will give all users across the machine/network access to the same music/files without the possibility of files 'doubling up' because two different users like the same types of music. This approach saves valuable disk space in this regard and may therefore prove to be useful in some situations.
    This is a hearty process to undertake, so only follow this tutorial if you're willing to go all the way to the end of it.
    Process:
    Step 1:
    Firstly, we need to organize the host library, I tidied mine up, removing excess playlists, random files, things like that. this will make thing a bit easier in the later stages of this process.
    Once the library is tidied up, move the entire "iTunes" folder from your Home directory to the "//localhost" directory (The Macintosh HD) and ensure that files are on the same level as the "Applications", "Users", "Library" and "System" directories; this will ensure that the files in the library are available to all users on the machine (this also works for networks)
    Optionally you can set the ownership of the folder to the 'administrator' account (the user who will be hosting the library.), you may also like to set the permissions of 'you can' to "Read & Write" (assuming that you are doing this through the user who will host the library); secondly you should set the "Owner" to the administrator who will be hosting the library and set their "access" to "Read & Write" (this will ensure that the administrator has full access to the folder). The final part of this step involves setting access for the "Others" tab to "Read Only" this will ensure that the other users can view but not modify the contents on the folder.
    Overview:
    So far we have done the following steps:
    1. Organized the host library.
    2. Placed the iTunes directory into a 'public' directory so that other users may use it. (this step is essential if you plan on sharing the library across multiple accounts on the same machine. NOTE: this step is only necessary if you are wanting to share you library across multiple accounts on the same machine, if you simply want to share the music across a network, use the iTunes sharing facility.
    3. set ownership and permissions for the iTunes music folder.
    Step 2:
    Currently the administrator is the only user who can use this library, however we will address this soon. In this step we will enable iTunes music sharing in the administrator's account, this will enable other users to access the files in the library.
    If you are not logged in as the administrator, do so; secondly, open iTunes and select "Preferences" from the "iTunes" menu, now click the "Sharing" tab, if "share my library on my local network" is not checked, the radio buttons below this will now become active, you may choose to share the entire libraries contents, or share only selected content.
    Sharing only selected content may be useful if their is explicit content in the library and minors use the network or machine that the library is connected to.
    If you have selected "share entire library" go to Step 3, if you have selected share "share selected playlists" read on.
    After clicking "share selected playlists" you must then select the playlists that you intend to share across your accounts and network. Once you have finished selecting the playlists, click "OK" to save the settings.
    Overview:
    In this step we:
    1. Enabled iTunes sharing in the administrator's account, now, users on the local network may access the iTunes library, however, users on the same machine may not.
    Step 3:
    Now we will enable users on the same machine to access the library on the machine. This is achieved by logging in as each user, opening iTunes, opening iTunes preferences, and clicking "look for shared music". now all users on the machine may also access the library that the administrator controls.
    This in effect will mean that the user will not need to use their user library, it will be provided to them via a pseudo network connection.
    As a secondary measure, I have chosen to write a generic login script that will move any content from the user's "Music/iTunes/iTunes Music" directory to the trash and then empties the user's trash.
    This is done through the use of an Automator Application: this application does the following actions.
    1. Uses the "Finder" action "Get Specified Finder Items"
    1a. The user's "~/Music/iTunes/iTunes Music" folder
    2. Uses the "Finder" action "Get Folder Contents"
    3. Uses the "Finder" action "Move to Trash"
    4. Uses the "Automator" action "Run AppleScript"
    4a. with the following:
    on run {input, parameters}
    tell application "Finder"
    empty trash
    end tell
    return input
    end run
    IMPORTANT: Once the script is adapted to the user account it must be set as a login item. in order to keep the script out of the way i have placed it in the user's "Library" directory, in "Application Support" under "iTunes".
    Overview:
    Here we:
    1. Enabled iTunes sharing in the user accounts on the host machine, in effect allowing all users of the machine to view a single iTunes library.
    2. (Optional) I have created a login application that will remove any content that has been added to user iTunes libraries, this in effect stops other users of the machine from adding music and files to iTunes.
    Step 4:
    If it is not already enabled, open system preferences and enable Fast User Switching in Accounts Options.
    Summary:
    We have shared a single iTunes library across multiple user account, while still allowing for network sharing. This method is designed to save space on machines, particularly those with smaller hard drives.
    I hope that this hint proves to be helpful and I hope everybody will give me feedback on my process.
    regards,
    Pete.
    iBook G4; 60GB Hard Drive, 512MB RAM, Airport Extreme   Mac OS X (10.4.6)   iWork & iLife '06, Adobe CS2, Final Cut Pro. Anything and Everything!!!

    how to share music between different accounts on a single computer

  • How can I display selected tags across multiple e-mail addresses?

    I receive email on a specific topic but via several e-mail addresses. How can I view selected tags where the resulting e-mails span several (7) email addresses. They are all active on my Thunderbird, but as far as I know, I can only display the selected tag on one of them at a time.
    Any assistance greatly appreciated as this is a very big problem for me.
    thanks, Ron75

    This solution does not appear to work across multiple e-mail addresses.
    Perhaps I should have said "work across multiple e-mail address at the same time. I get e-mail on specific topics via several email addresses and wish to view all the tagged emails regardless of which email account in which they reside.
    I could not get this solution to select more than one email account at a time.

  • Sharing one iTunes library across multiple accounts on the same Mac

    Hello, I've poked around at some of the posts dealing with sharing one iTunes music library across multiple accounts on the same Mac but it seems like this can only be done if the libary is moved to a shared folder. I realize this can be done but I was trying to share it the way it is described in a post on Apple support (See link below.). That post seemed to imply that you don't have to move the library from its original location (owned by account A, e.g.), rather just make a couple preference changes in the accounts, use fast user switching and voila. That doesn't seem to work. So my question is this: Is the only way to share one iTunes music library across multiple accounts on the same Mac to move it to a shared folder? I'm running 10.4.8 on an Intel iMac. Thanks in advance!
    http://docs.info.apple.com/article.html?artnum=93195

    After reading this and several other related threads, I am becoming thoroughly confused about all of this. I have a situation similar to the one that pokerpal described in the post dated January 7 at 8:06 pm, except that the music files on my system are located on an external hard drive. Everything else is pretty much the same though - I am the admin user (and the main iTunes user and maintainer) and my girlfriend is a standard user who has no music in her own iTunes library. She can see and listen to and make playlists from and sync her iPod with the music in this library from her account, and I can do the same thing, independent of her, from my account. And if I make a change to information within a song, she doesn't see it, and vice versa, and I understand that. What I don't understand is why when I add a song or an album to the music files by importing a CD or downloading something from the iTunes Music Store, she has no way of knowing that unless I tell her, and then she can add it to her library by using the "Add to Library" function. Is there no way of automatically updating her library files to add the new song(s)? We have almost 15,000 songs and videos in that library, and I don't even want to think about what might have to happen if the answer to my question is "no." Interestingly enough, if I put an update to a Word document in the same exact location (on the hard drive), we can update that and pass it back and forth all day - why is that such a difficult task for iTunes to accomplish?
    Sorry I went on so long, but this has been building up for some time, and none of the solutions I've read about here have really been of any help, so I'm a bit frustrated and, as I said at the beginning, confused.
    iMac G5, MacBook   Mac OS X (10.4.8)  

  • Query Scenario Help - Average of Multiple Regions

    Hi, I have a query scenario I can't create and I hope someone can help with.
    The user inputs a sales Area and the report is to output the regions in that area and provide the Volume (easy) and the Average of all the presented regions.  The problem is that the number of regions is dynamic so I don't know how to go about determining the average and making it constant across the regions.  The user can also drill down on a region to present divisions and I would then need the average for the divisions this time instead of regions.  Can you help?
    Example 1
    Input Sales Area 1000000
    Region               1000001  1000002  1000003
    Product1  Volume       100      120      105
    Product1  Average      108      108      108
    Product2  Volume       200      400      325
    Product2  Average      308      308      308
    Example 2
    Input Sales Area 2000000
    Region               2000001  2000002  2000003  2000004
    Product1  Volume       100      120      105      180
    Product1  Average      126      126      126      126     
    Product2  Volume       200      400      325      600
    Product2  Average      381      381      381      381
    To get this layout I have the following in the query builder:
    The 2 Products are in a structue under Rows
    The Key figures structure is also under Rows
    The Region is under the columns

    If you redesign the report slightly to move the "Average" to a column at the end of each row (which really makes more sense, IMHO), then the answer is easy. Just change the Suppress Results Row property to "Never" for Region, and change the Display Results As property to "Average" for Volume.
    You could also make this same change to Division and/or any other free characteristic they might use as a drill-across in the report.
    Hope this helps...
    Bob

  • How do you split the print job across multiple printers to shorten the prin

    i
    Can any one you provide some information on below questions.
    Check printing by XML template (XML Publisher).
    1. When printing checks, how do you print the checks from one printer tray and the overflow remittance pages from another printer tray?
    2. When printing a large batch of checks using XML and PDF output, how do you split the print job across multiple printers to shorten the print time?
    I appreciate if you could give some information on above 2 questions.
    Regards,
    Ramarao.

    Probably sould just do them individually.
    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • APO gATP vs R/3 ATP - To check sales order ATP across multiple plants

    Hi There,
    I am trying to evaluate gATP functionality for SD sales orders.
    The primary requirement is to have sales order ATP checking take place across multiple plants.
    E.G.
    Sales order line is entered for qty 100
    60 is available in plant A, 40 is available in plant B
    System checks both plants and creates 2 lines - one for delivery from plant A and one for delivery from plant B
    (we are currently heading down the road of writing ABAP to do this 'multi-plant' check in R/3 but the more complex the requirements get the more interested I am in understanding more about APO/gATP)
    I would like to understand the benefit of implementing APO / gATP as opposed to using standard R/3 ATP and perhaps writing custom ABAP code to search for inventory across multiple plants.
    I would appreciate any insight regarding what is required to setp gATP to perform such checking and any other feedback regarding this issue - especially if you have had to implement something similar at your company.
    I have looked here but not much clear help:
    http://help.sap.com/saphelp_scm50/helpdata/en/26/c2d63b18bc7e7fe10000000a114084/frameset.htm
    Thanks,
    Niall

    Hi Niall
    you are probably looking at RBATP (Rule based ATP). Look at transaction /sapapo/rba04 in APO where you develop your own location and product substitution rules. Going down an ABAP road in R/3 may work short-term but not long-term as the requirements may get more complex.
    Regards
    Srinivas

  • How do I stop games from syncing across multiple devices?

    Hi there,
    My kids all have their own ipads (super big blessing from a grandparent).  My husband and I each have one as well.  We like to play some of the same games, and sometimes the game progress syncs between our devices.  Eg. We like to play Disney's Frozen Free Fall game, and for some reason, my ipad doesn't sync to my husband's.  When my kids asked for the game on their ipads, however, the games automatically synced to my husband's, so I didn't let them keep it (I didn't want them using all his items/lives).
    My kids all like to play Angry Birds Transformers, and with the latest update to that game, their games are all suddenly connected to each other (they all have the same characters, number of gems, etc.).
    How do these games sync (game center, icloud, etc.)?  Does anyone know how to disable the feature so that our games do not sync across multiple devices?  I would like us to not be sharing the same game progress.  We all share one itunes account.
    Thanks so much!
    (If it helps, I have the ipad2, my kids have ipad mini 2's, and my husband has the ipad air.)

    We all share one itunes account.
    This would  be why the syncing occurs. Until a more knowledgeable person comes   by ...
    You can have one, two or three apple id accounts per idevice. Assign a second apple id to all the kids machines. Same or multiple apple ids. depending on how you want the game to act. Does a family account differ?  delete the game from the current apple id.  Install the game on the new apple id ( or apple ids ).
    Look into family sharing:
    https://www.apple.com/icloud/family-sharing/
    Robert

  • Newbie question about setting up iTunes to sync across multiple computers

    Hi,
    Right now I am using iTunes primarily for listening to streaming radio. However in about 2-3 weeks after I move, I am considering importing all my CDs into iTunes.
    So my question is this. What can I do before I start that will make my life easier for syncing my iTunes across multiple computers.
    I don't expect the computers to connect to each via internet but I do have a 4 GB flash disk and 230 GB firewire drive that could be used. And since one of the computers is MacBook Pro, I could use it in target mode I think.
    Thanks.

    Authorization only applies to computers. When you update a device any protected content on the device for which the library is not authorised will be removed. Otherwise no attempt is made to remove content that was added by a now deauthorised library.
    There is a separate scheme permitting up to 10 devices (computers, iPhones, iPad or iPod touches) to be registered for automatic downloads of your purchases with a different mechanism for deregistering devices.
    Once you have a file on your computer you can physically copy it to any other computer in the same way that you would copy any other file like a Word document, put it on a disk, email it if not too large, burn it to DVD, stick it on an external hard drive or move it over a network. You can use Get Info. To tell you where it is now and you can drop it into the library at the other end.
    The user tip shows how to backup the whole library and then update that backup efficiently. Such a backup to a portable drive also provides a possible tool for transporting any content to another computer.
    tt2

Maybe you are looking for

  • How can we remove credit card from account

    im in malaysia i tried to use an canadian credit card at first it was workin but whenever i tried on pc to see if i can change it wont accept my other credit card, then i left it like this after that its been almost 8 months now it says its been decl

  • How to change icon size in iWorks media viewer

    Hi I have just upgraded my wife's macbook from 10.6.8 to 10.8.2 and she uses pages a lot The media viewer in pages seems to have just one size for the icons of the photos. You used to be able to drage a slider to increase the size I have tried all th

  • Loading a cd to i-tunes

    Hello,this is a simple process except that i-tunes seems to put the songs i load from a cd all over the place.all i want to do is put cds into their own file or page so i can easily access these cds when i need to.all i need is for the program to loa

  • What does message, "Apple Mobile Device Service is Not Started" mean?

    Seemingly randomly, my I phone is no longer recognized by iTunes, and I get the above message every time I connect my phone to my computer.

  • Regarding Access Manager Console Not Coming

    Hi I had installed glass fish application server on one zone.....its working fine.....then i try to install access manager 7.1 on same zone it shows successfully installed in the logs....then i try to open access console through firefox....*it showin