Month vs PY year measure in custom calendar

Dear All
I have go two RELATED tables in my Powerpivot data model:
Table: PTV FLAT HITLIST      
COUNTRY
BRAND
TV MODEL
INCH SIZE
SALES THS#EUR
PERIOD
HUNGARY
PANASONIC
TX-L32C20
32
100
2012 JUN
HUNGARY
SHARP
LC-32SH7EBK
32
101
2012 JUN
HUNGARY
TRADEBRAND
TRADE MODEL
32
102
2012 JUN
POLAND
FUNAI
LH840-M32
32
103
2012 JUN
POLAND
FUNAI
LT6-M32
32
104
2012 JUN
Table: PERIOD
PERIOD
PERIOD NUMBER
MONTH NUMBER
DATE
FISCAL QUATER
FIRST PERIOD IN YEAR
FISCAL YEAR
2012 JAN
01
1
2012-01
Q4
1
2011
2012 FEB
02
2
2012-02
Q4
1
2011
2012 MAR
03
3
2012-03
Q4
1
2011
2012 APR
04
4
2012-04
Q1
4
2012
2012 MAY
05
5
2012-05
Q1
4
2012
2012 JUN
06
6
2012-06
Q1
4
2012
2012 JUL
07
7
2012-07
Q2
4
2012
2012 AUG
08
8
2012-08
Q2
4
2012
2012 SEP
09
9
2012-09
Q2
4
2012
2012 OCT
10
10
2012-10
Q3
4
2012
2012 NOV
11
11
2012-11
Q3
4
2012
2012 DEC
12
12
2012-12
Q3
4
2012
2013 JAN
13
1
2013-01
Q4
4
2012
2013 FEB
14
2
2013-02
Q4
4
2012
2013 MAR
15
3
2013-03
Q4
4
2012
2013 APR
16
4
2013-04
Q1
16
2013
2013 MAY
17
5
2013-05
Q1
16
2013
2013 JUN
18
6
2013-06
Q1
16
2013
First one is quite big so I present only part. There are more columns with sales facts and product's features which was hidden to keep it more clear.
What I need is to have a measure which describes a month other month sales. So for example:
JAN 2014        JAN 2013    DIFF VS PY
200 eur           150 EUR      1,333
So the expected result is 1,33
I wrote a measure:
DIFF VS PY:=CALCULATE(SUM([SALES THS#EUR]),FILTER(PERIOD,MAX(PERIOD[FISCAL YEAR])))/CALCULATE(SUM([SALES THS#EUR]),ALL(PERIOD[FISCAL YEAR]),FILTER(ALL(PERIOD[FISCAL YEAR]),PERIOD[FISCAL YEAR]=MAX(PERIOD[FISCAL YEAR])-1))-1
which works on Total, but not months. On a pivot table it looks like this:
Row Labels
SALES THS EUR
DIFF VS PY
2011
454,777
2012-01
190,961
2012-02
136,252
2012-03
127,564
2012
2,071,222
355%
2012-04
121,442
2012-05
148,521
2012-06
139,187
2012-07
144,297
2012-08
132,714
2012-09
142,333
2012-10
194,294
2012-11
232,935
2012-12
339,444
2013-01
184,280
2013-02
138,139
2013-03
153,636
2013
2,002,603
-3%
2013-04
131,322
2013-05
157,068
2013-06
124,342
2013-07
132,663
2013-08
124,874
2013-09
142,968
2013-10
178,709
2013-11
227,422
2013-12
324,105
2014-01
195,916
2014-02
139,371
2014-03
123,843
2014
765,310
-62%
How to correct the measure to work on months too?
I have tried this but not working (returns blanks):
Copy of DIFF VS PY:=CALCULATE(SUM([SALES THS#EUR]),FILTER(PERIOD,MAX(PERIOD[PERIOD NUMBER])))/CALCULATE(SUM([SALES THS#EUR]),ALL(PERIOD[PERIOD NUMBER]),FILTER(ALL(PERIOD[PERIOD NUMBER]),PERIOD[PERIOD NUMBER]=MAX(PERIOD[PERIOD NUMBER])-12))-12
G.

Try this:
Sales:=
SUM( 'PTV FLAT HITLIST'[SALES THS#EUR] )
PY Sales:=
CALCULATE(
[Sales]
, FILTER( ALL( PERIOD[FISCAL YEAR] )
, PERIOD[FISCAL YEAR] = MAX( PERIOD[FISCAL YEAR] ) - 1
Sales vs PY Sales:=
[Sales] / [PY Sales]
This will work if you put PERIOD[MONTH NUMBER] on the rows under PERIOD[FISCAL YEAR].
If you must keep PERIOD[DATE] on the rows, then you'll need to handle this a little differently. PERIOD[DATE]  uniquely identifies a month. This means that with the measures I have suggested above, the filter context will not be cleared from PERIOD[DATE]
and so the filter context of CALCULATE() will be an impossible condition:
On Row Label 2014-03, the filter context will be PERIOD[DATE] = 2014-03 && PERIOD[FISCAL YEAR] = 2013.
If you must keep PERIOD[DATE] as your rowfilter, try this:
Sales:=
SUM( 'PTV FLAT HITLIST'[SALES THS#EUR] )
PY Yr Sales:=
CALCULATE( [Sales]
, FILTER( ALL( PERIOD[FISCAL YEAR] )
, PERIOD[FISCAL YEAR] = MAX( PERIOD[FISCAL YEAR] ) - 1
PY Mo Sales:=
CALCULATE( [Sales]
, FILTER( ALL( PERIOD )
, PERIOD[FISCAL YEAR] = MAX( PERIOD[FISCAL YEAR] ) - 1
&& PERIOD[MONTH NUMBER] = MAX( PERIOD[MONTH NUMBER] )
PY Sales:=
IF( ISFILTERED( PERIOD[DATE] )
, [PY Mo Sales]
, [PY Yr Sales]
Sales vs PY Sales:=
[Sales] / [PY Sales]

Similar Messages

  • MDX to dynamically create period to date for each month of current year

    I need some help with MDX. I am not even sure if this is possible to do but here is what I need.  Any help is greatly appreciated.
    I have a Date dimension with a hierarchy defined as Year-Qtr-Month-Date
    I have a measure called Rentals
    Assume the current date is 10/24/2014.  I want to display by month for the year 2014, the sum of rentals equivalent to the current MTD.  So January would sum 1/1 thru 1/24.  February would sum 2/1 thru 2/24.  March would sum 3/1 thru
    3/24, etc.
    On the end of the current month, all months would display the sum of the whole month. I am not concerned if a month ends on the 30th or 31st.  The end is end.
    It needs to be dynamic enough so that if the current date is the 27th, each month would sum from the 1st to the 27th.

    Hi Rocko,
    According to your description, you want to compare the sum amount of rentals for each month, right?
    In MDX, we can use
    PARALLELPERIOD function returns a member from a prior period in the same relative position as a specified member. So you can use the query like
    with set Period as {[Arrival Date].[Date].[Month].&[2014]&[1]:[Arrival Date].[Date].[Month].&[2014]&[27]}
    member [Arrival Date].[Date].[0] as sum({Period})
    member [Total Amount N-1] as (PARALLELPERIOD([Arrival Date].[Date].[Month], 1, [Arrival Date].[Date].[Year].&[11]), [Measures].[Total Amount])
    Here is a sample query on AdventureWorks cube.
    SELECT ParallelPeriod ([Date].[Calendar].[Calendar Semester]
    , 3
    , [Date].[Calendar].[Month].[October 2003])
    ON 0
    FROM [Adventure Works]
    Regads,
    Charlie Liao
    TechNet Community Support

  • Getting the data for last month of every year

    Hi,
           How to declare the date if we want to pull the data from the December of every year.
    For example if the query is run in march 2015 and they want the historical data it should pull only the data from dec 2014.
    In the same way if they ran the query in future jun 2016 and if they want to historical data it should pull only data from dec 2015.
    It should not coded manually. Please help me with date format that need to used.
    BALUSUSRIHARSHA

    Please follow basic Netiquette and post the DDL we need to answer this. Follow industry and ANSI/ISO standards in your data. You should follow ISO-11179 rules for naming data elements. You should follow ISO-8601 rules for displaying temporal data. We need
    to know the data types, keys and constraints on the table. Avoid dialect in favor of ANSI/ISO Standard SQL. And you need to read and download the PDF for: 
    https://www.simple-talk.com/books/sql-books/119-sql-code-smells/
    A table has to have a key to be table.  Here is my guess at a repair job: 
    CREATE TABLE Test_Data
    (pu_id INTEGER NOT NULL
      REFERENCES PU(pu_id),
     pu_date DATE DEFAULT CURRENT_TIMESTAMP NOT NULL,
     PRIMARY KEY (pu_id, pu_date),
     x_count INTEGER,
     y_count INTEGER);
    Identifiers are not numeric in a good schema. What math do you do with them? They are also the key in the table that models the entity they identify. Where is the PU table (and what is a PU anyway)? 
    INSERT INTO Test_Data
    VALUES
    (28, '2014-01-01', 10, 20), -- crap! No key in this mess!! 
    (28, '2015-01-01', 30, 20), -- 
    (28, '2014-12-12', 10, 20), 
    (28, '2015-02-02', 10, 20);
    A PIVOT is not a query and not even part of SQL. It is how Microsoft programmers who do not know RDBMS or have a report writer violate the tiered architecture of SQL. We also do not use XML mixed in SQL. It is a bitch to maintain, has poor performance and again
    violates the tiered architecture principle. 
    A query is not sorted because it is a table. A file in COBOL can be sorted and that seems to be what you really want to write. 
    Old COBOL love the Sybase CONVERT() string function to avoid SQL temporal data. 
    We never use SELECT * in production code; Google it. Not only are you generating code, you are generation bad code. 
    Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses so there is no way to get disagreements in the DML.
    The report period table gives a name to a range of dates that is common to the entire enterprise. 
    CREATE TABLE Month_Periods
    (month_name CHAR(10) NOT NULL PRIMARY KEY
       CHECK (month_name LIKE <pattern>),
     month_start_date DATE NOT NULL,
     month_end_date DATE NOT NULL,
      CONSTRAINT date_ordering
        CHECK (month_start_date <= month_end_date),
    etc);
    These report periods can overlap or have gaps. I like the MySQL convention of using double zeroes for months and years, That is 'yyyy-mm-00' for a month within a year and 'yyyy-00-00' for the whole year. The advantages are that it will sort with the ISO-8601
    data format required by Standard SQL and it is language independent. The pattern for validation is '[12][0-9][0-9][0-9]-00-00' and '[12][0-9][0-9][0-9]-[01][0-9]-00'
    This will port and waste time calling string function row by row. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Defining Custom Calendar in W_Day_D

    Hi There!
    We have a requirement to have custom calendar in W_Day_D. The requirement is as follows
    Year = Calendar year
    Quarter = Calendar Quarter
    Month = Calendar Month
    Week = The week should start from Monday instead of Sunday. The week num should change on every Monday of the week instead of Sunday.
    Date = Calendar Date.
    I believe there are two files to define fiscal calendar, can we use them or is there any other way to get the desired results.
    A quick help would be appreciated.
    Thank You,

    Hi,
    Check for the data in file_day_seed.csv
    The delivered is 0, Siebel System ...change this value to be non zero and that would resolve the issue !!
    Cheers

  • Events vanished for a single month of every year

    All events in the month of October of every year ever since I started using iCal have vanished from iCal in my computer. I still have them on my iPod and am not syncing Calendars since I noticed this. How can I get every month of every year to show every event I have recorded?

    Hi,
    I have seen similar issues with particular timezones. What timezone are you using in iCal?
    John M

  • SSRS Matrix report. Variance expression by Month. Need to compare month from prior year to current month of current year VS2010

    Please help.  I have a matrix report.  In the report I have row group  PO Type.  One the Column groups I have a parent group by Fiscal Year, and then a child group by Month.  When I run the report, I get two years of data back broken
    out by month.  Please see below.
    Now here is where I am getting stuck.  I need to take the variance between the current month of the current year, from the same month of the prior year.  So I need to show the difference between Oct , 2014 from Oct, 2013. November, 2014 from November
    2013... etc. etc.
    In the example below, how do I create a column or row showing the variance for Contracts for October 2014.  I need to take the contracts for October 2014 which is 3 and subtract that from October 2013 which is 8.  Any suggestions? How do I do that
    for each month?  Then I need to do it for the quarter... then the year?  But I'll be happy if I can just get the month working first.
    Any help will be appreciated. 
    here is what my rdl file looks like.
    Here is what my report looks like when I render it.

    Hi Adrian_s2012,
    According to your description, you want to compare values for the month of current year with the month of prior year and get the variance. Right?
    In Reporting Services, we don't have any function to get this "Year to Year" Growth. In this scenario, if you data source is a cube, we suggest you use Analysis Services to achieve your requirement. If this data source is just from database, it will be hardly
    to calculate the variance because we need to compare the values within every two different column group and matrix generate adjacent columns one by one. Even we make it by using custom, every time executing the long code when generating result
    in a cell will reduce a lot of performance, we really don't suggest to do that in SSRS. Here is a thread with much easier requirement, please take a reference of that:
    http://social.msdn.microsoft.com/Forums/office/en-US/842e2dcb-d949-4297-9d91-eac989692cb5/difference-between-the-grouped-column?forum=sqlreportingservices
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Mid Month Calculation for Year dependent fiscal year

    Hi All,
    We are in middle of AA implementation .How can we configure mid month in year dependent fiscal year .System doesn't allow to put mid month date for year dependent fiscal year.
    If we copy co.code from best practice co.code BP01 system updates date this table in back round.
    But we are not copying from BP01.
    Any one has configure this for year dependent please input.
    Thanks,

    Hi,
    this function is not possible, you have to use a fiscal year variant with 24 real periods instead.
    Check the IMG documentation concerning "Use of Half Months in the Company Code":
    - When you specify the use of half periods in the definition of an asset company code, half periods are automatically specified in all other company codes that use this fiscal year version.
    - You cannot use half periods with non-calendar fiscal months.
    - You cannot take back the use of half periods once the specification has been made.  It is noted internally by the system in the asset master records.
    Regards,
    Markus

  • Last day of each month in a year based on a Input date?

    Hi all,
    I have a request from a customer who wants to have a yearly report created in BEx Query Designer which starts in January up to December and they want to have a Month To Date (MDT) and Year to Date (YTD) calculation of a key figure. This report will only show one year at the time based on the date the user give as input at the Variable Screen.
    This key figure should be calculated by using the last date of each month for input when performing the MTD and YTD calculation and summarizations.
    Example:
    January: 31.01.2008  Key Figure = 1000. MTD = 1000 and YTD = 1000
    February: 29.02.2008  Key Figure = 2500. MTD = (2500-1000) 1500 and YTD = 2500
    March: 31.03.2008  Key Figure = 6000. MTD =(6000-2500)=3500 and YTD = 6000
    Etcu2026.
    This means that I have to have a lot of hidden Key figures which gets restricted on the different month end dates and formulas to calculate the different MTD and YTD results for the months as the year progresses.
    The way I have solved it now is that I have a Customer Exit which gives me the Last day of last year (Exp: 31.12.2007) based on input date and use a Offset on the last day of last year date to get the different last dates of each month.
    Since we have a leap year (one extra day in February) this year, the offset to calculate the end month dates will be different for 2007 and next year (2009). This solution is not very flexible, and it will not give the correct MTD and YTD if the customer wants to go back to 2007 and off course next year (2009).
    One solution is to create 12 Customer Exits that gives me the different month end dates (January-December), and also takes in account leap year for February for the different years. These Exits will be based on the Input date the Customers put in at the variable screen.
    I would rather want to avoid making 12 new customer exits and want your advice and expertise to find out if this is possible in any other way (maybe with only 1 customer exit) to get the last date of each month based on an input date.
    Thanks for all your advices on beforehand.
    Regards
    Oddmar Lid

    Hi,
    Thanks for you replay and documentation, but it doesn't give me excatly the functionality I'm after. The only MTD calculation code the document provides is the calculation of the following functionality:
    "Month to Date (MTD) u2013 From the 1st of month to u201CKey Dateu201D - for current year." This doesn't give the the functionality I want, which is to retrieve a given vaule for a Key Figure for the last dates of the months in a year to calculate MTD and YTD.
    This way I have created the query is to have multiple hidden Key Figures that calculates the MTD and YTD.
    In Columns in Query Designer it will look something like this:
    Selection: MTD January--> Date = 31.01.2008, Key Figure (Always Show)
    Selection: YTD January --> Date= 31.01.2008, Key Figure (Always Show)
    Selection: MTD February --> Date= 29.02.2008, Key Figure (Always Hide)
    Formula: MTD February --> MTD February - MTD January (Always Show)
    Selection YTD February --> Date = 29.02.2008, Key Figure (Always Show)
    And so on....
    This is off course a simplified version, but it shows the core of the solution. What I want to achive here is that the dates used to get the Key Figures (last date of a month) is calculated as flexible as possible, so that the users can go back and forth in time without worrying about the leap year problem and so on. I have now used an offset from the last date of last year and this is good for all the normal years, but when it is a leap year the query will use wrong dates to get the key figure vaule for the last date of each month.
    Any ideas on how to achieve this without creating 12 different Customer Exit variables (one for each end date of each month)?
    Thanks
    Regards
    Oddmar Lid

  • Month not showing on top left of calendar

    I have read several times that events show up in the Month view on iOS7 but they do not show on my iPhone 4. Neither is the month shown on the top left of the calendar. In the month view, the only thing at the top left is the year.

    That is correct. When in the month view, there is a new icon to the left of the search glass that will toggle on and off to show events list for the current day. If you are in the day view, there is a similar icon located in the same place that will allow you to toggle on and off to show the events list for each day, and you can scroll throught that list. When in the day view, the month name is on the top left as always, and when in the month view, the year is displayed. It is almost like a back key that lets you back out of where you are to the next higher level. From day to month, then month to year. If you tap on the year, it will display the entire year on the page.

  • Current month and previous months of fiscal year period data

    Hi All,
    My requirement is end user will enter month ie (fiscal year period ) and in report my requiremnt is to show data in two columns 1.Current month data  and
    2.April till date.
    Please let me know how to do this and please send the coding to be done in CMOS.
    Regards

    Hi,
    In your query, you should have following object :
    in filters:
    fiscal period object, with an user entry variable on it (UE_MONTH)
    in rows/ratios:
    Current month column, with your KF and a restriction on 0calmonth2 with an customer exit variable on it (ie: CE_VAR1)
    same for April column. (CE_VAR2)
    in your customer exit, CMOD, step 2, add these two cases :
    WHEN 'CE_VAR1'.
    READ TABLE i_t_var_range WITH KEY vnam = 'UE_MONTH' INTO
                       intern_range.
    CONCATENATE intern_range-low(6) sy-datum+4(2) INTO l_s_range-low.
    l_s_range-sign   = 'I'.
    l_s_range-opt    = 'EQ'.
    APPEND l_s_range TO e_t_range.
    Same for April, add a new case and just replace sy-datum+4(2) by '04'.
    Hope it helps,

  • Can i get month, quarterly, half yearly, yearly wise sales report basing on

    hi,
    sap gurus,
    good evening to all,
    how can i get month, quarterly, half yearly, yearly wise sales report basing on division and material.
    is there any std transaction code for that.
    customization is requried for that.
    regards,
    balaji.t
    09990019711

    Standard SAP SD Reports:=
    Statistic Group:
    Purpose u2013 To capture data for Standard Reports, we require to activate Statistic Group as under:
    --> Item category (Configuration)
    --> Sales document type (Configuration)
    --> Customer (Maintain in Master data)
    --> Material (Maintain in Master data)
    When you generate statistics in the logistics information system, the system uses the combination of specified statistics groups to determine the appropriate update sequence. The update sequence in turn determines for exactly which fields the statistics are generated.
    Configuration:
    IMG --> Logistics Information System (LIS) --> Logistics Data Warehouse --> Updating --> Updating Control --> Settings: Sales --> Statistics Groups -->
    1. Maintain Statistics Groups for Customers
    2. Maintain Statistics Groups for Material
    3. Maintain Statistics Groups for Sales Documents
    4. Assign Statistics Groups for Each Sales Document Type
    5. Assign Statistics Groups for each Sales Document Item Type .....
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
    2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
    3. Sales organization -> Sales organization / Sales office / Sales employee
    4. Shipping point -> Deliveries / Returns
    5. SD documents -> Orders / Deliveries / Billing documents ...
    & so on.
    Regards,
    Rajesh banka

  • After GL Year opening the months of new year are not appearing in open period window of Gl?

    Hi All,
    After GL Year opening the months of new year are not appearing in open period window of Gl? Am i missing any thing???
    regards
    Shahzad M. Saleem

    Have you checked GL setups
    Setup accounting manager >
    Query your OU >
    Under setup steps click on Update for ledger
    Under accounting calendar
    Number of future enterable periods.

  • How to get the first month of the year inputed by user manually

    Hi Expert,
    Just like the subject, I 'd like to get the first month of the year inputed by user manually, but don't know how to set the variable, please help.
    For example, user execute a query and input the value of variable Year = 2010, and what I want to get is 201001 into another variable, so that I can use this variable to setup another selection.
    Thank you.
    Andy

    Hi Andy,
    1) U will create a user input varaible for year and say it is ZYEAR.
    2)  U will create another variable  for calmonth  which has processing type : customer exit ..single value ...mandatory ....say ZCMONTH.
    This needs to be populated using the year( user inputted )  and calmonth '001'
    This code will fetch the user input value into ZYEAR and append '001' to the user input value and the value
    will be passed to the ZCMONTH varaible...
    Sample Code is....
    When 'ZCMONTH'.
    IF I_STEP = 2.
         READ TABLE I_T_VAR_RANGE WITH KEY VNAM = 'ZYEAR'.
         IF SY_SUBRC = 0.
                    L_S_RANGE-LOW  =  I_T_VAR_RANGE-LOW.
                   L_S_RANGE-LOW+4(3) = '001'.
                  L_S_RANGE-SIGN = 'I'.
                 L_S_RANGE-OPT  = 'EQ'.
                      APPEND L_S_RANGE TO E_T_RANGE.
        ENDIF.
    ENDIF.
    Regards
    vamsi

  • Maint. packages daily,weekly,fortnightly,monthly,quarterly,half yearly,year

    Dear All,
    My client wants to maintain only One Maintenance Strategy for all the Equipments.In that they want to keep following Maintenance Packages.
    1) Daily
    2) Weekly
    3) Fortnightly
    4) Monthly
    5) Quarterly (Three monthly)
    6) Half Yearly
    7) Yearly
    While creating Maintenance Strategy I am using Strategy key (A - Scheduling by calendar)
    In this case what will be the Strategy unit considering above packages because each package is different.
    For maintaining Maintenance Package, double click on Packages, here which unit is to be maintained for each above mentioned Packages?
    In the same screen, column Initial & Subseqnt is it necessary to maintain. If I donu2019t maintain this what will happen?
    Kindly suggest me is it possible to maintain above 7 packages in 1 Strategy for carrying out Preventive Maintenance of Equipment.
    Thanks & Regards,
    Sandeep

    Hi,
    For all these you can use day as basic unit, and scheduling indicator as Time- factory calndr,
    1) Daily                                            1 DAY
    2) Weekly                                        7 DAy
    3) Fortnightly                                  15 DAY
    4) Monthly                                      30 DAY
    5) Quarterly (Three monthly)         90 DAY
    6) Half Yearly                               180 DAY
    7) Yearly                                      365 DAY
    It will work with this combination.
    Regards,
    N.Nagaraju

  • How do I change my muse subscription from a month to month to a yearly monthly?

    Right now I'm paying $24.99 on a month to month subscription. I'd like to pay the $14.99 a month on a monthly for a year.  How would I do that?

    Hi
    Please get in touch with Customer Service team for this query.
    Thanks,
    Sanjit

Maybe you are looking for

  • Open Purchase Orders at Retail Value

    Hi I need to show Open Purchase Orders at Retail Value in one of my reports and I am using the key figure - "Open Purchase Orders (Retail Price) - 0RTOPDVSV". I am using this KF in the cube ZRT_STWK which is part of a multiprovider. Data to this cube

  • PC users can't save PDF form data from form created on Mac

    I'm trying to create a PDF form for a client that will be accessing the form on a PC. However, when the client opens the form, a message appears saying that any data filled in the form cannot be saved and the document must be printed. If the client t

  • Unable to create Sybase master device

    Hello, Before starting Sybase install, I have created two raw devices c0t0d0s3 & c0t0d0s4. Then I did: chown sybase:staff /dev/rdsk/c0t0d0s3 chown sybase:staff /dev/rdsk/c0t0d0s4 Sybase install errors off while creating master device: kernel Checked

  • Localization of MVC3 application for South Africa

    My mvc3 application is localized to support many different countries.  Mostly everything works fine, but in a few countries I've run into problems.  The biggest of which is South Africa.  They use commas instead of periods in decimals and when the th

  • Latest Flash not working at all in 3.6.16 on Mac 10.4; even reinstalled; what can I do?

    No flash is working, not Youtube, games, or the check on Adobe site. (All works fine in Safari) Completely removed *all* files for firefox, mozilla, adobe, flash; and reinstalled both programs. Still nothing works. Installed plugin Shockwave/Director