Use of filter in my pivot table

Hi!!
I am using jdeveloper 11.1.1.5
I had created a read only ViewAdfVO.
Here s the querry
select
glal_plant "glgh_parent_group",
gacl_acct_type||glal_plant  "glgh_group",
DECODE(gacl_acct_type,'A','ASSETS','L','LIABILITIES','Q','EQUITY', 'R','REVENUE','E','EXPENSES') "description",
NULL "acct_id",
NULL "ACT",
null "glal_plant" ,
GACL_ACCT_TYPE,(gjh_jrnl_type||'-'||gjh_jrnl_no||'-'||gjh_jrnl_sfx) "jrnltypesfx",
(GAPB_LVL1||'-'||GAPB_LVL2||'-'||GAPB_LVL3||'-'||GAPB_LVL4||'-'||GAPB_ACCT) as periodicacct,gapb_debit_amt,gapb_credit_amt,gapb_year,gapb_period,fy_year
from gl_jrnl_hd,gl_acct_periodic_bal,gl_accts,gl_account_classes,gl_lvl_accounts,gl_jrnl_ln,fin_years
where  gapb_bu = GLAC_BU and GLAC_BU = GACL_BU and GACL_BU=GLAL_BU and gapb_bu = 'RJL'
and gjh_bu = gapb_bu and gjh_jrnl_no = gjl_jrnl_no and gjh_bu = gjl_bu and gjh_jrnl_type = gjl_jrnl_type and gjh_jrnl_sfx = gjl_jrnl_sfx
and GJL_ACCT = glal_acct and gapb_acct = glal_acct and GLAL_CL_ID = GLAC_CL_ID and glal_acct = glac_acct and GACL_ID = GLAC_CL_ID
and fy_year = gapb_yearIn this i need to use fy_year as a filter in my pivot table. But while i am using fy_year no data had been retrievied
pls verify the link if i am not clear
http://www.4shared.com/photo/yFJGryn0/E054.html

Hi,
does this help you?
http://docs.oracle.com/cd/E24382_01/web.1112/e16181/dv_crosstab.htm#BGBHAGGI
~Abhijit

