Using measure at a certain hierarchy level and summarizing calculated results

Hi,
I have a four-level hierarchy structure (Category, SubCategory, SubSubCategory and Item) in a PivotTable containing two measures (measure 1, measure2). I need a third measure that compares results of those two measures at SubSubCategory level to
choose the maximum of those two measures. Selection should not be done at Item level or SubCategory or Category level.
Item level results should give blank values as result. After choosing the bigger measure value at SubSubCategory level, measure 3 should calculate the sum of measure 3 at SubCategory level and of course at Category level.
BR,
Heidi

Hi Heidi,
Thanks for providing the additional information. If I've understood your requirement correctly then the following DAX formula should give the desired result:
Measure 3:=IF(
NOT ISFILTERED('Data'[Item]),
SUMX(
ADDCOLUMNS(
VALUES('Data'[SubSubCategory]),
"Greater Measure", IF([Measure 1] >= [Measure 2], [Measure 1], [Measure 2])
[Greater Measure]
The formula is always comparing the measures at the SubSubCategory granularity and picking the highest measure value for each SubSubCategory. The result is then rolled up to higher levels i.e. Sub Category and Category. The outermost IF function has
been used to stop any result from being returned for the Item level in Pivot Tables. 
This is the output that I got after dragging it onto the Pivot Table:
Edit: I noticed that the language setting that you are using means your DAX parameter delimiter is ';'. Simply replace all of the ',' in the formula I provide with ';' and it should work for you :)
Regards,
Michael Amadi
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
Website: http://www.nimblelearn.com, Twitter:
@nimblelearn

Similar Messages

  • Table relationship between hierarchy level and merchandise category

    1) Want to find Merchadise Category from Merchandise Hierarchy level which is attached with same Merchandise category.
    I am having data/TABLE as below.
    my input: M_WWG1C_class
    i want to fetch data matkl in T023 or matkl in MARA for the same article within same merchandise category.
    How i can have link?
    2) i am having input CAWN_atwrt(Characteristic Value) and how i can reach matkl in T023 or matkl in MARA  for the same article within same merchandise category.

    Oracle does not support REPEATABLE READ transaction isolation level. It only supports SERIALIZABLE, READ COMMITED and READ ONLY isolation levels.
    The default is READ COMMITED.
    While the READ COMMITED can access all the committed data till the point of execution in transaction, READ SERIALIZABLE can access committed data till the point of start of transaction.
    Another difference between two with respect to ROW LEVEL LOCKING is
    Both read committed and serializable transactions use row-level locking, and both will wait if they try to change a row updated by an uncommitted concurrent transaction. The second transaction that tries to update a given row waits for the other transaction to commit or roll back and release its lock. If that other transaction rolls back, the waiting transaction, regardless of its isolation mode, can proceed to change the previously locked row as if the other transaction had not existed.
    However, if the other blocking transaction commits and releases its locks, a read committed transaction proceeds with its intended update. A serializable transaction, however, fails with the error "Cannot serialize access", because the other transaction has committed a change that was made since the serializable transaction began.
    Read following for clearing your concepts on transaction isolation levels and locking mechanisms
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/server.920/a96524/c21cnsis.htm#2414
    Chandar

  • Can a weblink be used to navigate to a list view and filter the results?

    I have a requirement to provide a link on a detail page to a list of related records. The link would have to take the user to a specific saved list and filter the list for those records related to the record being drilled from.
    In our case, they are all custom objects but a similar example would be putting a link on the Account Detail page that would navigate the user to a list of contacts associated to that account. The related region can not be used because the users need to view more than 9 fields. And a report can not be used because the users need to be able to edit the records in the list.
    Is this possible?

    Hi,
    If your requirement is to just VIEW a list of Related Records that meet your criteria, you could probably achieve it by building a report and navigating to it using the Web Link by passing the parameters to the report through the URL.
    If your Customer insists on navigating to a list of related records through a Custom List (May be because they want to edit a set of records etc...)
    You could create a couple of Custom Lists that meet all possible criteria you might have.
    Eg: All US Contacts
    All UK Contacts
    On the click of the weblink you could pass the URL of the Custom List. It will look something like this.
    https://secure-ausomxXXX.crmondemand.com/OnDemand/user/ContactList?ContactList.LAYOUT=Contact+List+AllUKContacts&ContactList.LAYOUTID=XXXX-JHU0G&OMTGT=ContactList&OMTHD=ListPostBack&ContactList.EDITFLAG=Y
    XXXX-JHU0G : ID of the Custom List
    Hope this helps
    Royston
    Edited by: Royston Goveia on Nov 10, 2011 10:25 PM
    Edited by: Royston Goveia on Nov 10, 2011 10:26 PM

  • Loading Hierarchy levels as Navigational Attributes of 0MATERIAL.

    Hello Guys, <br><br>
    bit of background about the issue: <br><bR>
    I am loading 0MATERIAL hierarchy from ECC using 0MATERAIL_LKLS_HIER Data source.(IS Retail). this job runs very fast.
    We have a 8 level hierarchy in ECC/BI and the lowest level of hierarchy is 0MATERAIL. I am also loading 0MATERIAL_ATTR from ECC. While loding 0MATERAIL_ATTR into BI, i need to populate each hierarchy level of an artcile as navigation attributes of 0MATERIAL. <br><br>
    For this requiremetn i wrote a start routine in the update rules and reading hierarchy levels and node names from /BI0/HMATERIAL table. the problem is the performance of the extractor is very very poor. It runs for more than 10 hours every day and it is causing many problems for our transactional data loads. <br><br>
    Here is the code i am using in my start routine. <br><br>
    I need suggestions on improving the performance of this extractor asap. are there any other best practices to load Article hierarchy levels as attributes apart from using ABAP  lookups?? any help will be appreciated. <br><br>
    TYPES: BEGIN OF TY_HIER, <br>
            MATERIAL TYPE /BI0/OIMATERIAL, <br>
            HIER_LEVEL1 TYPE RSSHNODENAME, <br>
            HIER_LEVEL2 TYPE RSSHNODENAME, <br>
            HIER_LEVEL3 TYPE RSSHNODENAME, <br>
            HIER_LEVEL4 TYPE RSSHNODENAME, <br>
            HIER_LEVEL5 TYPE RSSHNODENAME, <br>
           END OF TY_HIER. <br><br>
    DATA: GT_HIER TYPE STANDARD TABLE OF TY_HIER, <br>
          WA_HIER TYPE TY_HIER. <bR><br>
    DATA: LT_MAT_HIER TYPE STANDARD TABLE OF /BI0/HMATERIAL,<br>
              WA_MAT_HIER TYPE /BI0/HMATERIAL,<br>
              wa_hier TYPE ty_hier. <bR><br>
      DATA: l_nodename TYPE rsshnodename.<bR><br>
    * Retrieving the whole hierarchy table into an internal table <br>
      SELECT * FROM /BI0/HMATERIAL INTO TABLE LT_MAT_HIER. <br><br>
    * Looping at the data package <br>
      LOOP AT DATA_PACKAGE. <bR><br>
        WA_HIER-MATERIAL = DATA_PACKAGE-MATERIAL. <bR><br>
    * Sort internal table for binary search<br>
        Sort LT_MAT_HIER by iobjnm nodename. <bR><br>
        READ TABLE LT_MAT_HIER <br>
              INTO WA_MAT_HIER WITH KEY IOBJNM = '0MATERIAL'<br>
                                      NODENAME = DATA_PACKAGE-MATERIAL<br>
                                      binary search. <bR><br>
        Sort LT_MAT_HIER by nodeid. <bR><br>
        WHILE WA_MAT_HIER-TLEVEL > 1. <bR><br>
          READ TABLE LT_MAT_HIER <br>
                INTO WA_MAT_HIER WITH KEY NODEID = WA_MAT_HIER-PARENTID <br>
                                                        binary search. <br><bR><br>
    *      IF SY-SUBRC = 0. <br>
          SHIFT WA_MAT_HIER-NODENAME BY 3 PLACES LEFT. <bR><br>
          CASE WA_MAT_HIER-TLEVEL. <br>
            WHEN '07'. <br>
              CONTINUE. <br>
            WHEN '06'. <br>
              WA_HIER-HIER_LEVEL5 = WA_MAT_HIER-NODENAME. <br>
            WHEN '05'. <br>
              WA_HIER-HIER_LEVEL4 = WA_MAT_HIER-NODENAME. <br>
            WHEN '04'. <br>
              WA_HIER-HIER_LEVEL3 = WA_MAT_HIER-NODENAME. <br>
            WHEN '03'. <br>
              WA_HIER-HIER_LEVEL2 = WA_MAT_HIER-NODENAME. <br>
            WHEN '02'. <br>
              WA_HIER-HIER_LEVEL1 = WA_MAT_HIER-NODENAME. <br>
            WHEN OTHERS. <br>
              CONTINUE. <br>
          ENDCASE. <br>
        ENDWHILE. <br><br>
        APPEND WA_HIER TO GT_HIER[]. <br>
        CLEAR WA_HIER. <bR>
      ENDLOOP. <bR><br>
      SORT GT_HIER BY MATERIAL.
    <br><br>
    Thanks in advance <br>
    Cheers <bR>
    POPS<br>

    Any other thoughts guys...
    is there a standard function module where we can specify the lowest level article detail as input and request for level  1 - 5 values ??

  • Aggregating data loaded into different hierarchy levels

    I have some problems when i try to aggregate a variable called PRUEBA2_IMPORTE dimensinated by time dimension (parent-child type).
    I read the help in DML Reference of the OLAP Worksheet and it said the follow:
    When data is loaded into dimension values that are at different levels of a hierarchy, then you need to be careful in how you set status in the PRECOMPUTE clause in a RELATION statement in your aggregation specification. Suppose that a time dimension has a hierarchy with three levels: months aggregate into quarters, and quarters aggregate into years. Some data is loaded into month dimension values, while other data is loaded into quarter dimension values. For example, Q1 is the parent of January, February, and March. Data for March is loaded into the March dimension value. But the sum of data for January and February is loaded directly into the Q1 dimension value. In fact, the January and February dimension values contain NA values instead of data. Your goal is to add the data in March to the data in Q1. When you attempt to aggregate January, February, and March into Q1, the data in March will simply replace the data in Q1. When this happens, Q1 will only contain the March data instead of the sum of January, February, and March. To aggregate data that is loaded into different levels of a hierarchy, create a valueset for only those dimension values that contain data. DEFINE all_but_q4 VALUESET time
    LIMIT all_but_q4 TO ALL
    LIMIT all_but_q4 REMOVE 'Q4'
    Within the aggregation specification, use that valueset to specify that the detail-level data should be added to the data that already exists in its parent, Q1, as shown in the following statement. RELATION time.r PRECOMPUTE (all_but_q4)
    How to do it this for more than one dimension?
    Above i wrote my case of study:
    DEFINE T_TIME DIMENSION TEXT
    T_TIME
    200401
    200402
    200403
    200404
    200405
    200406
    200407
    200408
    200409
    200410
    200411
    2004
    200412
    200501
    200502
    200503
    200504
    200505
    200506
    200507
    200508
    200509
    200510
    200511
    2005
    200512
    DEFINE T_TIME_PARENTREL RELATION T_TIME <T_TIME T_TIME_HIERLIST>
    -----------T_TIME_HIERLIST-------------
    T_TIME H_TIME
    200401 2004
    200402 2004
    200403 2004
    200404 2004
    200405 2004
    200406 2004
    200407 2004
    200408 2004
    200409 2004
    200410 2004
    200411 2004
    2004 NA
    200412 2004
    200501 2005
    200502 2005
    200503 2005
    200504 2005
    200505 2005
    200506 2005
    200507 2005
    200508 2005
    200509 2005
    200510 2005
    200511 2005
    2005     NA
    200512 2005
    DEFINE PRUEBA2_IMPORTE FORMULA DECIMAL <T_TIME>
    EQ -
    aggregate(this_aw!PRUEBA2_IMPORTE_STORED using this_aw!OBJ262568349 -
    COUNTVAR this_aw!PRUEBA2_IMPORTE_COUNTVAR)
    T_TIME PRUEBA2_IMPORTE
    200401 NA
    200402 NA
    200403 2,00
    200404 2,00
    200405 NA
    200406 NA
    200407 NA
    200408 NA
    200409 NA
    200410 NA
    200411 NA
    2004 4,00 ---> here its right!! but...
    200412 NA
    200501 5,00
    200502 15,00
    200503 NA
    200504 NA
    200505 NA
    200506 NA
    200507 NA
    200508 NA
    200509 NA
    200510 NA
    200511 NA
    2005 10,00 ---> here must be 30,00 not 10,00
    200512 NA
    DEFINE PRUEBA2_IMPORTE_STORED VARIABLE DECIMAL <T_TIME>
    T_TIME PRUEBA2_IMPORTE_STORED
    200401 NA
    200402 NA
    200403 NA
    200404 NA
    200405 NA
    200406 NA
    200407 NA
    200408 NA
    200409 NA
    200410 NA
    200411 NA
    2004 NA
    200412 NA
    200501 5,00
    200502 15,00
    200503 NA
    200504 NA
    200505 NA
    200506 NA
    200507 NA
    200508 NA
    200509 NA
    200510 NA
    200511 NA
    2005 10,00
    200512 NA
    DEFINE OBJ262568349 AGGMAP
    AGGMAP
    RELATION this_aw!T_TIME_PARENTREL(this_aw!T_TIME_AGGRHIER_VSET1) PRECOMPUTE(this_aw!T_TIME_AGGRDIM_VSET1) OPERATOR SUM -
    args DIVIDEBYZERO YES DECIMALOVERFLOW YES NASKIP YES
    AGGINDEX NO
    CACHE NONE
    END
    DEFINE T_TIME_AGGRHIER_VSET1 VALUESET T_TIME_HIERLIST
    T_TIME_AGGRHIER_VSET1 = (H_TIME)
    DEFINE T_TIME_AGGRDIM_VSET1 VALUESET T_TIME
    T_TIME_AGGRDIM_VSET1 = (2005)
    Regards,
    Mel.

    Mel,
    There are several different types of "data loaded into different hierarchy levels" and the aproach to solving the issue is different depending on the needs of the application.
    1. Data is loaded symmetrically at uniform mixed levels. Example would include loading data at "quarter" in historical years, but at "month" in the current year, it does /not/ include data loaded at both quarter and month within the same calendar period.
    = solved by the setting of status, or in 10.2 or later with the load_status clause of the aggmap.
    2. Data is loaded at both a detail level and it's ancestor, as in your example case.
    = the aggregate command overwrites aggregate values based on the values of the children, this is the only repeatable thing that it can do. The recomended way to solve this problem is to create 'self' nodes in the hierarchy representing the data loaded at the aggregate level, which is then added as one of the children of the aggregate node. This enables repeatable calculation as well as auditability of the resultant value.
    Also note the difference in behavior between the aggregate command and the aggregate function. In your example the aggregate function looks at '2005', finds a value and returns it for a result of 10, the aggregate command would recalculate based on january and february for a result of 20.
    To solve your usage case I would suggest a hierarchy that looks more like this:
    DEFINE T_TIME_PARENTREL RELATION T_TIME <T_TIME T_TIME_HIERLIST>
    -----------T_TIME_HIERLIST-------------
    T_TIME H_TIME
    200401 2004
    200402 2004
    200403 2004
    200404 2004
    200405 2004
    200406 2004
    200407 2004
    200408 2004
    200409 2004
    200410 2004
    200411 2004
    200412 2004
    2004_SELF 2004
    2004 NA
    200501 2005
    200502 2005
    200503 2005
    200504 2005
    200505 2005
    200506 2005
    200507 2005
    200508 2005
    200509 2005
    200510 2005
    200511 2005
    200512 2005
    2005_SELF 2005
    2005 NA
    Resulting in the following cube:
    T_TIME PRUEBA2_IMPORTE
    200401 NA
    200402 NA
    200403 2,00
    200404 2,00
    200405 NA
    200406 NA
    200407 NA
    200408 NA
    200409 NA
    200410 NA
    200411 NA
    200412 NA
    2004_SELF NA
    2004 4,00
    200501 5,00
    200502 15,00
    200503 NA
    200504 NA
    200505 NA
    200506 NA
    200507 NA
    200508 NA
    200509 NA
    200510 NA
    200511 NA
    200512 NA
    2005_SELF 10,00
    2005 30,00
    3. Data is loaded at a level based upon another dimension; for example product being loaded at 'UPC' in EMEA, but at 'BRAND' in APAC.
    = this can currently only be solved by issuing multiple aggregate commands to aggregate the different regions with different input status, which unfortunately means that it is not compatable with compressed composites. We will likely add better support for this case in future releases.
    4. Data is loaded at both an aggregate level and a detail level, but the calculation is more complicated than a simple SUM operator.
    = often requires the use of ALLOCATE in order to push the data to the leaves in order to correctly calculate the aggregate values during aggregation.

  • Tonecurves, Levels and Colorspaces. Still not getting it...

    Hi,
    I am new to Lightroom, and I am asking what may be obvious. But I have done my research and read as many tutorials and forum posts as possible, but I am still having difficulties with quite an obvious task (I think!)
    Like many other people posting I was initially suprised that Lightroom doesn't have a levels feature like what I am so used to in Photoshop. After reading lots of posts about this, I can completely understand the benefits of Lightroom's methods, and I am trying to change my workflow accordingly.
    However, in a few examples (pretty much all using underwater photography) where Photoshop's levels can achieve better results so quickly, I cannot achieve the same results in Lightrooms Tonecurve, for all of my trying.
    Experimenting with changing the colourspace in Photoshop (from Adobe RGB to ProPhoto), I now realise that I also can't achieve what I want using Photoshop's levels when using ProPhoto. So my problem is really that I can't create what I want to, using ProPhoto colour space.
    My perfect solution would be to change the colour space in Lightroom to Adobe RGB or sRGB. However, I know I can't.
    Here is the original photo.
    https://docs.google.com/open?id=0B9EYZF46Q9p0c1ludU92TFlXbnc
    Below is the effect I would like to create in Lightroom, however this was created very quickly in Photoshop using levels.
    https://docs.google.com/open?id=0B9EYZF46Q9p0MEdDbGN4Nng4bVU
    And finally, this is the closest I can get in Lightroom.
    https://docs.google.com/open?id=0B9EYZF46Q9p0WHNOYXlkLUpjaG8
    So, my question is - how can I create the Photoshop like image, using Lightroom? If anyone can show me the settings to achieve this result, I would sincerely appreciate your help.
    (I know some people may prefer the Lightroom image above, but that is not my question...)
    Thanks in advance
    Dave

    Nelu,
    Yours still has a CYAN cast to the picture. The white balance is still off.
    Get the whie balance in line and the rest falls into place. Here is my version from above
    with added saturation and a paraametric curve pulled on the yellow-orange material to
    darken it closer to the op's wishes.
    Mr London's version.
    Op"s desired appearance.
        It is not all about speed, it is about getting a quality development.
    Rich

  • Required - Battery Level and network signal strent...

    It would be very useful if there was a Battery Level and network signal strenth indicators in OVi Suite. IMO even free mobile management apps have this useful feature.So it shouldnt be a problem for Nokia to add this to Ovi suite.

     When I connect my N8 to the PC I get the below window pop up.
     So it seems the function you describe already exists.
    Thanks
    Ray 

  • Main item and Hierarchy level items in SAP EWM

    We use ERP SAP AFS and EWM 9.1
    ERP sales order 20000 - 5PCS ( Different grid values chosen and delivery is distrubuted to EWM)
    Outbound delivery order contains main item and corresponding SKU displayed with Grid values like Color, Cup and Size. (Hierarchy Level)
    20000
    20000-0001A30
    20000-0001A32
    20000-0001C34
    20000-0001B36
    20000-0001D38
    We create Warehouse tasks for SKU items ( Items 60,70,80,90,100) for picking.
    I need to process VAS activites for this.
    Price labeling and putting on plastic bag for all SKU's ( 2 VAS activity).
    I have maintained packaging specification and tried to process it.
    But here I get an error in VAS order. Because WR Qty from ODO to VAS order is not copied. It is getting deleted at the time of VAS order creation.
    Then I tried to maintain the packaging specification for item 20000 (main item) and process the VAS order. Here VAS order got created and WR Qty also displayed.
    But Picking Warehouse tasks are created for SKU items not for main items. In this case I am not able to process it also.
    Packaging specification for main item or SKU item I should consider? If it is for SKU , need to have lot of master data. Is there any link i can make maintaining packspec for main item and process the warehouse tasks for SKU.
    Which way i have to go now?
    Any suggestion please
    Please ask me if you need more inputs

    Hi Jobi,
    I agree to Juergen, you'll need individual pack specs per subitem in order to process VAS on this level. Did you think of using batches and depending characteristics for the grid values? This is how EWM for Fashion works. Then you could define only VAS pack spec for multiple grid values.
    Best regards,
    Christian
    Remark: did you consider EWM for Fashion for your implementation?

  • Will an iPhone automatically turn off location services.  If it goes below a certain battery power level, and so how you disable this in settings.

    I am working with Georgia DOT and we have created an app to track our state vehicles using IPhone 5. My question is: will an iPhone automatically turn off location services?  If it goes below a certain battery power level, and if so how do you disable this in settings.
    Message was edited by: mickyel

    I don't believe that this will happen, however, the entire iPhone will shut down when the iPhone reaches the auto-shutdown power level. There is no way to turn that Off other that connecting the iPhone to power.

  • Creating dimension in OMB script with only 1 level and no hierarchy

    Hi all,
    I have created some dimensions in the OWB client, that map straight 1-on-1 to a table. Those dimensions have only 1 level 'TOTAL' and no hierarchies.
    I am trying to create those dimensions using an OMB script, but it seems that when I bind the dimension level to a table, it =expects= me also to bind hierarchy levels to the table! However I have (dont want/need) a hierarchy?!
    The error message is:
    OMB00001: Encountered DIMENSION_KEY at line: 1, column: 2309. Was expecting one of: <EOF>
    The OMB code I have is:
    IMPLEMENTED BY SYSTEM STAR \
    DIMENSION_KEY BOUND TO COLUMN 'DIM_CAUSE_KEY' \
    LEVEL 'TOTAL' BOUND TO TABLE 'DIM_CAUSE' \
    LEVEL_ATTRIBUTE 'DIM_CAUSE_KEY' OF LEVEL 'TOTAL' BOUND TO COLUMN 'DIM_CAUSE_KEY' \
    LEVEL_ATTRIBUTE ...
    LEVEL_ATTRIBUTE ...
    After the LEVEL_ATTRIBUTEs the statement ends, so I say nothing about any hierarchies.
    If anybody could give me a hint, that would be much appreciated!!
    Ed

    It is finally solved...
    The keyword "SYSTEM" in "IMPLEMENTED BY SYSTEM STAR" shoudn't be there...
    Unfortunately I was overlooking that in the oh-so-clear syntax diagram in the OWB API and Scripting Reference..... )-;
    Let's move on.
    Cheers,
    Ed

  • Product Hierarchy level 2 code and description details

    Hi BW Experts,
    In our report we want to display Material wise 'Product Hierarchy level 3 code and level 2 description.
    Here, we have loaded material master hierarchy data to BW but we are not able to get the level 3 code and level 2 desc.
    In R/3 side we can see product hierarchy level 3 code and level 2 description using transaction code.
    Could some one help me how do we get these details.
    Thanks in advance.
    mahantesh

    Folks,
    Any solution?
    Laks

  • Merchandise Hierarchy Level Code and Description to be displayed in report

    Hi Experts..
    I am working on a report that has to display the out put
    SITE | ARTICLE | VENDOR | Merchandise Hierarchy 1 Descrptn | Merchandise Hierachy 2 Descrptn| MC |MC Dscrptn| EAN | UOM|
    I had written a program and it is displaying all the above fields except Merchandise Hierarchy 1 and 2  Description. Can anyone help me to display those in output.
    MC Description also I've displayed by passing MATKL of MARA into CLASS of KLAH and CLINT to SWOR. Likewise any direct table is available for first two hierarchy group..  Since my comapny is using three Levels.  .. 1) MH1 2 ) MH2 3 ) MC.

    Try with function module "MERCHANDISE_GROUP_HIER_ART_SEL" or "MERCHANDISE_GROUP_HIER_SELECT"

  • HT5622 How do I change the Apple id against a certain telephone number?  I have two iPhones and wish to use a different Apple id for each and confused as to how I do this?

    How do I change the Apple id against a certain telephone number?  I have two iPhones and wish to use a different Apple id for each and confused as to how I do this?

    Create a new Apple ID for the second phone. If you are setting the phones up as new phone enter the ID you want to use on each phone.
    If both phones are already signed in to one Apple ID then use the settings app to change Apple IDs on one phone.
    Settings > iTunes and App Store > tap on the Apple ID > sign out > sign in with alternate Apple ID.
    Note that if you have downloaded apps with the original Apple ID on the phone with the new Apple ID, those apps will still be associated with the old Apple ID and will require the old ID and password in order to update them.

  • I want to know what's the conference call in community level and how to use it

    i want to know what's the conference call in community level and how to use it

    Welcome to Apple Support Communities
    Conference calls are got when you reach level 4. Sometimes, ASC hosts may do a conference call about something related to Apple Support Communities. You will be notified through mail or through the "Using Apple Support Communities" forum.
    The last community calls were only for level 6 and higher users, so it's possible that you don't get invited to any until you reach level 6

  • How to rename content type on web site level and underneath all the document libraries using powershell?

    Hello
    I wantto rename content type on web site level and underneath all the document libraries using powershell, please let me know how can do this?
    I saw this url
    http://suryapulipati.blogspot.in/2011/08/rename-content-type-name-in-list-using.html, but I want to change everything from Web Site, subsite and underneath document libraries. Because if you try to change on any on document library, it will be applicable
    for that document library, if you change on web level then underneath document libraries content type names not updated automatically.
    Please advise
    Avi

    Not sure with powershell.
    I could help you out with Server Side or Web Services though.
    Brandon James SharePoint Developer/Administrator

