How to know on which time dimension level we are ?

Hello,
I would like to know is there a variable or a mean to know dynamically on which time dimension level we are in order to use that in a CASE WHEN clause ?
By using a sort of aggregation tables in which one of the column contains the name of the level, I could know on which level I am but I can't use that for drill down. What I mean :
Tab1 :
'Year' as typelevel, year
Tab2 :
'Month' as typelevel, year, month
In BMM, I have made one logical table with as Source tab1 and tab2 and as columns typelevel, year and month.
tab1 has in content column the year level
tab2 has in content column the month level.
So when in Answers I retrieve
typelevel, year
the result is : 'Year', 2008
and when I request : typelevel, year, month
the result is : 'Month', 2008, 1
But if I want to drill from year to month in order to have :
'Year', 2008
and then after drill
'Month', 2008, 1
it is impossible as a filter on typelevel='Year' is added on the month level, so it retrieves 0 columns.
If someone has an idea on how to do that it would be very great.
Thanks in advance for your help.

Hi Supriya,
OOTB I think you can use SharePoint designer, but I would suggest  custom code to iterate to all pages, and get the lists that are associated with these pages.
http://stackoverflow.com/questions/633633/sharepoint-how-can-i-find-all-the-pages-that-host-a-particular-web-part
another one would be if those lists were never used and you can check for list with empty data.
I would use Get-SPLists to get all of the lists to check for zero items.
http://blogs.technet.com/b/heyscriptingguy/archive/2010/09/15/use-windows-powershell-to-manage-lists-in-sharepoint-2010.aspx
 http://sharepointrelated.com/2011/11/28/get-all-sharepoint-lists-by-using-powershell/
Hope this helps!
Ram - SharePoint Architect
Blog - SharePointDeveloper.in
Please vote or mark your question answered, if my reply helps you

