Need all members except one

We need a report in FRS 11.1.2.1 (for planning app) with all account members except one member (say XYZ), this dim is in page dim. Since we want the report to be dynamic, we tried few things:
1. Tried using All Accounts AND NOT XYZ
2. Created a UDA with all account members except XYZ. Used UDA in the report and it does not show up the right result. It shows only one page for each account.
Any suggestions will be helpful either in any of the above options or something new.
Thanks

Hi
What exactly is the requirement? Do you want a total of all accounts excluding one or do you want to display all accounts excluding one?
What you are describing with the Page dimension is the way that the page is intended to work. If you want:
1. Subtotal of all accounts except one
a. Either add this member as a dyn calc member in the outline and call it directly or
b. Call the overall total and the account you wish to exclude and use a formula in the report to subtract one from the other
2. Display all accounts except one
a. Move what you have on the page of the report into rows (I suspect it may be too large to fit in columns)
Hope this helps
Stuart

Similar Messages

  • Question about import all tables except one

    I have exported all tables for a user. While importing I want to import all tables except one table whose name I know. How do I do this? Example: If I have tables: Employee, address, salary that I have exported. While importing I want to import only Employee and address. How do I do this. The database I have exported contains over 20 tables.

    I don't think it is possible at all, you just need to explicitly specify all the tables.
    If you really don't want to include the single table, then you can import all the tables and drop the desired one.
    hare krishna
    Alok

  • Block all URL except one or two in WRSV4400N

    Hi,
         I have a WRSV4400N router and I need to block all URL except one or two. Can I do it with or whitout TrendMicro ProtectLink??
    Thank you

    Hi Axondigital,
    Your english is very good.  I did say "check and see"  in my earlier post and not here is a solution.
    To answer your original question , the answer is NO.
    URL filtering is a limitation you will find in a product like the WRVS4400N, but you will not find that limitation in the new and more powerful SA520 which has an URL allowed and blocked list.
    My advice would be, evaluate trendmico protectlink if you wish and see what you think.  send a email to the following address to get a evaluation license;
    [email protected]
    But try a SA500,  if that customer  really needs a low cost, but capable router that requires URL allowed list.
    regards Dave

  • How to  extracting data in all objects except one object?

    hi experts,
    when we are trying extracting(load) data, it should be updated in all objects except one object,what is the procedure, pl anybody can explain step by step procedure.
    thanks & regards
    vijay

    Hi vijay
    By object do you mean infoObject ?..if it is then you can set no update in update rule and do not map in transfer rule...
    Thanks
    Tripple k

  • Moved some Crystal Reports from 8.5 to 10. They all work except one.

    Moved some Crystal Reports from 8.5 to 10. They all work except one.
    The report runs, then stops.
    It brings up the Formula Workshop - Format Formula Editor - Suppress (No Drill-Down)
    Highlights one of the Formula Fields, which is in used as part of record selection, then stops

    Go to [http://service.sap.com]
    In that go to SAP Support Portal ->Help & support tab ->Report a Product Error
    You would have to supply Customer number and User ID and it would allow you to create a case (incident).
    You can also call on our CIC numbers if you face any issues and they would be able assist you in creating an Incident.
    Americas : 1 866 8907686 (toll-free)
    support.bosapamerica@ sap.com (Remove the space)
    APJ: 1800 613459 (toll-free)
    support.bosapasia@ sap.com
    EMEA: 08081012181 (toll-free)
    support.bosapemea@ sap.com
    Hope that helps!!
    Regards,
    Shweta

  • Sophos Endpoint security: Block all websites except one

    I've been trying to find out how to block all websites except one, in an end user, by creating a policy in the Sophos Enterprise Console. I can see an option - Full web control but it requires an appliance. My question is, it is possible block all websites except one with Sophos? I appreciate if anybody knows, and can tell me how. I have downloaded the trial version of Sophos. If it's possible, I'll try Sophos ES for a year, for the end users and servers. 
    This topic first appeared in the Spiceworks Community

    Team Folder in the past was managed by administrators. Administrator can create, edit, delete team folders. The team folder can be published to a group of users, including Active Directory group. It is very convenient to share files and folders with a group of users in the same team. As team groups bigger, it may not be convenient for administrator to manage all the team folders. So it makes sense for administrator to assign some users to be able to manage team folder that they own themselves. Role Manager It usually starts with the role manager by creating a role with Add/Edit/Delete permissions and assign it to users or Active Directory groups. Manage Team Folder The user who are in the private team folder role will be able to manage team folders without seeing all the team folders from everyone. Here is a YouTube Video about...

  • How to hide all button except one in a PageButtonBar

    Hello,
    I am newbie to OAF.
    And i am trying to do is, when i would clink on a submit button of my Update page(page is using Train. All the buttons are in a TrainFooter Region, whose lay out is pageButtonBar and Submit button only visible when i am on the last page of train, i.e. Summary Page) then all the button except one (Back to Search Page) will get hide.
    Pls let me know where i need to work to do this, i try to do it in PR but no change get reflect.
    Thanks,
    Udit

    Hello Abdul,
    Yes, i want only "Back to Search" Button on last page when i press "Submit" Button.....but before pressing submit...all button should be there on Summary(last) page except "Back to Search" Button....and when i press Submit Button then only page buttons get hide without any change in whole pageLayout.
    Here is CO of my TrainFooter===========
    PR====
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OATrainBean trainBean=
    (OATrainBean)pageContext.getPageLayoutBean().getLocation();
    trainBean.prepareForRendering(pageContext);
    int step = trainBean.getSelectedTrainStepRenderedIndex();
    if(step + 1 != trainBean.getNumberOfRenderedTrainSteps()){
    OASubmitButtonBean submitButton =
    (OASubmitButtonBean)webBean.findIndexedChildRecursive("Submit");
    submitButton.setRendered(false);
    PFR==========
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    if (pageContext.getParameter("Cancel") != null)
    pageContext.forwardImmediately("OA.jsp?page=/oracle/apps/ak/Emptry/webui/EmpTrySearchPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    if(pageContext.getParameter("Submit") != null){
    am.getOADBTransaction().commit();
    throw new OAException ("Current Record is Updated!!", OAException.CONFIRMATION);
    Pls let me know in any other confirmation.
    Thanks,
    Udit

  • Setup write access for all descendants except one

    Hi,
    I'd like to give a write access to all descendants of a member, except one.
    I thought I could simply give WRITE too all descendants, and set a NONE on the member I didn't want to give access.
    That should work according to the Planning documentation :
    Inheriting Access Permissions
    Inheritance may determine the user or group’s access permissions. You can specify an attribute
    that causes the children or descendants of that member to inherit its access permissions. Access
    permissions assigned to members take precedence over inherited access permissions. You can
    include or exclude the member from the access permissions setting.
    However, after I set it up this way, the inherited WRITE takes precedence over the NONE set up on the member.
    Am I facing a bug, or is there an error in the documentation, or am I really missing something ?
    I am working with 11.1.2.1, EPMA application.
    Thanks,
    JM

    If you set write accesss to descendants and then set none to one of the members then the none access should take precedence.
    This statement should be true "Access permissions assigned to members take precedence over inherited access permissions."
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Export all tables except one table

    i have db with more than one user
    i need to export all tables in DB except one table

    Hi..
    As you are on 10g , use EXPDP with EXCLUDE parameter
    [http://www.oracle-base.com/articles/10g/OracleDataPump10g.php]
    HTH
    Anand
    Edited by: Anand... on Mar 26, 2009 9:54 PM
    Edited by: Anand... on Mar 26, 2009 9:59 PM

  • From external: block all domains except one MAPPINGS file?

    Here's the problem...
    I have an old domain that my mailserver is still authoritive for. We receive mail through a mail ISP cluster, in that sense that our internal mailserver does not have any MX-records associated with it. All MX-records point to the ISP.
    We have recently changed domain name because of a merger.
    I am still rewriting all RCPT TO: [user]@olddomain.com to RCPT TO: [user]@newdomain.com in imta config.
    I now want to end that rewriting using the mappings file for all except but one domain.
    So the end result should be:
    MAIL FROM: all domains -> [user]@olddomain.com REJECT $Netc......
    but!
    MAIL FROM: specific domain -> [user]@olddomain.com should still be passed on to the IMTA.
    I have used SEND_ACCESS before as a method of blocking mail, but this is specific... I want to block the whole world except one originating domain (for the old domain)
    Does anyone have a working example of this and could you provide it for me?
    TIA
    Eli

    Jay :-)
    We have reinstalled iPlanet Messaging Server 5.2 on Windows Server using all new servername FQDN and all new domain hosting for.
    FQDN: mail.new-domain.local
    Mail authoritive for: new-domain.com
    Server is located on the LAN and gets it's mail from an ISP using mailkick.
    Server is actually not aware (neither in MX, nor in LDAP records) of the old domain.
    The only way the server gets it's mail is through smart-hosting. It just works and acts as a new server. Mail for the old-domain.com (organization) is accepted because I rewrite the domain part of the old-domain.com to new-domain.com
    old-domain.com $U%[email protected]
    Server accepts mail from all sending/origination domains only for the TO: new-domain.com it is authoritive for.
    Now here is the catch... I want to disable the TO: domain-rewriting, because people need to use the new-domain when addressing us.
    There is still only ONE organization out there that needs to address the old-domain.com because of X.509 encrypted mail. This is the only domain I will do rewriting for.
    Hence is why I was looking at the SEND_ACCESS
    It has some ways of blocking part of a sender or address part of a enveloppe based on wildcards etc....
    Yet only blocking....
    How do I block the whole world except that old organization we still do business with. Mail for the old domain is also delivered through the same mailkick by ISP.
    So if whole world -> [some user]@old-domain.com REJECT
    and
    single organization -> [some user]@old-domain.com ACCEPT and continue REWRITING
    Hope I shed a bit more light on the subject....
    Eli

  • How to diable delete button in PO for all users excepting one

    Dear All
    Please guide how to disable delete button in PO for all users excepting only one.
    Thanks

    Hi,
    check following link
    [Disable fields at item level in ME22N;
    [Disable Delete Button;
    Regards
    Kailas Ugale

  • Exclusion - For all customers, except one

    Is there a simple way to create exclusion for ALL customers, except XXXXX?
    There are approx 20,000 customers, across multiple Sales Orgs.
    Would like to exclude 100+ products from 19,999 customers
    Is there are way to set up products for only one customer to purchase?
    Listing will not work.
    Considering multiple levels of exclusion to get to the 1 customer, but searching for an easier method.
    Thanks.

    Hi Tom,
    I think Listing will work.
    What if you make a single material group for all 100+ products and create condition record in Listing for this material group and that particular customer ??
    I think it should work.
    Share your feedback
    Sagar

  • I synch my iPad, iPhone4 and MacBookPro iCal through ICloud. All calanders except one synch on my MacBook, although all others synch across all devices. Any clues?

    I synch my iPad, iPhone4 and MacBookPro through ICloud. All calanders on iCal, except one, synch on my MacBook, although all others synch across all devices. I receive the following error message "The request (CalDAVAccountRefreshQueueableOperation) for account “iCloud” failed." with no idea how to remedy.

    I've just noticed the same problem. My iCloud account had disappeared from the Calendar app. When I added it again, same error "The request (CalDAVAccountRefreshQueueableOperation) for account “iCloud” failed."

  • 2.1 SW update erased all contacts except one!

    I just updated to 2.1 and went to go call someone, only to find out that all of my contacts, except one, have been erased. The one that remained was one that I had edited previously today.

    This is supposed to happen! One of the features of the iphone is that when you change your contact account settings on the phone it deletes everything. Thats because in Apple world you dont store your contact on your phone they are only a copy...LOL Sorry but this is the truth.
    You would have been presented with a loverly waring saying "All contacts on your iPhone will be deleted if you proceed" guess you missed that one.....I know I did at least once while trying to sort his syncing mess out.
    Bad luck but next time sync first, make a backup then change your settings.
    Your contacts and calendar - if they are still on your PC/MAC - will appear soon though just be patient. If they are gone from your PC/MAC you are #$#@$@ stuffed.

  • IMessage works with all friends except one how come?

    Hi my iMessage works with most of my friends except one and there's is the same.  It doesn't work with me. Can anyone help with with this?

    Tell your friend to make sure they have imessages turned on. Settings, messages, turned on.

Maybe you are looking for

  • Dinamic Directory Path in Receiver File Adapter

    Hi everyone, I have a question for you. How can I give a dinamic path to the target directory in a file to file scenario? The scenario is like this: I have to take only certain files from a source directory. The names of the files are like 'S10048796

  • Purchase game icon problem

    I purchased game icon, it says some network problem, but money been charged from my bank account

  • Images are not displayed in Outlook 2010, Win 7 64 bit

    Dear Sirs, I ask for help! I can not manage to set the display of images in Outlook 2010. I tried everything suggested on this forum, but nothing helped me to solve the problem. It seems to me that the problem is in software. Any advice is welcome. T

  • Query required for the below result format:

    Table(DATA): Bank_id Device_type Status date Station_status                1011     N          Y     3/23/2012           DOWN 1011          N          Y     3/23/2012          up 1011          N          y     3/23/2012          up 1011          E   

  • Issue in Proxy service call

    Hi, The proxy service is getting called twice for invalid input.Its working fine for valid input.The logic i used is,checking the input file and calling an raise error action in case of validation fails.I gave retry count to 0.Is it possible to stop