Similar Messages

  • How to use a FILTER in a normal table in ABAP WEB DYNPRO

    Hi Experts,
    I need to Filter my table in UI using the 'onFilter' event,
    BUT I want the first row of the table to be my INPUTS  to do the filtering - JUST LIKE IN ALV TABLE,
    since i dont want to use an ALV table, i want the same to be done in a transparent table...

    Dear pramodh,
    Here u can achieve filter option in transparent table by creating a button(Toggle) in table.
    1.Now you need to apply filter in OnToggle event.
       wd_this->table_control->apply_filter( ).
    2.when the Filter button is pressed  IS_FILTER_ON attribute will turn ON and FILTER will be set.
       And Automatically the First row is set for INPUTS.
    The Following Code is required to get Handler for Table and also to SET FILTER.
    method WDDOMODIFYVIEW .
        DATA: wd_table TYPE REF TO cl_wd_table,
              w_is_filter_on TYPE wdy_boolean.
        wd_context->get_attribute( EXPORTING name = 'IS_FILTER_ON'
                                   IMPORTING value = w_is_filter_on ).
        wd_table ?= view->get_element(  '<give ur table ID>' ).
        wd_this->table_control ?= wd_table->_method_handler.
        IF w_is_filter_on = abap_true.
          wd_table->set_on_filter( 'FILTER' ).
        else.
          wd_table->set_on_filter( '' ).
        ENDIF.
    endmethod.
    I believe u know about Table Handler. And i can help if u need.
    Thanks & Regards,
    Rakesh Vanamala.

  • Using a macro for a pivot table

    Hi guys,
    I have read the question above and the answers provided in this thread. However, I am still struggling to record a Macro template with a Pivot Table. I am using a Mac and Excel 2011. 
    My steps involve the following:
    1) I import a CSV file
    2) I format the cells (time of day into 12:00 am format)
    3) I create a simple pivot table (time of day and the total site visits)
    4)I group the time of day and colour code the total site visits
    Now, this is where I get confused. Usually, I delete all the information so my cells remain empty, but remain with working macros. With the pivot table, I have deleted the pivot table and left it in its original state but nothing has worked yet.
    I have tried importing new data into my Macro template (with a pivot table) but I keep receiving the 1004 error, so I need to debug the code. Now I have no knowledge of VBA but I when I hit "debug", it says I need to delete/change some code (as
    you have done in the thread above). However, i never deleted any sheets (as the user did above) so, I don't know where I am going wrong.
    Any help would be most welcome. Below is the code that is appearing on my erroneous macro:
    Sub Macro5()
    ' Macro5 Macro
        Range("A8").Select
        Selection.NumberFormat = "[$-F400]h:mm:ss AM/PM"
        Selection.AutoFill Destination:=Range("A8:A175")
        Range("A8:A175").Select
        Range("A7:B175").Select
        Sheets.Add
        ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
            "Test 1.csv!R7C1:R175C2", Version:=xlPivotTableVersion14).CreatePivotTable _
            TableDestination:="Sheet1!R3C1", TableName:="PivotTable4", DefaultVersion _
            :=xlPivotTableVersion14
        Sheets("Sheet1").Select
        Cells(3, 1).Select
        ActiveSheet.PivotTables("PivotTable4").AddDataField ActiveSheet.PivotTables( _
            "PivotTable4").PivotFields("Sessions"), "Sum of Sessions", xlSum
        Range("A5").Select
        Selection.Group Start:=True, End:=True, Periods:=Array(False, False, True, _
            False, False, False, False)
        Range("B5:B28").Select
        Selection.FormatConditions.AddColorScale ColorScaleType:=3
        Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
        Selection.FormatConditions(1).ColorScaleCriteria(1).Type = _
            xlConditionValueLowestValue
        With Selection.FormatConditions(1).ColorScaleCriteria(1).FormatColor
            .Color = 7039480
            .TintAndShade = 0
        End With
        Selection.FormatConditions(1).ColorScaleCriteria(2).Type = _
            xlConditionValuePercentile
        Selection.FormatConditions(1).ColorScaleCriteria(2).Value = 50
        With Selection.FormatConditions(1).ColorScaleCriteria(2).FormatColor
            .Color = 8711167
            .TintAndShade = 0
        End With
        Selection.FormatConditions(1).ColorScaleCriteria(3).Type = _
            xlConditionValueHighestValue
        With Selection.FormatConditions(1).ColorScaleCriteria(3).FormatColor
            .Color = 8109667
            .TintAndShade = 0
        End With
        Selection.FormatConditions(1).ScopeType = xlSelectionScope
        Range("H14").Select
        Sheets("Test 1.csv").Select
        Sheets("Test 1.csv").Move Before:=Sheets(1)
        ActiveWindow.SmallScroll Down:=-598
        Range("A6").Select
    End Sub

    Hi,
    Base on my test in excel 2013, it works fine.
    You said your excel version is excel 2011, there isn’t that version of office.
    >> I keep receiving the 1004 error
    Does it has detail error message?
    >> it says I need to delete/change some code
    Could you provide the screenshot here?
    On the other hand, you may share a sample file on the OneDrive.
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Filter Pivot table data based on custom calculated item in obiee 11g

    Hi,
    I have requirement as below. Please provide your valuable suggestions
    Please note that "Diff" is the calculated item using the formula "$2-$1"
    Pivot table View:
    Sales ID 20120207 20120220 Diff
    1 0 0 0
    2 100 0 -100
    3 100 200 100
    4 100 100 0
    5 200 300 100
    6 0 0 0
    Requirement:
    1) Filter rows where measure for both Effective dates(20120207 & 20120220) is equal to 0
    2) filter rows where measure for effective date 20120220 is equal to 0 & measure for effective date 20120207 is not equal to 0
    3) filter rows where diff is equal to 0
    expected Output:
    Sales ID 20120207 20120220 Diff
    3 100 200 100
    5 200 300 100
    Please provide an workaround to implement in OBIEE 11.1.1.6.0
    Thanks
    Edited by: Nagendran Rajendran on Jul 19, 2012 11:42 AM
    Edited by: Nagendran Rajendran on Jul 19, 2012 11:54 AM

    Hi,
    Many thanks for your Response.
    Actually, I have only three columns in the *"Selected Columns"* Section of Answers and they are
    Opportunity Id Effective Date Current
    Effective Date is based on Dashboard Prompts with 2 Presentation Variables say Effective Start & End Date and that has been used in answers to have a Revenue Variation report for these 2 dates ONLY.
    So, As per my Requirement,
    1) I have created a Pivot table by having Opportunity ID in Rows Section, Effective Date in Columns Section and Current in Measures Section
    2) Created a Calculated Item for Revenue Difference using the formula $2-$1
    So, Everything worked fine so far.
    and Next Requirement is to filter the rows from the Pivot results which i have mentioned in the post and they are
    Pivot table View:_
    Sales ID 20120207 20120220 Diff
    1 0 0 0
    2 100 0 -100
    3 100 200 100
    4 100 100 0
    5 200 300 100
    6 0 0 0
    Requirement:_
    1) Filter rows where measure for both Effective dates(20120207 & 20120220) is equal to 0
    2) filter rows where measure for effective date 20120220 is equal to 0 & measure for effective date 20120207 is not equal to 0
    3) filter rows where diff is equal to 0
    expected Output:*
    Sales ID 20120207 20120220 Diff
    3 100 200 100
    5 200 300 100
    Please provide an workaround to implement in OBIEE 11.1.1.6.0
    Edited by: Nagendran Rajendran on Aug 8, 2012 4:53 PM

  • Guage and Pivot table uses in OBIEE

    Hello Folks,
    please help to understand what is PIVOT TABLE and GAUGE in OBIEE answers
    in what cases or scenario will this things be used.
    and what is CASE in OBIEE, where is it used and what is its use .
    thanks in advance
    KMR

    The pivot table view is an interactive view that allows you to rotate the rows, columns, and section headings to obtain different perspectives of the data. Pivot tables are navigable and drillable, and are especially useful for trend reports.
    Gauges are useful for showing performance against goals. Supported gauge types include dial, bar, and bulb-style gauges.
    CASE statement is used for conditions, usage is case when x=y dothis end.. Its like IF statement in programming.
    - Madan

  • Using An Array Formula within a Pivot Table

    Hello Everyone!
    I've discovered a problem with using the Pivot Table. I wish to add this array formula for Counting Distinct names into a Pivot Table, but within Power Query for Excel 2013, it won't allow me to add an array formula. I need to use slicers for filtering city
    names which I'm not able to with this new restriction. 
    For example, suppose I wish to get (using a slicer) a distinct count of city names in a particular year using the year slicer. I cannot do this as I am not allowed to use array formulas within the Pivot Table which contains names of cities according to years.
    If I use the array formula for counting distinct city names outside the Pivot Table, then I won't be able to use the year slicer in order to get a distinct count of names of cities.
    Is there a way around this problem and how may I be able to resolve it ??
    Appreciate your help. Thanks.
    The problem with being punctual is, there's nobody there to appreciate it !!!

    Hello Everyone!
    I've discovered a problem with using a Pivot Table. I wish to add an array formula for Counting Distinct names into a Pivot Table, but within Power Query for Excel 2013, it won't allow me to add an array formula. I need to use slicers for filtering city names
    which I'm not able to with this new restriction. 
    For example, suppose I wish to get (using a slicer) a distinct count of city names in a particular year using the year slicer. I cannot do this as I am not allowed to use array formulas within the Pivot Table which contains names of cities according to years.
    If I use the array formula for counting distinct city names outside the Pivot Table, then I won't be able to use the year slicer in order to get a distinct count of names of cities.
    Is there a way around this problem and how may I be able to resolve it ??
    Appreciate your help. Thanks.
    The problem with being punctual is, there's nobody there to appreciate it !!!

  • Implicit Aggregate in pivot table ?

    I am using Excel to query an OLAP SSAS cube. Without any filter, the pivot table I have is: 
    Values
    SCM Lines Count
    94741
    OTR_Net
    87.28%
    OTD_Net
    95.00%
    I need to consolidate these metrics on the first complete months of the year. So I create a named set. The corresponding code in the MDX query that Excel generates is:
    SET [YTD] as VisualTotals({[Delivery Date].[Period Hiearchy].[All],YTD(StrToMember("[Delivery Date].[Period Hiearchy].[Month].&"+
    FORMAT(Now(),"[yyyyMM01]")+ ".PrevMember"))})
    When I drag and drop this set to the columns area of the pivot table, I get this:
    Values
    2014-01
    2014-02
    Grand Total
    SCM Lines Count
    3715
    3608
    7323
    OTR_Net
    81.77%
    84.77%
    83.24%
    OTD_Net
    91.66%
    94.33%
    92.97%
    So far so good, but I would like to remove the months and only keep the Grand Total. But you cannot move a set to the page filter area, so I tried the following workaround with the add-in "OLAP Pivot table extensions": I remove the set from the
    columns area (the result changes back to the first table above), and add a calculated metric:
    [Measures].[YTDCount] AS Aggregate([YTD],[Measures].[SCM Lines Count])
    And - surprise -, I get the result below: The other metrics are also filtered on the [YTD] set, even though it is not explicitly set as a filter in the pivot table.
    Values
    SCM Lines Count
    7323
    OTR_Net
    83.24%
    OTD_Net
    92.97%
    YTDCount
    14646
    The final MDX query is:
    WITH
    SET [YTD] as VisualTotals({[Delivery Date].[Period Hiearchy].[All],YTD(StrToMember("[Delivery Date].[Period Hiearchy].[Month].&"+
    FORMAT(Now(),"[yyyyMM01]")+ ".PrevMember"))})
    MEMBER [Measures].[YTDCount] as AGGREGATE([YTD],[Measures].[SCM Lines Count])
    SELECT {[Measures].[SCM Lines Count],[Measures].[OTR_Net],[Measures].[OTD_Net]} DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME ON COLUMNS FROM [METRICS] CELL PROPERTIES VALUE, FORMAT_STRING, LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS
    Even if I unselect my custom metric YTDCount (which gives twice the correct result btw), the result for the other metrics remains unchanged. The final pivot table is indeed what I wanted, but I do not want to use what seems a dirty hidden trick.
    Can anyone explain why the custom metrics also impacts other measures ?
    Would anyone have a proposal for a set definition that would generates either only one column or a hierarchy where I could hide the month level. ?
    <object height="1" id="plugin0" style=";z-index:1000;" type="application/x-dgnria" width="1"><param name="tabId" value="{D6D21951-03EF-4DE5-AA00-FEF24C66552F}" /></object>

    I finally found the answer: create a calculated member instead of a Named set. I had not realized that it could also be done with the add-in.
    In the pivot table, I have dragged the Delivery date dimension to the page filter area. I can then select the member "YTD", and get exactly what I wanted.

  • Pivot Table Q

    Can you use a column in a pivot table that you don't use to filter on?

    Hi u can see it in pivot table.
    please drag and drop the column on which u want to see the results . that should be placed above the SUM field, not in measures.
    even u can see chart and pivot results at same time.
    kapil.

  • Calculated item in pivot table - OBIEE 11g

    Hi,
    I need to display only the calculated items in my pivot table and I want to hide the other members. I am using OBIEE 11.1.1.5.0.
    Is it possible to have different selection steps for different views.
    Please help.
    Thanks,
    Prabhu S.

    Hi Dhar,
    Thanks for your answer. I want to use section wise display in pivot table and need to show only the calculated members in the sections.
    I need to hide other values of the particular section column.
    Thanks,
    Prabhu S.

  • Pivot table total on a computed column not showing when using a filter

    I have this strange issue. I will try to explain.
    I have three columns in my report - Delivered Qty, Opened Quantity, and the third one is computed that is (Delivered Qty - Opened Qty). The data is displayed in a table by quarter. So basically I have Quarter, Delivered Qty, Open Qty, Not Opened Qty. I also have the total row. A pie chart shows the opened vs. un-opened quantities. It all works fine.
    The issue is when I add a prompt and the corresponding filter, the total for the computed field is blank. This happens whether it is pivot table or a regular table. That causes the pie chart to show 100% for the Opened qty.
    When I remove the filter, it works again. I can see the total for the computed field and the pie chart looks great.
    Can anyone please help me? I have a number of hours trying to play around with this and also looked in the forum to see if any one might have already discussed similar issue in the past. I could not find any.
    Thanks.

    I found the issue with my table total not showing up. Basically the new materialized view had its own data table alias. However, in the filter I was using date columns from different date table alias (copy and paste problem). As soon as I changed to the right date columns from the associated alias table, the row total showed up.
    Thanks anyways for your support.

  • SSAS Default Member Causing incorrect data in Excel Pivot Table using Multi-select in filter

    I have an Excel 2013 pivot table connected to an SSAS (2012) cube. One of my dimensions has a default member specified. When I drop this dimension in the filter area of my pivot table and select multiple members including the default member then
    only data for the default member is shown. Selecting multiple members where the default member is not included does not result in an issue.
    I believe this may be in an issue in how Excel builds the MDX but wanted to see if there are any work arounds.
    This issue can be recreated using AdvetureWorks using the following steps:
    Alter the Product Dimension of the SSAS Default Member by setting the default member of the Product Line Attribute to Mountain: [Product].[Product Line]&[M] 
    Process the cube
    Connect to the cube via Excel 2013
    Drag internet gross profit to the Values area (The value will be 4700437.22 which reflects the Mountain default filter)
    Drag Product Model Lines to the Filters area (you will see Mountain selected by default)
    Change the filter by checking the Select Multiple Items checkbox and checking Mountain and Road (You will see that the amount does not change)
    Change the filter again by selecting Road only (to demonstrate that Road has a value, 5602105.8, associated with it)
    Change the filter again to select Road and Touring (to demonstrate that the correct aggregation of the two selected members is preformed)

    Hi Hirmando,
    According to your description, the default member cause incorrect data when dragging a attribute that contain a default member to the FILTERS area, right?
    I can reproduce this issue on my environment, when dropping this dimension in the filter area of my pivot table and select multiple members including the default member then only data for the default member is shown. Currently, it's hard to say the root
    reason that cause this issue. In order to narrow down this issue, please apply the latest server pack and cumulative update.
    Besides, you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback So that microsoft will confirm if this is a know issue.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • How use "All Values" in the pages of pivot tables

    Hi everyone,
    I’m using Oracle Bi Answers and I have the following problem:
    I’m doing reports based in a datamart with 2 fact table each with about 28 Million records per month and with a medium of 14 dimensions.
    The users want to have the choice to select 5 parameters for example (region, district, type of product, month of analysis, subtype of product) where they can select an individual option as well as select an “all values” option. They want this for all the parameters.
    We are having problems doing this without having the report to timeout.
    Approaches used
    We are trying to do this by using pivot tables and combo boxes in the reports (one for each parameter). The combos are in the pages area.
    We are trying to do a calculated item with Sum(*) to have a “ALL Values” in the combo box but this makes the report extremely slow.
    We also tried to do Sum in the pages section of the pivot table but it only displays the “All pages value” of the first combo box.
    So actually I don’t know what to try. Can you help me with the best way to do this?
    Thanks
    Edited by: user8727081 on Sep 28, 2009 2:45 AM

    Hi,
    I had the same problem, and I solved it using the dashboard prompts.
    But sometimes users are not happy. I explaine why.
    Suppose a dimension Nation:
    Italy, Germany, UK, France, USA
    1) I create a report with sales quantity.
    2) Report has a filter --> "nation" = is prompted
    3) I create a dashboard prompt "Nations" based on dimension Nation with All Values
    4) I publish the report in a dashboard with the dashboard prompt "Nations"
    When user choose the nation from the prompt, all nations are displayed, also if I have NO sales for some of these.
    My goal: only nations with sales must be shown
    Thanks
    Enrico

  • How do I filter on multiple values / labels within a Pivot Table which points to a Power Pivot Model

    Hi,
    How do I filter on multiple values / labels within a large data set within a Pivot Table which points to a Power Pivot Model. I am current using Excel 2010 64 bit. I intend to empower users to achieve this by simply using the Excel user interface, not by
    using Excel formula or DAX. Please find the attached screen shot as a worked example, also in my real life example not all the values are available in the drop down. You can't use a slicer for the same reason as you can't use a drop down. I guess what I was
    hoping for is for the user to be able to enter AND or OR within the associated dialog box. Is there any way around this?
    Kind Regards,
    Kieran.
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

    Hi
    This is the forum to discuss questions about Microsoft Excel develop (VBA, Automation). For your question is more about pivot table features  for Excel, I will move
    this thread to the TechNet forum for Excel.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share
    their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Limit a Pivot Table filter to just one group (Excel 2010)

    I use Excel 2010 and want to apply a filter to just one group of data within a Pivot Table.
    It appears that filters are applied to the entire Pivot table; is there a way to limit the scope of a filter so it is applied to just a single group of data (grouped using the group function within a Pivot). Alternatively could I apply a filter to just a
    selection of rows within the Pivot?
    I have tried breaking my pivot into separate tables and applying the filters individually but the tables interfere with each other when expanded/collapsed and generate the Excel "overlapping tables" error message.
    Any suggestions gratefully received.
    Regards
    Pete

    just use filter is no possible that apply a filter to one group. maybe slicers is a good choose.
    http://office.microsoft.com/en-us/excel-help/use-slicers-to-filter-pivottable-data-HA010359466.aspx
    KR

  • 2007 Controlling Multiple Pivot Tables with One Filter

    Hello there,
    I'm trying to update two pivot tables using one filter. The different VBA solutions I've tried haven't worked so I'm hoping this community can answer my question.
    I have two pivot tables; they have basically the same information, just two different sets of data; one is orders that are Complete, the other is orders that are Incomplete.
    When I change the filters on the Complete pivot table, I'd like the Incomplete pivot table to filter the same way.
    Any help is appreciate. Thanks!

    The easiest way would be to setup your 2 pivots and turn on the Macro Recorder then go through the steps you want to perform.  The recorder will generate all the code you need.  I just did this exercise and got this . . .
    Sub Macro1()
    ActiveSheet.PivotTables("PivotTable1").PivotFields("PARTY").CurrentPage = _
    "(All)"
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("PARTY")
    .PivotItems("DEMOCRAT").Visible = False
    .PivotItems("REPUBLICAN").Visible = True
    End With
    Range("F1").Select
    ActiveSheet.PivotTables("PivotTable3").PivotFields("PARTY").CurrentPage = _
    "(All)"
    With ActiveSheet.PivotTables("PivotTable3").PivotFields("PARTY")
    .PivotItems("DEMOCRAT").Visible = True
    .PivotItems("REPUBLICAN").Visible = False
    End With
    End Sub
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

Maybe you are looking for

  • Lion takes 15 seconds to log in after reboot on Macbook Pro 13" (early 2011)

    I have been having sluggish performance (repeated beachballs, etc.) on my Macbook Pro 13-inch (2.7 GHz Intel Core i7, 4 GB RAM), which I bought this summer pre-installed with Lion. I didn't migrate my old system, I just installed everything on my new

  • I cant get my PDF and Excel files to open on my iphone  help!

    Has any one had problems opening a pdf file or excel file in the ISO5 platform, if so how did you fix it

  • Question about - doing quotation of SAP material

    Hello, I am interested in keeping up our rules, and I want to show with my  behavior a good example to others. So my question is: Am I allowed to  post a screenshot of a pichture from SAP training material. I will wirte down the correct quotation. Ex

  • Family Share question

    i I have sent two invites to my children and it says safari can not open invite bc it is an invalid address, not sure what to do.  Also currently we use one account am I understanding correct that I will need to set them both up Apple ID's to use fam

  • Role to Group Assignments

    Dear Portal Gurus, We are on EP 6.0 SP12. We have ADS against which we authenticate EP users. There is a group in ADS called (say) GRP_ESS We have assigned all ESS users to that group inside ADS. Now I want to assign the EP role (say)  "ESS" to that