Similar Messages

  • HT201407 how to know under which carrier has the phone been issued

    how to know under which carrier has the phone been issued

    If you bought it from an authorized Apple reseller, it should say on the receipt. If you bought it from a private seller, ask that seller, or call Apple Support and they may be able to tell you.
    Regards.

  • How to know the run time of a program..?

    Hi Gurus,
    How to know the exact run time of a program....?
    Suppose i've a program....I've changed the code to improve the performance.
    Now i want to compare run time of older and new one...How to do this...?
    Pls help me ....
    Thanks and Regards,
    Nagarjuna

    Hi,
    go thru the below mentioned code............
    data:   start TYPE i,
              end TYPE i,
              dif TYPE i.
    GET RUN TIME FIELD start.
    SELECT SINGLE bukrs belnr gjahr blart budat
    FROM bkpf
    INTO (cc, doc, fy, doc_ty, pst_dt)
    WHERE bukrs = p_bukrs
    AND belnr = p_belnr
    AND gjahr = p_gjahr.
    GET RUN TIME FIELD end.
    dif = end - start.
    WRITE: /001 'Time for select',
    067 ':', dif, 'microseconds'.
    Reward all helpful answers.
    Thanks

  • HT201250 How can I determine which Time Machine backups can be deleted to free space on my backup device?

    Time Machine keeps hourly backups for the past 24 hours, daily backups for the past month, and weekly backups.
    But are they all incremental or full backups?
    How can I determine which can be deleted to free space on my backup device?
    Thanks.

    Thanks.
    So, if TimeMachine only makes one full backup the first time a backup is taken, and then automatically removes backups as space is needed, is there a danger that there can come a point where no single restore point exists?
    I find Apple's lack of detail around this topic disappointing. It's such an important thing.
    I guess TimeMachine doesn't work quite how I want it too. Seems to be true of so many Apple products!

  • How to use Solve Order in Dimension level formula

    Hi All,
    Can anyone explain me how to use "Solve order" in formulas defined in dimension?
    Regards,
    Kapil

    Hi,
    Let us consider the following:
    There are 3 members in your account dimension, Amt, Rate, and Prod. The data looks like
                   Jan     Feb     Mar     Apr     May
    Amt        100     10       20       30       40
    Rate       10       20       10       20       30
    Prod       1000  200     200      600     1200
    The above values of the Prod will be displayed if the measure in CV is set to periodic. However, if you change the measure in CV to YTD and change the time dimension to dec, then you should get the below result.
                  Dec
    Amt       200
    Rate      90
    Prod      3200
    This value is nothing but the total of the entire year.
    Hope this helps.

  • How to know user session time

    Hi,
    I want to know how to know or calculate the user session time till now from the time when user got connected
    in simple current_time-begin_time.
    thanks in advance

    Try using the logon_time of v$session
    test@>desc v$session;
    Name                                                  Null?    Type
      LOGON_TIME DATE All columns of the view have not been displayed.
    Adith

  • How to know the execution time of rule in Calculation Manager

    Hi All,
    How do we come to know the time of execution of rule in calculation manager ?
    Regards
    Vikram

    At this point there is no way to know the execution time of a rule in calculation Manager . If you are working on Planning rules, I believe planning displays the execution time in its job console.
    -SR

  • How to know the which week in GregorianCalendar API

    Dear all
    does someone know that way when i use GregorianCalendar this API to know the which week is
    for example in this month has 6 week and 2008/08/27 is week 5 , dose any idea i can know it in this program
    import java.util.Calendar;
    import java.util.GregorianCalendar;
    import java.util.Date;
    import java.text.DateFormat;
    public class DateExample5 {
         public static void main(String[] args) {
              DateFormat dateFormat =
              DateFormat.getDateInstance(DateFormat.FULL);
              // Create our Gregorian Calendar.
              //GregorianCalendar cal = new GregorianCalendar(2008,05,10);
              GregorianCalendar cal = new GregorianCalendar();
              //cal.setTime(new Date());
              System.out.println("System Date: " +dateFormat.format(cal.getTime()));
              // Set the day of week to FRIDAY
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.SUNDAY);
              System.out.println("After Setting Day of Week to Friday: " + dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.MONDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.TUESDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.WEDNESDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.THURSDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.FRIDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.set(GregorianCalendar.DAY_OF_WEEK,GregorianCalendar.SATURDAY);
              System.out.println("After Setting Day of Week to Friday: " +dateFormat.format(cal.getTime()));
              cal.add(GregorianCalendar.DAY_OF_MONTH,7);
    }Edited by: roger5089 on Aug 26, 2008 9:25 AM

    import java.util.Calendar;
    import static java.util.Calendar.WEEK_OF_MONTH;
    public class DateExample5 {
        public static void main(String[] args) {
            Calendar cal = Calendar.getInstance();
            int weekOfMonth = cal.get(WEEK_OF_MONTH);
            System.out.println(weekOfMonth); //5
    }Never used Calendar.WEEK_OF_MONTH, but I had a butcher's hook and found this documentation:
    <quote>
    Field number for get and set indicating the week number within the current month. The first week of the month, as defined by getFirstDayOfWeek() and getMinimalDaysInFirstWeek(), has value 1. Subclasses define the value of WEEK_OF_MONTH for days before the first week of the month.
    </quote>

  • How to know in which roles a given query is ?

    Hello,
    Suppose I have a certain query.
    Is there a way to know in which roles this query is other than do a manual search in pfcg?

    Hi Roy,
    You need to recheck the settings ,  i tried assigning web template to role , and while i try to transport it thorugh transport connection using following options
    Grouping indataflow afterwards
    collection mode : collect automatically
    display as list.
    And this shows me query involved and roles to which it is attached to.
    Hope that helps.
    Regards
    Kapadia
    ***Assigning points is the way to say thanks in SDN.***

  • How to know to which page the user is going

    Hi! I want to know to which domain my user is going after leaving a certain page. I want to know this to differentiate if is moving to a page inside my site, if he's leaving or if he's closing the browser.
    Hope u can help me! Regards
    Raul

    If a user clicks a link on the page then you can tell that where is he/she heading,but if they type the address in the location bar,then you are out of luck.
    And this is a JavaScript/html related question( I think...*_*)
    Cheers
    Khalid

  • How to know to which process chain a infopackage belongs to?

    Hi experts!
    I got the name of a infopacakage (also its technical name), but I would like to know to which process chain it belongs to,
    Does someone a quick way to know it?
    Thank you very much in advance!!

    Hi Raul,
    If you open the infopackage there is an option at the top 'process chain maint.'  Click this and it will give you the proces chain it belongs to.
    Thanks,
    Nick.

  • How can I report which Ressource Related Billing items are not billed yet?

    Hi SDN's
    On my WBS's I have a number of costs - time registrations, travel costs and other finance postings. Some of them are billed, some of them are still not billed. When I go into DP91, this transaction clearly knows which items are already billed, since only the outstanding items are shown here. However, looking into tables COEP and AD01DLI* I do not find any clear references that can give me the basis showing non-billed items in a report.
    Does any of you know how DP91 keeps track of which items on my WBS are billed and which are not?
    Kind regards
    Steen Koefoed

    steve626 said:
    "... There you will be able to see if a more recent version of Safari, etc. was replaced with an older version."
    Not exactly. That screen shows my most recent Safari update was 5.1.2 on 12/16/11 -- then it shows the Mac OS X Update Combined was installed on 1/2/12. That's when my Safari got downgraded to 5.0.5, but that detail is missing from the Installed Updates preference pane.
    It looks like once an update gets installed, Software Update remembers that -- but does not take the newer update off the list if an older version replaces it???
    So, even though I see Security Update 2011-006 was installed on 10/21/11, I'm not sure if the OS Combo Update replaced any security items with older bits. Is there anything specific to security updates that I might be able to check?
    -gw

  • How to Display Column which is not in Subject area.

    Hello Everyone,
    I have one report requirement where i have to show one column which is not in subject area.
    e.g. report requirement is like where i need columns from 2 different subject areas.
    1 from PO & 2nd from Invoice.
    now i have PO related details in Invoice Subject area, but only one column is missing.
    rite now i m capturing that column related details in separate report and from there i am passing values to Main report.
    But what if i want to display that column in the main report.
    Please let me know your inputs..
    Thanks in advance..

    You can do this in 10g by using the Advanced tab in Answers. Scroll down to the part of this link titled, "Against two Subject Areas (Multiple Subject Areas)."
    http://gerardnico.com/wiki/dat/obiee/multiple_subject_area

  • How to set user security on dimension levels?

    Hi, there. I am considering setting use access right to specific levels on the branch dimension.
    Suppose there are four companies on level 1 of the branch dimension. I would like to limit users only access their own company.
    How should it be done in share service? Thanks.

    Thanks both.
    However, I encountered another problem. After created users in shared service, I could not see it in
    application even after refresh secutiry.
    Another problem is that I could not apply filters by Essbase administration console. The Edit User/Group access function is disabled.
    Therefore, even I selected a user I could not apply the filter. Does anyone know how to enable the function?
    Thanks in advance.

  • How to know the which add-ons my sap system Have

    AS per Note 1318299 - SAP Enhancement Package 5 for SAP ERP 6.0:Compatible Add-ons
    Symptom
    You plan to run SAP enhancement package 5 for SAP ERP 6.0 together with an Add-On on the same system. Which points do you need to consider?
    Other terms
    AddOn; add-on; Enhancement Package; compatibility;
    Solution
    In general, please check whether your Add-On supplier has released your specific Add-On for usage with SAP enhancement package 5 for SAP ERP 6.0.
    If you have a solution categorized as '(Standard) Custom Development' for your ERP system, please contact SAP Custom Development at least three months before implementing SAP enhancement package 5 for ERP 6.0, because sufficient time might be required in case of adjustments.
    If you find the add-on you are looking for neither in the list below nor in the related notes, please contact SAP Support (for SAP Products) or the specific partner (non SAP-Products).
    Then my question is, how can i find, the add-ons present in my windows/oracle ECC 6.0 installation.

    HI
    All componets are add-on installed in your system. If you want select according technical usages in mantienance optimazer for EHP5 see sap  Note 1324838 - Enhancement package 5 for SAP ERP 6.0: Required SWC
    In the attachments you found a table with Technical usages - add on.
    When you select your technical usages then appear add-on that will be upgrade.
    Regards
    William Neira

Maybe you are looking for

  • SSL - Installing Third party secure certificates

    Hi, I am having problem while importing third party secured certificates (Verisign). In STRUST, after import It was still saying Self-Signed message for third party certificates. I am not sure weather this is correct behavior or not. After launch bro

  • PPR event in poplist

    Hi, My requirement is like this, From dropdown list, the approvers will be able to select “Vehicle Specific” or “Other”. 1.     If the approver selects “Vehicle Specific” then they will be required to enter VIN and Customer #. Work Order number entry

  • I know this has been said BUT K8N plat won't post

    I am at my wits end with this damn thing.  I have installed a ton of PCs and never as much trouble as I have with this AMD64 3000.  First I ordered it with the Chaintech 150 board after reading great reviews on it.  That was my mistake for not lookin

  • Unable to start service (IfsDefault)

    After I compile following HelloWorld.java, I received the Following Error Message. How can I solve this probleme. oracle.ifs.common.IfsException: IFS-20102: Unable to start service (IfsDefault) oracle.ifs.common.IfsException: IFS-20010: Unable to get

  • Adobe premier pro

    I installed a trial version of Adobe premiere pro: - i don't find any executable file to launch it - the program doesnt appear in the start list of Windows the program appear just in the unistalling menu of windows, but I tried to remove it.. it give