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

Similar Messages

  • 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

  • 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/

  • PO delivery date field to be made display for all users except one user

    Hi All,
    I have a specific requirement:
    The delivery date field in PO should be made display only at the time of changing the PO. I know pretty well that this can be achieved thru Define Screen Layout at document level, which inturn will make this field disaply mode to all users.
    But it should be in changeable mode only for one user. how can we achieve this.
    Any ideas, please
    /R
    Antony

    Hi ,
    You can create a authorization object(Z one) which can be assigned to the user id who need authorization of change .
    In the exit , you can specify the logic that if SY-USER (current user) has the authorization id , the system will allow to change . If the user doesn't have the object in his roles , the system would not allow to change .
    This will help in providing / removing access to any user id .
    Regards,
    Hari.

  • Need Standared report for Open Sales order for all customers

    VA05 is not useful as it gives this list for individual customers.
    We need to see a list of all open orders for asll customers in one report only.
    Thanx in advance.

    Hello,
      did you try with transaction SDO1 - Orders Within Time Period? If it doesn't fit your requirements I suggest you to create a query.
    Best regards,
    Andrea

  • Specify filter for every request except one

    Can a in me web.xml file specify that a filter should be used for every request except one.
    I can write;
    <filter-mapping>
         <filter-name>MyFilter</filter-name>     
         <url-pattern>/*</url-pattern>
    </filter-mapping>
    to use it on every request. But how do I exclude one specific resource that shouldn't go though the filter.
    I know that this may not be exactly the right forum but i'm really lost. I appreciate all suggestion.
    Thanks / Daniel

    This is the right forum, but unforutanetly you cannot exclude some urls.
    I would suggest you handle that logic in the filter itself.

  • 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

  • XL Reporter- Report by Sales Rep show the same sales rep for all customers.

    Hi,
    When creating a report using XL reporter, Sales report by Item detail for all customers with selection by Sale rep ( expression) parameter, the report shows the name of the first selected sales rep name all through the report.
    Please comment if there is any way to avoid this error.
    Regards.

    Thanks for the reply!
    No, Since this is a sales by item detail report, we have already grouped it by Brand....
    We do not want the report to be seen grouped by Sales rep, as that would group all transactions under different brands under one group.....
    Regards

  • Strange JButton appearance for all LAFs except Windows

    It took me a while to figure out how to repeat this problem, but I finally did. I have a simple BoxLayout container in a JFrame, and with Windows Look and Feel it looks as expected. With any other LAF on my system (Metal, Windows Classic, CDE/Motif) all buttons except one are displayed as if their insets are null. The button border is confined very close to the button text. Calling setSize() on the button doesn't make any difference.
    What makes it strange is that I can't see why one button is displayed properly. And even stranger is the fact that it's not the button position that determines which one looks correct. Take a look at the test code below, which is a stripped down executable extract of my program. The JButton object "settings" is always displayed correctly, even If you re-arrange the arguments to the cbButtonPanel.add() methods so that "settings" is in a different position. I can't see anything different about how settings is defined or configured compared to the other buttons. I even gave them the same button text to eliminate that as the source of the difference.
    If you run the test code with no program argument, it will default to Windows Look and Feel, and the buttons will look as I intended them to. But enter a LAF name for the argument (See the names provided on the console when you run the program) other than Windows and you'll see that all but one button are not displayed properly. (Note that for any multi-word LAF name, e.g. Windows Classic, you need to enclose the argument in quotes.)
    The code seems to be a straightforward implementation of a BoxLayout managed container, as documented in the javadocs and the tutorial. Am I doing something wrong that Windows LAF lets me get away with?
    import java.awt.Container;
    import java.awt.Dimension;
    import java.util.HashMap;
    import javax.swing.BorderFactory;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.UIManager.LookAndFeelInfo;
    import javax.swing.border.Border;
    public class RcbGuiTest{
         JFrame frame = null;
         int width;
         int height;
         JTextField fileSelect = null;
         JPanel cbButtonPanel;
         JButton sendFile = null;
         JButton copyCBToCB = null;
         JButton copyCBToFile = null;
         JButton settings = null;
         JButton restart = null;
         JMenuBar menuBar;
         JMenu helpMenu;
         JMenuItem about;
         JMenuItem help;
         JMenuItem readme;
         JMenuItem rcbWeb;
         HashMap lafMap = new HashMap();
         String lafName = "";
         public static void main(String[] args){
              if (args.length == 0){
                   args = new String[]{"Windows"};
              final RcbGuiTest test = new RcbGuiTest(args[0]);
              SwingUtilities.invokeLater(new Runnable(){
                   public void run(){
                        test.createAndShowGUI();
         public RcbGuiTest(String lafName){
              this.lafName = lafName;
         public void createAndShowGUI(){
              Border raisedBevel =  BorderFactory.createRaisedBevelBorder();
              frame = new JFrame("RCB Control Panel");
              //set up menu items
              menuBar = new JMenuBar();
              helpMenu = new JMenu("Help");
              about = new JMenuItem("About RCB");
              help = new JMenuItem("RCB Help");
              readme = new JMenuItem("Readme File");
              rcbWeb = new JMenuItem("RCB on the Web");
              helpMenu.add(about);
              helpMenu.add(help);
              helpMenu.add(readme);
              helpMenu.add(rcbWeb);
              menuBar.add(helpMenu);
              frame.setJMenuBar(menuBar);
              Container contentPane = frame.getContentPane();
              JLabel fileSelectLabel = new JLabel(
                        "Enter file name, select files, or drag and drop files");
              fileSelect = new JTextField(30);
              fileSelect.setMinimumSize(new Dimension(250,20));
              fileSelect.setSize(new Dimension(250,20));
              sendFile = new JButton("Button");
              sendFile.setMinimumSize(new Dimension(120,25));
              sendFile.setSize(new Dimension(120,25));
              JButton selectFile = new JButton("Button");
              copyCBToCB = new JButton("Button");
              copyCBToFile = new JButton("Button");
              settings = new JButton("Button");
              restart = new JButton("Button");
              sendFile.setBorder(raisedBevel);
              selectFile.setBorder(raisedBevel);
              copyCBToCB.setBorder(raisedBevel);
              copyCBToFile.setBorder(raisedBevel);
              restart.setBorder(raisedBevel);
              JPanel labelPanel = new JPanel();
              labelPanel.setLayout(new BoxLayout(labelPanel,BoxLayout.X_AXIS));
              labelPanel.add(Box.createRigidArea(new Dimension(5,20)));
              labelPanel.add(fileSelectLabel);
              labelPanel.add(Box.createHorizontalGlue());
              JPanel fieldPanel = new JPanel();
              fieldPanel.setLayout(new BoxLayout(fieldPanel, BoxLayout.X_AXIS));
              fieldPanel.add(Box.createRigidArea(new Dimension(5,20)));
              fieldPanel.add(fileSelect);
              fieldPanel.add(Box.createRigidArea(new Dimension(5,20)));
              JPanel fileButtonPanel = new JPanel();
              fileButtonPanel.setLayout(new BoxLayout(fileButtonPanel, BoxLayout.X_AXIS));
              fileButtonPanel.add(Box.createRigidArea(new Dimension(5,0)));
              fileButtonPanel.add(sendFile);
              fileButtonPanel.add(Box.createRigidArea(new Dimension(5,0)));
              fileButtonPanel.add(selectFile);
              fileButtonPanel.add(Box.createRigidArea(new Dimension(5,0)));
              fileButtonPanel.add(restart);
              fileButtonPanel.add(Box.createHorizontalGlue());
              cbButtonPanel = new JPanel();
              cbButtonPanel.setLayout(new BoxLayout(cbButtonPanel, BoxLayout.X_AXIS));
              cbButtonPanel.add(Box.createRigidArea(new Dimension(5,0)));
              cbButtonPanel.add(copyCBToCB);
              cbButtonPanel.add(Box.createRigidArea(new Dimension(5,0)));
              cbButtonPanel.add(settings);
              cbButtonPanel.add(Box.createRigidArea(new Dimension(5,0)));
              cbButtonPanel.add(copyCBToFile);
              cbButtonPanel.add(Box.createHorizontalGlue());
              contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
              contentPane.add(Box.createRigidArea(new Dimension(0,5)));
              contentPane.add(labelPanel);
              contentPane.add(Box.createRigidArea(new Dimension(0,5)));
              contentPane.add(fieldPanel);
              contentPane.add(Box.createRigidArea(new Dimension(0,5)));
              contentPane.add(fileButtonPanel);
              contentPane.add(Box.createRigidArea(new Dimension(0,5)));
              contentPane.add(cbButtonPanel);
              contentPane.add(Box.createRigidArea(new Dimension(0,5)));
              width = 320;
              height = 180;
              fileSelect.setMaximumSize(new Dimension(width,20));
              frame.setMinimumSize(new Dimension(width, height));
              frame.setResizable(false);
              LookAndFeelInfo[] laf = UIManager.getInstalledLookAndFeels();
              for (int i= 0; i<laf.length; i++){
                   System.out.println("LAF Name: " + laf.getName());
                   lafMap.put(laf[i].getName(), laf[i].getClassName());
              String lafClassName = "";
              try {
                   UIManager.setLookAndFeel( lafClassName = (String)lafMap.get(lafName));
                   System.out.println("Using Look and Feel " + lafName + "\tclass name: " + lafClassName);
              } catch (ClassNotFoundException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
              } catch (InstantiationException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
              } catch (IllegalAccessException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
              } catch (UnsupportedLookAndFeelException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
              SwingUtilities.updateComponentTreeUI(frame);
              frame.setVisible(true);

    The problem turned out to be the setBorder() invocations I was making on the JButtons. This was left over from when I originally used a null layout manager, and the setBounds() calls were making the buttons appear at their desired size. The clue came when I discovered that I was setting the border on all buttons except settings, the one that was behaving properly. Why it behaved as expected with Windows LAF I have no idea.

  • 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

  • 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 do I set Firefox to be usable for all users on one computer?

    How do I set Firefox to be usable for all users on one computer?

    I would think the about:config entries discussed are ex-factory set to values each user has to change individually, after the installation has run its course. The solution could be to have patched files ready to install post factum:
    [https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/A_brief_guide_to_Mozilla_preferences A Brief Guide to Mozilla Preferences - MDN]

  • WRT110 works for every website except ONE after login, help please

    I have a WRT110 version 1.0
    It works for every website, except one. And it works for that one website just fine, until I login. When I enter my username/password it accepts it then redirects me to the companies landing page. I can see that because the URL loading changes and it shows the Title in the page which indicates it connected, but then it just sits there 'loading', in the status bar I see the message: "Waiting for tools.domain.com... to load" or something like that. and it takes like 5 to 10 minutes, no joke, then it loads.
    If I connect my computer directly to the modem and bypass the router, then it loads just fine, very fast like everything else.
    But then when I re-connect my router and refresh the page, it does it again, takes forever, but I can instanly see the title of the page in the title bar.
    It works on every computer that I connect trough the mobile hotspot on my 4G verizon phone. but if it is through the router, every computer takes 5 to 10 minutes. Literrally.
    Anyone have this happen to them? If so, how did you fix it?
    Thanks,
    Richard

    Try the following settings:
    # Open up the browser on the desktop and on the address bar type 192.168.1.1 that will open up the Router setup page…
    # Lower the MTU (Maximum Transmission Unit) from 1500 to 1400 or less (usually found on your router's main/ basic setup page)
    # Then click on Security tab disable SPI Firewall Protection, uncheck Filter Anonymous Internet Requests...
    Now check the connectivity status.

  • Is verizon waiving fees for all customers affected by hurricane sandy?

    is verizon waiving fees for all customers affected by hurricane sandy?

    http://news.verizonwireless.com/news/2012/11/pr2012-11-04a.html
    http://news.verizonwireless.com/news/2012/11/pr2012-11-05.html
    http://news.verizonwireless.com/news/2012/11/pr2012-11-04.html
    You should check out any other press releases for additional information about the recovery of the Verizon Wireless network after Hurricane Sandy.

  • 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

Maybe you are looking for