Maybe you are looking for

  • Drop-down menu becomes unselectable in Safari

    As of Lion (10.7), I have noticed from time-to-time, drop-down menus in Safari become stuck or uselectable. This is usually on dynamically generated pages where the values of the pull-down menu isn't part of a static HTML code (like a list of states)

  • Can't get Mini and Powerbook to share connection

    I have a Mini, running Leopard, and a Powerbook G4 running Tiger, and recently got high speed internet. I've never had high speed before, so I am REALLY new to this. I have modem that I plugged into my Airport Base Station and can get the signal on b

  • Store documents in 3rd party repository

    Hello. Is anyone familiar w/ storing documents (text, pdf, etc.) in a Filenet repository? Currently we have users storing docs in the ecc database (oracle). Since our company already has Filenet for other (non-SAP) document management I thought I cou

  • Hierarchy displays on Web but not on BeX

    Hi All, We have upgraded our system from BW 3.5 to BW 7.0. We are at a suport pack 9 now. Patch Level 44. BeX Version 3.5. Post Upgrade when we run any query which contains Hierarchy objects and try filtering them, we get an error message, "Operation

  • Some unknown stuff appears in my camera lens

    Hi guys, I have a problem with my camera lens. My camera lens seems to have something inside as whenever i used my camera, there's a purplish ray followed with a shadow appeared at the top right corner. It had been there since the first day I bought