Nvidia 180.22: mrxvt transparency and reasonable benchmarks

I just got a 9800GT a few days ago. Just now I upgraded from 173.X nVidia drivers to the newest 180 in the repositories. Two questions:
1) The tabbar transparency in MRXVT has been messed up with the driver upgrade. When I was using 173, it was fine, but using 180 breaks it. Now the tabbar has an odd semi-transparent hue to it, although other mrxvt transparency is fine. IIRC when I tried 177.X I had the same problem. Here's my xorg.conf, do I need to enable anything new with the latest driver? The only transparent-ish thing that has broken is the mrxvt tabbar. I'm not even using real transparency, just pseudo.
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
# InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
# RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "GLcore"
Load "dbe"
Load "xtrap"
Load "record"
Load "extmod"
Load "dri"
Load "glx"
Load "freetype"
EndSection
#Section "InputDevice"
# Identifier "Keyboard0"
#Driver "kbd"
# Driver "evdev"
#EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
#DisplaySize 340 270 # mm
Identifier "Monitor0"
VendorName "SAM"
ModelName "SyncMaster"
### Comment all HorizSync and VertRefresh values to use DDC:
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 75.0
Option "DPMS"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "SWcursor" # [<bool>]
#Option "HWcursor" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "UseFBDev" # [<bool>]
#Option "Rotate" # [<str>]
#Option "VideoKey" # <i>
#Option "FlatPanel" # [<bool>]
#Option "FPDither" # [<bool>]
#Option "CrtcNumber" # <i>
#Option "FPScale" # [<bool>]
#Option "FPTweak" # <i>
#Option "DualHead" # [<bool>]
Identifier "Card0"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "GeForce 9800GT"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
Option "NoLogo" "True"
Option "RenderAccel" "True"
Option "AllowGLXWithComposite" "True"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "ServerFlags"
Option "AutoAddDevices" "False"
EndSection
2) I ran glxgears on the old and new drivers. The old ones yielded about 6800 - 6900 FPS on average. The new ones yield about 6900 - 7000 FPS on average. So, about a ~50FPS improvement, not much to write home about. I've looked through other threads and this seems to be about on par for the graphics card I have (but I hear that on other distros nVidia cards can get much better benchmarks). Just want to check, does that sound about right? I'm unexperienced with tweaking Xorg for graphics performance and I basically just have what nvidia-config spit out.
Thanks.

