Size info for User is 2x the sum of sizes of the folders. Why?

On a MBA running Yosemite, running out of storage space.
If I query the info for main User, Finder says it is 85GB.
If I query each of the folders in that User, they only add up to 35GB.
Clearly, those 50GB would be nice to have back.
Where might the "hidden" files be? 

Mystery solved! Still dragging along old backups from iOS devices long since forgotten. They can be removed from within the iTunes preferences. Once removed through iTunes, they immediately free up massive amounts of storage!

Similar Messages

  • How to get the groups info for user

    Hi guys i am new to ALUI..
    i am trying to do some enhancement.
    i want to know how to get the information of the users group and the group details using the IDK API?
    Can sombody share some code?

    Hello,
    You are welcome. Here is one way of get what you want:
    1) get all groups id's
    IPortletContext - >IRemoteSession -> IUserManager - > getCurrentUserGroups() -> int []
    2) get details about group
    IRemoteSession.getObjectManager(ObjectClass.UserGroup ) ->
    cycle over int []: {
    IObjectManager -> querySingleObject(comminity id) -> IObjectQueryRow -> getName()
    Because you are going to use PRC and make SOAP calls to portal don't forget setup WS to pass token to portlet (check WS settings)
    Edited by Bryazgin at 05/29/2008 7:48 PM

  • When I try installing Firefox 6.0 from the binary file, a box with "Run As" in the type field appears, which asks me for user name and password. Please advise about the course of action that I should take.

    Trying to run it as the current user, or as one from a different account(administrator in this case) also doesn't work.

    I think the client is not able to do a HTTP POST
    to the WLS server but it can do a HTTP GET.
    I dont know why.
    http://manojc.com
    "Ganesh" <[email protected]> wrote in message
    news:3eba91bc$[email protected]..
    >
    Hi,
    I deployed a rpc web service using WLS 7.0 SP2 in HP-UX 11 environment.When I
    invoke the web service through my browser (IE 6.0) using the web servicesurl,
    it brings my service method correctly. From there, if I click the invokebutton
    it asks me for a network user name and password under "weblogic" realm???If I
    provide the admin user credentials (which I supplied while creating mydomain)
    it is not accepting that it keeps popping up this network user passwordwindow
    over and over. Not sure which username/password I have to provide here tosee
    the result of my service.
    If I try to invoke the web service through my client (static) I am gettinga connection
    refused exception. I guess either way, I am not able to access my webservice.
    In the attached file, I have cut and pasted the client stack trace as wellas
    the server log trace from weblogic.
    Any ideas would be highly appreciated.
    Thanks,
    Ganesh

  • How to get the summed up total of the column?

    Hi BW gurus,
    i created a restricted keyfigure for amount,account#,0metype and for the corresponding 0metype and account# i am getting the amount for the fiscal period(12 months in column).
    i need to get the total for the amount for each fiscal period(columnwise total).
    If any more details needed plz reply me.
    Help is highly appreciated.
    Thanks in advance,
    Sam Mathew

    Hello Sam,
    You can try displaying the results row of 0metype or account#. Hope this helps.

  • How to break a number into pieces and get the sum or product of the numbers

    on 10.2 I tried to use regular expression but TO_NUMBER function does not work with REGEXP_REPLACE as below;
    SQL> SELECT regexp_replace(123456,
      2                        '(.)',
      3                        '\1+') || '0' RESULT
      4    FROM dual;
    RESULT
    1+2+3+4+5+6+0
    SQL> SELECT 1+2+3+4+5+6+0 RESULT FROM dual;
        RESULT
            21
    SQL> SELECT regexp_replace(123456,
      2                        '(.)',
      3                        '\1*') || '1' RESULT
      4    FROM dual;
    RESULT
    1*2*3*4*5*6*1
    SQL> SELECT 1*2*3*4*5*6*1 RESULT FROM dual;
        RESULT
           720I recieve ORA-01722: invalid number as below;
    SQL> SELECT to_number(regexp_replace(123456,
      2                        '(.)',
      3                        '\1+') || '0') RESULT
      4    FROM dual;
    SELECT to_number(regexp_replace(123456,
                          '\1+') || '0') RESULT
      FROM dual
    ORA-01722: invalid numberAny comments? Thank you.

    On 11g you can use this:
    SQL>  select level
      2        , regexp_replace(level,'(.)','\1+') || '0' sum
      3        , xmlquery(regexp_replace(level,'(.)','\1+') || '0' returning content).getNumberVal() sum_evaluated
      4        , regexp_replace(level,'(.)','\1*') || '1' product
      5        , xmlquery(regexp_replace(level,'(.)','\1*') || '1' returning content).getNumberVal() product_evaluated
      6     from dual
      7  connect by level <= 100
      8  /
    LEVEL SUM                  SUM_EVALUATED PRODUCT              PRODUCT_EVALUATED
         1 1+0                              1 1*1                                  1
         2 2+0                              2 2*1                                  2
         3 3+0                              3 3*1                                  3
         4 4+0                              4 4*1                                  4
         5 5+0                              5 5*1                                  5
         6 6+0                              6 6*1                                  6
         7 7+0                              7 7*1                                  7
         8 8+0                              8 8*1                                  8
         9 9+0                              9 9*1                                  9
        10 1+0+0                            1 1*0*1                                0
        11 1+1+0                            2 1*1*1                                1
        12 1+2+0                            3 1*2*1                                2
        13 1+3+0                            4 1*3*1                                3
        14 1+4+0                            5 1*4*1                                4
        15 1+5+0                            6 1*5*1                                5
        16 1+6+0                            7 1*6*1                                6
        17 1+7+0                            8 1*7*1                                7
        18 1+8+0                            9 1*8*1                                8
        19 1+9+0                           10 1*9*1                                9
        20 2+0+0                            2 2*0*1                                0
        21 2+1+0                            3 2*1*1                                2
        22 2+2+0                            4 2*2*1                                4
        23 2+3+0                            5 2*3*1                                6
        24 2+4+0                            6 2*4*1                                8
        25 2+5+0                            7 2*5*1                               10
        26 2+6+0                            8 2*6*1                               12
        27 2+7+0                            9 2*7*1                               14
        28 2+8+0                           10 2*8*1                               16
        29 2+9+0                           11 2*9*1                               18
        30 3+0+0                            3 3*0*1                                0
        31 3+1+0                            4 3*1*1                                3
        32 3+2+0                            5 3*2*1                                6
        33 3+3+0                            6 3*3*1                                9
        34 3+4+0                            7 3*4*1                               12
        35 3+5+0                            8 3*5*1                               15
        36 3+6+0                            9 3*6*1                               18
        37 3+7+0                           10 3*7*1                               21
        38 3+8+0                           11 3*8*1                               24
        39 3+9+0                           12 3*9*1                               27
        40 4+0+0                            4 4*0*1                                0
        41 4+1+0                            5 4*1*1                                4
        42 4+2+0                            6 4*2*1                                8
        43 4+3+0                            7 4*3*1                               12
        44 4+4+0                            8 4*4*1                               16
        45 4+5+0                            9 4*5*1                               20
        46 4+6+0                           10 4*6*1                               24
        47 4+7+0                           11 4*7*1                               28
        48 4+8+0                           12 4*8*1                               32
        49 4+9+0                           13 4*9*1                               36
        50 5+0+0                            5 5*0*1                                0
        51 5+1+0                            6 5*1*1                                5
        52 5+2+0                            7 5*2*1                               10
        53 5+3+0                            8 5*3*1                               15
        54 5+4+0                            9 5*4*1                               20
        55 5+5+0                           10 5*5*1                               25
        56 5+6+0                           11 5*6*1                               30
        57 5+7+0                           12 5*7*1                               35
        58 5+8+0                           13 5*8*1                               40
        59 5+9+0                           14 5*9*1                               45
        60 6+0+0                            6 6*0*1                                0
        61 6+1+0                            7 6*1*1                                6
        62 6+2+0                            8 6*2*1                               12
        63 6+3+0                            9 6*3*1                               18
        64 6+4+0                           10 6*4*1                               24
        65 6+5+0                           11 6*5*1                               30
        66 6+6+0                           12 6*6*1                               36
        67 6+7+0                           13 6*7*1                               42
        68 6+8+0                           14 6*8*1                               48
        69 6+9+0                           15 6*9*1                               54
        70 7+0+0                            7 7*0*1                                0
        71 7+1+0                            8 7*1*1                                7
        72 7+2+0                            9 7*2*1                               14
        73 7+3+0                           10 7*3*1                               21
        74 7+4+0                           11 7*4*1                               28
        75 7+5+0                           12 7*5*1                               35
        76 7+6+0                           13 7*6*1                               42
        77 7+7+0                           14 7*7*1                               49
        78 7+8+0                           15 7*8*1                               56
        79 7+9+0                           16 7*9*1                               63
        80 8+0+0                            8 8*0*1                                0
        81 8+1+0                            9 8*1*1                                8
        82 8+2+0                           10 8*2*1                               16
        83 8+3+0                           11 8*3*1                               24
        84 8+4+0                           12 8*4*1                               32
        85 8+5+0                           13 8*5*1                               40
        86 8+6+0                           14 8*6*1                               48
        87 8+7+0                           15 8*7*1                               56
        88 8+8+0                           16 8*8*1                               64
        89 8+9+0                           17 8*9*1                               72
        90 9+0+0                            9 9*0*1                                0
        91 9+1+0                           10 9*1*1                                9
        92 9+2+0                           11 9*2*1                               18
        93 9+3+0                           12 9*3*1                               27
        94 9+4+0                           13 9*4*1                               36
        95 9+5+0                           14 9*5*1                               45
        96 9+6+0                           15 9*6*1                               54
        97 9+7+0                           16 9*7*1                               63
        98 9+8+0                           17 9*8*1                               72
        99 9+9+0                           18 9*9*1                               81
       100 1+0+0+0                          1 1*0*0*1                              0
    100 rijen zijn geselecteerd.which doesn't work on 10.2 unfortunately. And I'm not aware of any other method to do a dynamic evaluation in SQL in that version.
    Regards,
    Rob.

  • Asking for user input in the middle of a function

    Here's my issue.
    I need to launch and input window in the middle of a function for user input.  Before I can continue through the function I need a response back from the user first.  Psuedo code below:
    function
         function begins
         pop up window is launched to ask for user input
         function continues after users submits input
         user input from pop up window is used in function return value
    Let me know if you need more clarification but this is essentially what I'm attempting to do.

    The way actionScript works it isn’t really designed to work that way
    Is there any reason why you have to only use one function as you have written
    I think you really do need to split up your code into sections that a, set up the pop-up with  event listeners waiting for the input to be completed, trigger the pop up with user input, then have a handler function that then interprets the results of the user action.
    Trying to force the system into a closed loop while waiting will be a bad idea.
    By using a pop-up or an alert window that is set to be modal, you are effectively stopping your application doing anything else until the user input has been completed, but still not locking the app into a closed loop. Imagine what would happen if you did put the system into a closed loop, the mouse movement wouldn’t be updated, the screen wouldn’t refresh and the system wouldn’t be able to handle your user input. the reason for using async model is you are able to let the system still do all its background task (move the mouse, give inputs focus, keep the screen drawn etc) but still tell a part of your app to ‘wait for input’ before carrying on it execution of your logic
    Do you come from another programming language? Maybe one that uses less of an OOP approach? I only ask, as the method you are describing is much more like how I had to program when  I worked on computers years ago as an assembly programmer.
    In actionscript and most other modern languages and Oss you don’t have total control of the system and cant lock it into an action as you describe.
    You need to have an asynchronous approach to situations like you describe and let the system run in the back ground while you are waiting for input (or date from a server for that matter)
    Please excuse me if I am telling you things you already know.
    What exactly is your use case for this? Maybe if we knew exactly what you are working on I might be able to offer a solution that would make sense for your particular situation.
    Hope all is going well and please feel free to contact me if you are stuck

  • System.Data.SqlClient.SqlException: Cannot open database "MSCRM_CONFIG" requested by the login. The login failed. Login failed for user 'NT AUTHORITY\SYSTEM

    Dear ALL 
    After successfully shifting the CRM from 2011 to 2013 i found a problem in Reporting section none of the report is working after some finding i conclude that MSCRM_FetchDataSource is not able to connect successfully 
    Through my report manager i tried to test the connection of MSCRM_FetchDataSource but i got the following error 
    System.Data.SqlClient.SqlException: Cannot open database "MSCRM_CONFIG" requested by the login. The login failed. Login failed for
    user 'NT AUTHORITY\SYSTEM'. 
    I already add the NT Authority \ System as a db_owner under my database user of MSCRM_CONFIG
    But still no success any one have any idea why it's happaning 
    Regards 
    RB

    I found a solution I hope my post will help other
    I gave the  db_owner to 'NT AUTHORITY\SYSTEM' and 'NT AUTHORITY\NETWORK' and assigned with both CRM and Config database
    It resolved my issue
    RB

  • Configuring group policy for user profiles in Windows Server 2012 R2 Domain

    Requesting some experts advise on configuring group policy for user profiles.
    We will be building new Windows Server 2012 R2 Domain Controllers (Domain of 400 users).
    The settings which I am concerned:
    1. Folder Redirection: Desktop, Documents, Favorites.
    2. Quota for Folder Redirection - 1 GB per user.
    3. Map a networked drive - 1 GB per user.
    4. Roaming profile - (Will ignore if it does not suit our requirement). 
    The question is how outlook profile will be retained / automatically moved if the users move from once computer to other?
    FYI, E-mails hosted on MS Office365 and OST file size of few users more than 25GB. So, in case the user moves from one computer to other, the entire mailbox will be downloaded via internet. This consumes high bandwidth if more than 3-4 users shift per day.
    Thanks a lot for your valuable time and efforts.

    Hi,
    >>The question is how outlook profile will be retained / automatically moved if the users move from once computer to other?
    This depends on where our outlook data files are stored. If these data files are stored under
    drive:\Users\<username>\AppData\Local, then these files can’t be redirected, for folder redirection can’t redirect appdata local or locallow.
    However, regarding your question, we can refer to the following thread to find the solution.
    Roam outlook profiles without roaming profiles
    http://social.technet.microsoft.com/Forums/office/en-US/3908b8e0-8f44-4a34-8eb5-5a024df3463e/roam-outlook-profiles-without-roaming-profiles
    In addition, regarding how to configure folder redirection, the following article can be referred to for more information.
    Configuring Folder Redirection
    http://technet.microsoft.com/library/cc786749.aspx
    Hope it helps.
    Best regards,
    Frank Shen

  • Web module exports all the different preview sizes

    Trying out the web module - I select a flash template with extra large previews. When I export to Dreamweaver, not only are the Extra large previews exported but also large, medium etc. This means that if I upload to my server I will use far more space than necessary. Can I prevent this? Or can I simply delete all but the extra large pictures?

    When exporting a Flash gallery it does export three sizes. Those three sizes are "relative" to the "preview size" setting, which you could kind of think of as setting the size for the "largest" of the three. When the gallery is loaded into a browser, the gallery automatically detects the size of the window, looks at the rendition sizes available, and then downloads the largest rendition size that will fit into the window. It then does some pretty sophisticated pre-fetching of the other images of that size based on user behavior (linear vs non-linear browsing of the gallery). The gallery does not download the other renditions at all - unless the end user changes the size of their browser window such that a different rendition size should be used. The gallery does not real-time scale the images inside Flash - except in the case where the browser window is made too small for even the smallest rendition, in which case it will scale down the image in real time (this is why your "trick" works). In Beta 4, the gallery threw scroll bars on the images themselves if the window was too small. I think the 1.0 approach is much better.
    Granted this takes up extra room on the web server, (pretty cheap these days though) but if there were only one rendition, it really should be a size that will fit on 800x600 monitors - which is still well over 10% of web users, which would mean it would need to be pretty dang small given OS chrome, browser chrome, headers, etc - and then if you had thumnails across the bottom... Is all this overkill? When I look at galleries like the one at http://www.computer-darkroom.com/antarctica_2007/index.html in a maximized window on my hi-res monitor, I grow to really love the multiple rendition approach.

  • Password for user admin

    Hello,
    I have to change the PW for user admin and tried to do this in the ERP/SU01 on every client.
    The connection to XI was lost. The error 'can not read exchange profile' occurred.
    I reset the password of user admin in all clients to default and entered the user admin and password in the http://<xi-host>:<j2ee-port>/exchangeProfile.
    This worked fine.
    But now I get the periodic error that user admin on client 200 is locked due to wrong logon and XI does not work. Error as described above
    Okay. I can unlock user admin, but the error occurs periodically.
    Is there a description how to change the PW for user admin and get rid of this error. I found a SAP Note (936093), is this the way to do it?
    I assume user admin is locked every time the portal fails to contact XI, but I am not sure.
    Best Regards
    Maximilian

    Try reflashing the firmware and see if that alleviates the issue.  If not call into 866-606-1866 for further troubleshooting.

  • Unable to open a report and asking for user credentials

    Hi,
    when i am trying to open a crystal report, i am asking for user credentials and my URL is directed to the below URL
    http://hostname/PlatformServices/service/app/logon.do?appKind=InfoView&service=%2FOpenDocument%2FappService.do&backContext=%2FOpenDocument&backUrl=%2Fopendoc%2FopenDocument.jsp%3FSERVICE%3D%252FOpenDocument%252FappService.do%26OBJIDS%3D20016421%26backUrl%3D%252Fcontent%252Fview.do%26PREF%3DmaxOpageUt%253D200%253BmaxOpageC%253D10%253Btz%253DUS%252FPacific%253BmUnit%253Dinch%253BshowFilters%253Dtrue%253BsmtpFrom%253Dtrue%253BpromptForUnsavedData%253Dtrue%253B%26CONTAINERID%3D6424083%26backContext%3D%252FPlatformServices%26LOC%3Den%26APPKIND%3DInfoView%26PVL%3Den%26ACTID%3D280%26service%3Dtimeout&backUrlParents=1&appName=OpenDocument&prodName=BusinessObjects+Enterprise&cmsVisible=false&cms=servername%3A6600&authenticationVisible=false&authType=secEnterprise&sso=false&sm=true&smAuth=secLDAP&persistCookies=true&sessionCookie=true&useLogonToken=true
    Please help me on this

    Hi,
            This is happening to all of the users. And this kind of behaviour is happening frequently to most of the users but as for me and some of us this is not happening frequently.
    And we are using Crystal Reports 2008 ie. CR12.
    -VinodC

  • A script to increase the minimum canvas size? (Like Fit Image, but with just my canvas)

    For starters to be clear, I'm looking to manipulate canvas size. Not image size.
    I want to create a script to automatically increase the width and height of my canvas in Photoshop to a specific size when necessary. I only want this to happen if my canvas is less than that specified size. For example: Let's say my canvas size is 300x250. I want the canvas to be at LEAST 600x600. If I run my action it will increase the canvas size to 600x600 for me. If I run this same script on an image where the canvas size is already 700x700, it won't do anything at all to it because both the width and height are equal to or greater than my target size.
    It would also need to work with the height and width on an individual basis. If my image is 400x800, the action would increase my width from 400 to 600, but it would leave the height of 800 alone. So the final canvas size will end up being 600x800.
    It's kind of like the "Fit Image" option in Photoshop, but I only want to manipulate my canvas size, NOT my image size.

    It is possible.
    But if you hope that the dialog remembers the last settings that would require storing those values (which could be done with a txt-file at some pre-defined location), but it would make the Script a bit more complicated.
    // resize canvas in either direction if it is below a defined minimum;
    // 2011; use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    // dialog;
    var dlg = new Window("dialog", "increase width and height if under", [500,300,750,380]);
    // filter for checking if entry is numeric, thanks to xbytor;
    numberKeystrokeFilter = function() {
              if (this.text.match(/[^\-\.\d]/)) {
                        this.text = this.text.replace(/[^\d]/g, "")
              if (Number(this.text <= 0)) {this.text = 5};
              this.text = Math.round(Number(this.text));
    // fields for entry;
    dlg.hor = dlg.add("edittext", [14,15,88,35], "600", {multiline:false});
    dlg.hor.onChange = numberKeystrokeFilter;
    dlg.horText = dlg.add("statictext", [93,15,118,35], "px", {multiline:false});
    dlg.ver = dlg.add("edittext", [129,15,210,35], "600", {multiline:false});
    dlg.ver.onChange = numberKeystrokeFilter;
    dlg.verText = dlg.add("statictext", [215,15,240,35], "px", {multiline:false});
    dlg.hor.active = true;
    // ok- and cancel-button;
    dlg.buildBtn = dlg.add("button", [13,45,118,68], "OK", {name:"ok"});
    dlg.cancelBtn = dlg.add("button", [128,45,240,68], "Cancel", {name:"cancel"});
    // show dialog;
    dlg.center();
    // show dialog;
    var myReturn = dlg.show ();
    // proceed if ok-ed;
    if (myReturn == 1) {
    var myDocument = app.activeDocument;
    // set to pixels;
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    // set the minimum values;
    var minWidth = Number(dlg.hor.text);
    var minHeight = Number(dlg.ver.text);
    // get current ones;
    var theWidth = myDocument.width;
    var theHeight = myDocument.height;
    // resize canvas;
    myDocument.resizeCanvas(Math.max(minWidth, theWidth), Math.max(minHeight, theHeight), AnchorPosition.MIDDLECENTER);
    // reset;
    app.preferences.rulerUnits = originalRulerUnits;

  • Value for user-exit variable  is invalid

    Hi Gurus,
    My Value for a Fiscal Year Prd returns a invalid value for the 12th month of each year( for Example 12/2004, returns the error "Value 200313 for User-exit variable is invalid.
    This is the code that is being used.
    *Rolling 12 months for entered month
    when 'ZCALM12'.
          clear: v_mth, v_yr.
          REFRESH E_T_RANGE.
          CLEAR L_S_RANGE.
          LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
                   WHERE VNAM = 'ZCALMON'.
            exit.
          endloop.
          v_yr = LOC_VAR_RANGE-LOW+0(4) - 1.
          v_mth = LOC_VAR_RANGE-LOW+4(2) + 1.
          L_S_RANGE-SIGN = 'I'.
          L_S_RANGE-OPT = 'BT'.
          concatenate v_yr v_mth into L_S_RANGE-LOW.
          L_S_RANGE-HIGH = LOC_VAR_RANGE-LOW.
          APPEND L_S_RANGE TO E_T_RANGE.
    Thanks in Advance.

    Hi Ravi,
    when 'ZCALM12'.
    clear: v_mth, v_yr.
    REFRESH E_T_RANGE.
    CLEAR L_S_RANGE.
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
    WHERE VNAM = 'ZCALMON'.
    exit.
    endloop.
    <b>-->> Here, you are not checking any thing.</b> <i>On which logic you are reducing year by one and increasing month by 1..?</i>
    v_yr = LOC_VAR_RANGE-LOW+0(4) - 1.
    v_mth = LOC_VAR_RANGE-LOW+4(2) + 1.
    -->><i>IF month is 200512 you will get output from above code is :</i> please check.
    v_yr = 2005 - 1 = 2004
    v_mth = 12 +1 = 13.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'BT'.
    concatenate v_yr v_mth into L_S_RANGE-LOW.
    L_S_RANGE-HIGH = LOC_VAR_RANGE-LOW.
    APPEND L_S_RANGE TO E_T_RANGE.
    Try to debug the code by keeping break point after When. and execute the report, you will be debugging mode.
    Hope it Helps
    Srini

  • Attribute for user contains errors. Inform system admin

    Hello,
    We've got an issue with shopping carts created by a user that was deleted from system. When trying to see in Monitoring Shopping Carts header or item details of a given sc. A web error occurs:
    The URL http://srp.srm.gruposalinas.com.mx:8000/sap/bc/gui/sap/its/bbpsc11/! was not called due to an error.
    Note
    The following error text was processed in the system SRP : Attribute for user contains errors. Inform system admin.
    The error occurred on the application server srm-pro_SRP_00 and in the work process 2 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Form: OUTPUT_EXPRESS_MESSAGES of program SAPLBBP_SC_UI_ITS
    Form: EXTERNAL_SCREEN_DETERMINE of program SAPLBBP_SC_UI_ITS
    Module: EXTERNAL_SCREEN_DETERMINE of program SAPLBBP_SC_UI_ITS
    We've cheked SAP NOTE 312058-BBPPU99: Error: Attribute for ... is missing. Inform ...
    But it seems that none of the information applies to us, since this issue is only present for Shopping carts that were created by this deleted user.
    So we tried to re-assing one of this sc, chaning PARTNER_NO,ADDR_NR    
    ADDR NP data in table CRMD_PARTNER according to a new given user, but it didn't work. So we need to know how to re-assing this sc or perhaps how to find what specific attribute is missing.
    Any advice is welcome.
    Thanks in advance.

    Hi
    <b>Which SRM version are you using ? This is an SRM error message.</b>
    The manager role should be enough to change user attribute. The transaction is BBPATTRMAINT. Employee role should have BBPUM02 or BBPAT05 to change their own attribute.
    <u>Please check whether the User ID you are using to Log into BBP_PD (and seems to be assigned in the org structure also)is consistent and has no errors in tcode USERS_GEN.  You should check the user, it's not set up properly in USERS_GEN Transaction, Else repair the user.
    To maintain the user attributes you must have the Administrator role.. Your user should have role SAP_BBP-STAL_ADMINISTRATOR and be integrated in the org structure. your user must be integrated in SRM organizational structure. To see which attributes are missing, you can click on the user in PPOMA_BBP to see details, and go to last tab "Check". This will list all required attributes depending on used scenarios (so you may not require all of them). You can also use transaction BBP_ATTR_CHECK to check user's attributes for a particular scenario.</u>
    <b>Please go through the following links as well -></b>
    bbp_mon_sc attributes
    Re: FM for attribute's value assignation in PPOMA ?
    Note 751022 - Monitor Shopping Cart: Item deletion causes termination
    Re: User Settings are not saved
    Re: Not able to generate user users_gen
    Re: SRM organization plan...
    Re: User creation error
    <u>Hope this will definitely help. Do let me know.</u>
    Regards
    - Atul

  • Interactive Report actions don't work for users (i.e. for non-developers)

    I've Interactive Reports that work fine in development. But when I or other users run it in non-development mode, no feature or actions (sorting, filtering, select columns, aggregate, etc.) work. At run time (going directly to the URL ...apex/f?p=APP_ID), the actions menu is enabled for users and it allows them to go through the process of filtering (select column, pick opeartor, pick value) and click-apply, but nothing happens after that! The interactive report comes back with the data as it was before the filtering was applied. Same thing happens with other action-menu features (no affect).
    Please help since I've a demo tomorrow to show these features. Thanks.

    Why would you post this same issue twice? Did you think it would help get an answer faster?
    I see the second post here: Re: Actions Menu in Interactive Reports does not sort, filter, select cols etc

Maybe you are looking for

  • I want to know when apple Ipod 5g is coming out, and please the specific time!

    People keep telling me, "it's coming out in october!" can you at least tell me the week? Like this week, or next week, and yes, i have checked hot news.

  • Getting the ID of the page that is running an iView in EP5

    Hello, As stated in the topic, I'm using EP5. How can I get the ID of the page that is currently running an iView from within the iView code? Thanks ahead for any help, Yoav.

  • Changed po details

    Hi All, if the po changed, then the details will display in smartform. like qty, delivery date, etc.... example prg.. (SE 38) *& Report ZSA124 * REPORT ZSA124 LINE-SIZE 132 NO STANDARD PAGE HEADING LINE-COUNT 065(001) MESSAGE-ID VR. TABLES: DD04T, CD

  • TS2621 emails can be full opened in m/s Vista but not on ipad

    My 86 yr old cousin has a laptop Vista, she is receiving her emails ok on it but as she is using her iPad more & more, she is becoming frustrated by the fact that the emails reach her Inbox but she is unable to open them up fully. She has been on to

  • Problem performing "cleansweep" t

    I am one of the people having the whole "Cannot initialize audio driver..." problems with a Li've! 5. card with XP an SP2 and all that. Checking in numerous places and then finally the sticky at the top of this board I decide a cleansweep is just the