Pseudo transparency works by placing a copy of your background in the background of your window. (like behind the words in your terminal)
True Transparency will do that, and add an image of your other windows that are behind the transparent window.
If you enable composite, (have a graphics card that can handle it), install xcompmgr and transset-df, then add
xcompmgr -C & # The & keeps it from waiting for the program to stop before doing anything else.
to you autostart, it will enable transparency. I'm using openbox and it works beautifully.
Here is my .Xdefaults (by the way if it doesn't exist, you can create it in your user folder, just don't miss the' . ' !
URxvt*foreground: #A8A8A8
URxvt*scrollBar_right: false
URxvt*scrollBar: true
URxvt*scrollstyle: plain
URxvt*borderLess: false
URxvt*inheritPixmap: true
URxvt*geometry: 124x24
URxvt*tint: white
URxvt*font: xft:monofur:size=8
#URxvt*font: xft:terminus-font:
#URxvt*font: xft:anorexia
URxvt*color0: #000000
URxvt*color1: #A80000
URxvt*color2: #00A800
URxvt*color3: #A85400
URxvt*color4: #0000A8
URxvt*color5: #A800A8
URxvt*color6: #00A8A8
URxvt*color7: #A8A8A8
URxvt*color8: #545054
URxvt*color9: #F85450
URxvt*color10: #50FC50
URxvt*color11: #F2FC50
URxvt*color12: #5054F8
URxvt*color13: #F854F8
URxvt*color14: #50FCF8
URxvt*color15: #F8FCF8
## xterm config
xterm*termName: xterm
xterm*background: #000000
xterm*foreground: #A8A8A8
urxvt*depth: 32
urxvt*background: rgba:0000/0000/0000/dddd #the transparent magic happens here!
URxvt.perl-ext-common: default,matcher
URxvt.urlLauncher: firefox
URxvt.matcher.button: 2
URxvt*matcher.pattern.1: \\b(mailto|http|https|ftp|file):[/]*[\\w-]\\.[\\w./?&@#-]*[\\w/-]
URxvt*matcher.pattern.2: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-
I use urxvt, but if you just change the u to an m, it 'should' work.
Last edited by LeoSolaris (2009-01-29 18:28:15)

Similar Messages

  • [x86_64] nvidia 180.29: kde4 plasma and others use 100% cpu

    i have a problem with the latest beta drivers from nvidia (185 series):
    plasma uses 100% cpu, when i kill it, krunner uses 100% ..  deleted plasma configs and kdm configs but that didnt change a thing..i also switched from kdemod to kde from extra, same problem..
    nay idea what else i can try?
    do you guys have success with this (propably outstanding) driver and kde4 ?
    Last edited by aantipop (2009-04-09 15:13:28)

    i was using xorg-server 1.5.3..
    after upgrading to 1.6 i can use 180.44.
    but still 185.19 + xorg 1.6 does not work here , but the errors were not kde related this time:
    dlopen: /usr/lib/xorg/modules/drivers//nvidia_drv.so: invalid ELF header
    (EE) Failed to load /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (EE) Failed to load module "nvidia" (loader failed, 7)
    (EE) No drivers available.
    Fatal server error:
    no screens found

  • [solved] Pacman error on nvidia 180.22 update

    When I try update to nvidia 180.22-1 on testing appears the following error:
    :: klibc-extras: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    :: klibc-kbd: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    :: klibc-module-init-tools: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    :: klibc-udev: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    I don't know why this appears. Is a pacman bug?
    Last edited by alessandro_ufms (2009-01-15 11:34:35)

    alessandro_ufms wrote:
    I don't see any problems to use testing at last priority, so I update to testing only programs which I want testing (and your dependences).
    I think which the problem is on testing/mkinitcpio dependences.
    Because, if it depends klibc>=1.5.14-2 then mkiitcpio also depends  klibc-extras>=2.5-2, klibc-udev>=135-2, klibc-module-init-tools>=3.5-1 and klibc-udev>=135-2. On current PKGBUILD (http://repos.archlinux.org/viewvc.cgi/m … iew=markup) the stable versions of klibc-* are dependences.
    I know when this packages gone to core this problem is disappears because of the update all packages klibc together. But I think which if the version dependences were implemented, this error wouldn't appears.
    Thank you guys for support.
    YES, changing the dependencies of mkinitcpio could workaround your problem. BUT
    1) The current dependencies are fine and are NOT wrong. They just don't support perfectly the partial usage of testing, but as I said previously : PARTIAL USAGE OF TESTING IS NOT SUPPORTED
    2) This is not a show stopper. If you knew what you were doing, you could solve the issue yourself without changing any dependencies.
    3) Plazmic made a fine suggestion : if your goal is only getting the latest nvidia driver, it would be much better to simply use nvidia-beta on AUR, rather than trying to use testing partially without knowing what you are doing and bothering everyone here.

  • NVidia driver 185 black screens and 177 doesn't accelerate

    Hi,
    I just installed Arch for the first time. All was goodish untill nVidia let me down. 
    This is all with
    Xorg 1.6.2, and the graphics chipset is:
    GeForce 9500 GT
    There is trouble in two parts:
    part I:  driver 185  sucks hard
    I had to downgrade to nvidia-177 because of a bug I think is mentioned in the thread:
    http://bbs.archlinux.org/viewtopic.php?id=63281
    Except now it is with kernel 2.6.30 and driver 185.
    I quote:
    This morning, after some more attempts, I decided to re-install Arch.
    Finished installing, Installed Xorg, Installed Nvidia-180.22, tried to "startx", and nothing - black screen,
    nonresponsive mouse an keyboards, and the CPU sounds like it's going up the roof...
    (The thing about the CPU means a fan starts spinning hard.)
    This happens for just about any xorg.conf that actually uses the nvidia driver.  For example, I can run nvidia-xconfig, and optionally  comment out the "InputDevice" lines and this will still happen.
    There is no logfile at all.  Nor can I save anything on standard error.
    part II:  GoogleEarth (and others?)
    GoogleEarth performs really badly with the nVidia driver.  It's actually much faster with the open source drivers (but still not smooth). I haven't tried any other 3D applications in a fair test.
    This *might* be because the lib32-nvidia-utils (and hence libGL) does not come in a version for driver 177.
    Last edited by adrian.ratnapala (2009-07-27 21:32:24)

    Hmm, I am glad there are some new threads about blackscreening nVidias, because I am not sure it is really the same problem.  My particular sickness has three symptoms:
    1)   17x drivers work while 18x don't (180,185, whatever).
    2)    It not only black screens, but sets a fan (presumably the CPU fan) spinning hard.
    3)   There is no logging available after reboot, either on standard error, or to the system logs.
    Since the 17x drivers work, I'm just going to sit this one out.  One day I will upgrade to whatever is latest and see what happens.  I'm still disappointed that there are
    so many problems with the nVidia drivers.  I thought they were solid.
    Cheers.
    Last edited by adrian.ratnapala (2009-08-02 17:19:08)

  • Problem with adjusting both transparency and color of an object

    I am writing a program where when an object is picked, both it's transparency and color will be altered (the object will become opaque, and its color will turn to a predefined "selected" color), while the previously selected object will return to its original transparency and color. I am able to get this to work, except that objects that were picked two or more picks ago will remain in the selected color, albeit in their original transparency. This problem only seems to occur when transparency is factored in. The picking/color & transparency altering code is as follows.
    public class PickingListener extends MouseAdapter {
         private PickCanvas pickCanvas;
         private TextDisplay overlay;
         private Primitive p;
         private Primitive lastP;
         private ColoringAttributes origColor;
         private TransparencyAttributes origTransparency;
         public PickingListener(PickCanvas pickCanvasArg, TextDisplay overlayArg) {
              pickCanvas = pickCanvasArg;
              overlay = overlayArg;
         public void mouseClicked(MouseEvent e) {
              pickCanvas.setShapeLocation(e);
              PickResult result = pickCanvas.pickClosest();
              if (result == null) {
                   System.out.println("Nothing picked");
              } else {
                   p = (Primitive) result.getNode(PickResult.PRIMITIVE);
                   if (p != null) {
                        setSelectedColor();
                        overlay.setPickedBarInfo((BarInformation) p.getUserData());
                   else
                        System.out.println("null");
         private void setSelectedColor() {
              ColoringAttributes barCA = new ColoringAttributes();
              TransparencyAttributes barTransp = new TransparencyAttributes(TransparencyAttributes.NICEST, 0.0f);
              barCA.setColor(ColorConstants.SELECTED);
              if (lastP != null) {
                   lastP.getAppearance().setColoringAttributes(origColor);
                   lastP.getAppearance().setTransparencyAttributes(origTransparency);
              origColor = p.getAppearance().getColoringAttributes();
              origTransparency = p.getAppearance().getTransparencyAttributes();
              p.getAppearance().setColoringAttributes(barCA);
              p.getAppearance().setTransparencyAttributes(barTransp);
              lastP = p;
    }Capabilities to alter the primitive's color and transparency are all set.
         barAppearance.setCapability(Appearance.ALLOW_COLORING_ATTRIBUTES_READ);
              barAppearance.setCapability(Appearance.ALLOW_COLORING_ATTRIBUTES_WRITE);
              barAppearance.setCapability(Appearance.ALLOW_TRANSPARENCY_ATTRIBUTES_WRITE);          barAppearance.setCapability(Appearance.ALLOW_TRANSPARENCY_ATTRIBUTES_READ);
    ColoringAttributes barCA = new ColoringAttributes();
    barCA.setCapability(ColoringAttributes.ALLOW_COLOR_WRITE);
    barCA.setCapability(ColoringAttributes.ALLOW_COLOR_READ);)
    Any insight as to why this would occur would be greatly appreciated.
    -Adrian Benton

    A Behavior is the preferred way to make changes in a scenegraph. Here is an example from a previous post that changes the appearance of a shape when it collides with another shape.
    The javadoc for javax.media.j3d.Behavior appears to refer to the issue you have.
    Transparencies are confusing, different display adapters deal with them differently. Suggest you search the forum at
    http://forums.java.net/jive/forum.jspa?forumID=70
    for more detailed information.
    regards
    class CollisionDetector extends Behavior {
      private static final Color3f highlightColor = new Color3f(0.0f, 1.0f, 0.0f);
      private static final ColoringAttributes highlight = new ColoringAttributes(
          highlightColor, ColoringAttributes.SHADE_GOURAUD);
      private boolean inCollision = false;
      private Shape3D shape;
      private ColoringAttributes shapeColoring;
      private Appearance shapeAppearance;
      private WakeupOnCollisionEntry wEnter;
      private WakeupOnCollisionExit wExit;
      public CollisionDetector(Shape3D s) {
        shape = s;
        shapeAppearance = shape.getAppearance();
        shapeColoring = shapeAppearance.getColoringAttributes();
        inCollision = false;
      public void initialize() {
        wEnter = new WakeupOnCollisionEntry(shape);
        wExit = new WakeupOnCollisionExit(shape);
        wakeupOn(wEnter);
      public void processStimulus(Enumeration criteria) {
        inCollision = !inCollision;
        if (inCollision) {
          shapeAppearance.setColoringAttributes(highlight);
          wakeupOn(wExit);
        } else {
          shapeAppearance.setColoringAttributes(shapeColoring);
          wakeupOn(wEnter);
    }

  • Before Firefox 16 I was able to have full transparency and see through to my desktop. Now I am unable to do this but want it back, can I still do this and how?

    Depending on my theme and style I was able to force Firefox to be transparent and work with Aero to show through to my desktop or other windows behind the browser. I really liked this ability, however, sometime after Firefox 16 this stopped working and I have been looking for a solution ever since. I am currently on the the release version of Firefox.
    Does Firefox not allow this anymore or is there a way I can code this feature back using Styles or modifying one of the files in Firefox?

    Attached screen shot with Firefox version...Everything you see should be transparent.
    You might be seeing I have an old version as I have a few privacy apps running.
    I just attempted another reset and copied my old profile data back in.
    I've attempted in the past, disabling and removing extensions and apps one by one.
    Could my Styles code be incorrect?

  • How can I pass value in status and reason for rejection using BAPI_LEAD_CREATEMULTI when creating multiple lead

    Hello,
    I want pass value in STATUS and Reason for rejection according to requirement when i am creating multiple lead using BAPI_LEAD_CREATEMULTI. Please help me how can i pass value. Please give some sample code that in which table i have to pass values and please also tell me INPUT_FIELDS values. Please help me
    Regards,
    Kshitij Rathore

    Hello,
    Please help me for solve this problem. I am trying to solve problem from last 4 days but i didn't get any solution.
    Regards,
    Kshitij Rathore

  • Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click w

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

  • What is the best and reasonably priced external cd/dvd optical drive for an Imac 21.5 inches from late 2009?

    What is the best and reasonably priced external cd/dvd optical drive for an Imac 21.5 inches from late 2009?

    A lot of people have a Mac where the superdrive has been taken out to be replaced with a harddisk. Try to find a friend who has done that, give him a beer and take the superdrive, then buy a superdrive container from OWC or another for  afew dollars and put it in there. This slimdrive container has a USB connector. There you go.

  • I have a carillon 25 keyboard (bad choice, I know) and I can't get it to communicate with my mac at all! I'm running logic pro 9 and reason 5. I get signal in from my M Audio trigger finger so I know it isnt an entirely mac based problem. Thanks!!!

    I have a carillon 25 keyboard (bad choice, I know) and I can't get it to communicate with my mac at all! I'm running logic pro 9 and reason 5. I get signal in from my M Audio trigger finger so I know it isnt an entirely mac based problem. Thanks!!!

    Well, how have to determined no signal is being recieved to your mac?
    Have you got something that shows the actual signal? Or have you just been trying to control a VST? What software are you using by the way?
    I personnally went with a AKAI MPK25, because it's made already mapped for logic & ableton etc, so it just makes things incredibly easy.
    I would suggest you return it if you can as a dead unit & perhaps look at something else a bit easier?
    Otherwise, if you just want to get this working we can have a look a bit deeper.
    And driver? OS X driver?

  • Tables for Opportunity "Status" and "Reason"

    Hi,
    Can someone help me in finding the tables for determining "Status" and "Reason" for an opportunity along with the relvant text descriptions?
    Regards,
    Sandeep

    Hi Sandeep,
    Status-  code in field stat of CRM_JEST table
                    OBJNR = guid opportunity
                    INACT = SPACE
            Text of status in TJ30T with your status profile
    Reason-  code in field code of CRMD_SRV_SUBJECT with   
               guid_ref equal to guid_set( of crmd_link with objtype_set = 29 )
            Text of reason in QPCT
    I hope this way help you.
    Regards.
    Manuel

  • Transparency and flattening

    I'm using AI CS3 on PC. I've been given an EPS file that was apparently created in AI 11 on Mac. It has no preview (at least not that will show up on PC).
    I opened the file in AI to save it with a preview. When I do a Save As, AI says:
    "When spot colors are used with transparency, changing them to process colors outside of Illustrator can generate unexpected results."
    Does this mean I need to change all of the spot colors in the file to CMYK? The file has been used as-is in the past apparently with no repercussions.
    Then AI says:
    "The document contains artwork that requires flattening."
    What should I do? I find the whole business of transparency and flattening confusing.
    I COULD just use the original EPS file as-is, but I really hate not having a preview.
    FWIW, the EPS will be used in an existing Quark file.
    TIA,
    Marlene

    The first message is just a warning. If you intend to keep the spot color(s) on press, there should be no conversion to process involved. If there is going to be a conversion down the line, you're better off dealing with it within Illustrator. That's what the warning is trying to tell you.
    My guess with the second message is that it has to do with the improved transparency flattening options in newer versions of Illustrator. The document uses transparency, and that means flattening is required (because PostScript does not support transparency).
    I would just let Illustrator do its thing and save out your new EPS with the Windows-compatible preview. If the file was used in the past without problems, you probably don't have to do anything within Illustrator. However, if you see a lot of transparency features in use, you might want to flatten more aggressively, even if that means further tipping the balance away from vector toward raster and ending up with a larger file.
    The preview really won't tell you much (other than position) once in Quark, so make sure you output a proof -- at least to Adobe PDF. Check to make sure each spot color in your Illustrator file goes to its own 'plate' out of Quark.
    Recommended reading: http://www.layersmagazine.com/illustrator-render-photoshop.html

  • Transparency and color blend space: fail!

    Hi there. I keep trying to export my pdf, to no avail.
    I get an error that pops up that says there is an error with my transparency and color blend space.
    HOWEVER, all my images are set to CMYK (it says so in the links panel) and my transparency blend space is also set to CMYK. I have no errors in my preflight panel. When I ignore the message and continue to export, the image looks completely different and not the way I want it to show up.
    Please let me know how I can fix this error! Thanks so much!

    Document CMYK is the assigned profile in Edit>Assign Profiles.... Working CMYK is Color Settings...>Working Spaces>CMYK. If there's no profile assigned, document and working are the same. So in this case Document CMYK is Coated FOGRA27 and Working CMYK is US Web Coated SWOP—the assigned FOGRA is color managing the document's native CMYK colors not the working US SWOP

  • Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    If this happens on monitor 2 of 2, this problem has been solved here:
    http://support.mozilla.com/en-US/questions/794823#answer-157988
    Go to "Firefox"--> "Options" --> "Advanced"
    Then un-check "Use hardware acceleration when available"
    While not verified, I believe this problem is due to an SLI configuration where the focus is on monitor 1. (I.e acceleration is available, but only on monitor 1.)

  • Extending resource status and reason code category

    Hi Experts,
    I have a couple of questions regarding the extensibility of status and reason codes in ME15.0 in the context of machine integration:
    1. Is it save to add new status fields (records) in WIP.STATUS for STATUS_GROUP="RESOURCE"? Is there any impact, if a resource doesn't match one of the predefined status values?
    2. The "logResourceStatusChanged" service creates entries in WIP.RESOURCE_TIME_LOG but not in WIP.RESRCE. That way, it is possible to get different status values in both tables at a given time. Do you see any negative impact resulting from this data inconsistency?
    The service "ChangeResourceStatusRequest" is not suitable in our case, since it doesn't provide a timestamp as input parameter for the status change. And even if it would, the prevention of a "sfc complete" when the status is "unscheduled down" is inconvenient for our customer. The scenario is, that the customer wants to complete the quantity produced until the machine broke down (assume lot production).
    3. Is it possible to add new "categories" in addition to the predefined values in WIP.REASON _CODE? What is the impact?
    regards,
    Georg

    Hi Georg,
    I cannot give you a precise yes/no answer - so this is just to share some info.
    - I've heard about some customer who implemented custom statuses. When a new status simply was added in the database, it did not affect a core functionality. But I do not know what happens if this status is assigned to a resource and then a core fucntionality is triggered. There might be some validation which could fail. But it is easier to test specific cases as how you are going to use SAP ME, and I doubt any developer will be happy to run a full analysis of code to answer your question.
    - The new statuses need to be considered for loading via IDAT and adding into LocaleSpecificText properties file.
    - As to custom categories of reason codes, I guess there are only few places where system behavior is tightly connected to specific predefined reason codes. So, I'm inclined to believe that adding reason codes and categories will not harm.
    Regards,
    Sergiy

Maybe you are looking for