Xmonad with xinerama: screen order is messed up.

xmonad seems not to detect the order of my screens properly.
With nvidia-settings, i have configured the second screen to be 'right of'
my main screen. The main screen still shows the boot messages.
However, as soon as i log in, the focus goes to the second screen.
Also, mod-w refers to the second screen, whereas mod-e refers to the
main screen. It seems like, xmonad just confuses them both and
recognizes them in opposite order. The mouse however mouse as
expected to the right screen.
Searching the internet, i found that i can remap the keys to refer to
my screens properly. And for sure, there is a way to configure the
screen which has the focus on login. However i would rather like to
understand what the problem is and fix it, then fiddeling with the
symptoms.
The second is connected via VGA, just in case, that makes a difference.

MickeyKnox wrote:But if i'm getting you right, the problem is with xmonad (or rather there is nothing specified
and xmonad just makes a for me false assumption). So i guess to proper place to fix this is
indeed xmonad.
The problem is not Xmonad---it solves the issue by having the "PhysicalScreens" module. The PhysicalScreens module fixes precisely the issue you're having.
Fixing this on a "grander" scale requires modifying the X extensions themselves (Xinerama and/or RandR). It it not a bug that those extensions report the physical displays in an odd order.
The window manager must orient the screens how it sees fit; PhysicalScreens does just that.
MickeyKnox wrote:Another reason was that the solution in the XMonad FAQ looks kind of cryptic to me and i just
don't like to copy and paste things i don't understand. But i guess sooner or later i have to
emerse myself in Haskell...
Use the xmonad-contrib API docs for an example of how to use PhysicalScreens.
You can only get so far with configuring Xmonad without learning some Haskell. It's a huge upfront cost, I know, but you otherwise end up copying & pasting.

Similar Messages

  • Xmonad with dual screen strange bug or feature !

    Hi,
    I am running xmonad with dual screen. The strange thing (bug or feature) I noticed that when I move a window to another screen and then try to change the workspace, the window moves along to the same workspace but lands on the other screen.
    Is there any way to switch off this feature. I googled a bit and replaced the greedyView parameter with view but it didn't help.
    regards,
    Hardik

    Here is my  xmonad.hs
    import XMonad
    import System.Exit
    import qualified XMonad.StackSet as W
    import qualified Data.Map as M
    import XMonad.Util.Run
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Layout.NoBorders
    import XMonad.Hooks.SetWMName
    import XMonad.Hooks.ManageHelpers (isFullscreen, doFullFloat, doCenterFloat)
    import XMonad.Layout.Tabbed
    import System.IO
    -- -xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*
    myLauncher :: String
    myLauncher = "`dmenu_path | dmenu -fn '-xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*' -nb '#303030' -nf '#959595' -sf '#FFFFFF' -sb '#606060'`"
    myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
    [ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
    , ((modMask, xK_p ), spawn myLauncher)
    , ((modMask .|. shiftMask, xK_c ), kill)
    , ((mod4Mask .|. controlMask, xK_Down ), spawn "/home/hardik/bin/decrease-aumix-vol.sh")
    , ((0 , 0x1008ff11 ), spawn "/home/hardik/bin/decrease-aumix-vol.sh")
    , ((mod4Mask .|. controlMask, xK_Up ), spawn "/home/hardik/bin/increase-aumix-vol.sh")
    , ((0 , 0x1008ff13 ), spawn "/home/hardik/bin/increase-aumix-vol.sh")
    , ((mod4Mask .|. controlMask, xK_m ), spawn "/home/hardik/bin/toggle-aumix-mute.sh")
    , ((0 , 0x1008ff12 ), spawn "/home/hardik/bin/toggle-aumix-mute.sh")
    , ((modMask, xK_space ), sendMessage NextLayout)
    , ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
    , ((modMask, xK_n ), refresh)
    , ((modMask, xK_Tab ), windows W.focusDown)
    , ((modMask, xK_j ), windows W.focusDown)
    , ((modMask, xK_k ), windows W.focusUp )
    , ((modMask, xK_m ), windows W.focusMaster )
    , ((modMask, xK_Return), windows W.swapMaster)
    , ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
    , ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) , ((modMask, xK_h ), sendMessage Shrink) , ((modMask, xK_l ), sendMessage Expand)
    , ((modMask, xK_t ), withFocused $ windows . W.sink)
    , ((modMask , xK_comma ), sendMessage (IncMasterN 1))
    , ((modMask , xK_period), sendMessage (IncMasterN (-1)))
    , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
    -- , ((modMask , xK_q ), restart "xmonad" True)
    , ((modMask , xK_q ), spawn "killall conky dzen2 && xmonad --recompile && xmonad --restart")
    , ((modMask .|.shiftMask .|. controlMask , xK_c ), spawn "emacs ~/.xmonad/xmonad.hs")
    , ((modMask .|. controlMask , xK_l ), spawn "xscreensaver-command -lock")
    , ((modMask .|. controlMask , xK_k ), spawn "python ~/pythonScripts/SwitchKbLayoutDesk/src/setNextKbLayout.py")
    , ((modMask , xK_b ), sendMessage ToggleStruts)
    ++
    [((m .|. controlMask, k), windows $ f i)
    | (i, k) <- zip (XMonad.workspaces conf) [xK_F1 .. xK_F4]
    , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
    -- , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
    ++
    -- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
    -- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3
    [((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f))
    | (key, sc) <- zip [xK_w, xK_e] [0..]
    , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
    myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $
    [ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w))
    , ((modMask, button2), (\w -> focus w >> windows W.swapMaster))
    , ((modMask, button3), (\w -> focus w >> mouseResizeWindow w))
    myLayouts = tiled ||| Mirror tiled ||| noBorders Full ||| simpleTabbedBottom
    where
    tiled = Tall 1 (2/100) (1/2)
    myManageHook = composeAll
    [ className =? "MPlayer" --> doFloat
    , className =? "Gimp" --> doFloat
    , className =? "Gimp" --> doFloat
    , className =? "IDEA" --> doFloat
    , resource =? "desktop_window" --> doIgnore
    , isFullscreen --> doFullFloat ]
    myStartupHook :: X ()
    myStartupHook = do
    setWMName "LG3D"
    spawn "xset -b"
    spawn "xrdb -load ~/.Xdafaults"
    spawn "xscreensaver -no-splash"
    spawn "numlockx on"
    spawn "eval `cat $HOME/.fehbg`"
    spawn "conky -c ~/.conkyrc_dzen | dzen2 -ta r -x 600 -bg '#303030' -fn '-*-lucida-*-*-normal-*-12-*-*-*-*-*-*-*' &"
    spawn "conky &"
    -- spawn "conky -c ~/.conkyrc_time &"
    shortened :: Int -> String -> String
    shortened n xs | length xs < n = xs
    | otherwise = (take ( n - length end) xs) ++ end
    where
    end = "..."
    main = do
    h <- spawnPipe "dzen2 -w 600 -ta l -fn ' -*-lucida-*-*-normal-*-12-*-*-*-*-*-*-*' -bg '#303030' -fg '#FFFFFF'"
    xmonad $ defaultConfig {
    terminal = "urxvt",
    focusFollowsMouse = True,
    borderWidth = 1,
    modMask = mod1Mask,
    workspaces = [" console "," dev "," misc "," browser "],
    normalBorderColor = "#303030",
    focusedBorderColor = "#55BBFF",
    keys = myKeys,
    mouseBindings = myMouseBindings,
    layoutHook = avoidStruts $ smartBorders myLayouts,
    manageHook = myManageHook <+> manageDocks,
    startupHook = myStartupHook,
    logHook = dynamicLogWithPP $ defaultPP {
    ppCurrent = wrap "^fg(#FFFFFF)^bg(#606060)" "^fg()^bg()"
    ,ppVisible = wrap "^fg(#FFFFFF)^bg()" "^fg()^bg()"
    ,ppHidden = wrap "^fg(#55BBFF)^bg()" "^fg()^bg()"
    ,ppHiddenNoWindows = wrap "^fg(#808080)^bg()" "^fg()^bg()"
    ,ppUrgent = wrap "^fg(#FF0000)^bg()" "^fg()^bg()"
    ,ppTitle = \x -> if null x
    then ""
    else "< ^fg(#FFFFFF)^bg()" ++ shortened 23 x ++ "^fg()^bg() >"
    ,ppLayout = \x -> "^fg(#FFBB00)^bg()"
    ++ case x of
    "Tall" -> "Tiled"
    "Full" -> "Full"
    "Mirror Tall" -> "Tiled Bottom"
    "Tabbed Bottom Simplest" -> "Tabbed"
    _ -> x
    ++ "^fg()^bg()"
    ,ppSep = " "
    ,ppWsSep = ""
    ,ppOutput = hPutStrLn h
    Last edited by rangalo (2010-04-22 14:52:13)

  • HT1212 Unlocking ipad  2 ios7 with cracked screen.

    I thought I had already backed/syncedmy ipad up to my computer but aparently have not.
    Now, my screen is cracked on my ipad. I can slide it to get to the passcode screenbut dont have enough functionality to get my passcode in to it.
    I need to get it unlocked just once to get it synced up to itunes so when I send it to apple, I dont loose everyting... Any suggestions?
    I have tried putting my password in multiple times after sliding to get it to the passcode page, but I dont hvae the functionality to get my password in with the screen being so messed up.

    Apple's Limited Warranty http://www.apple.com/legal/warranty/ for iPad excludes coverage for damage resulting from accident, disassembly, unauthorized service and unauthorized modifications.
    Out-of-Warranty Service
         If you own an iPad that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will replace your iPad with an iPad that is new or equivalent to new in both performance and reliability for the Out-of-Warranty Service fee listed below.    
    iPad model
    Out-of-Warranty Service Fee
    iPad mini
    $219
    iPad 3rd, 4th generation
    $299
    iPad 2, iPad
    $249
    A $6.95 shipping fee will be added if service is arranged through Apple and requires shipping. All fees are in US dollars and are subject to local tax.
    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPad that has failed due to contact with liquid may be eligible for out-of-warranty service. See http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
    You may can get the iPad repaired at 3rd party repair sources for less $, however, any remaining Apple warranty will be voided.
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    iGadgetResQ
    http://www.igadgetresq.com/ipad-repair/
     Cheers, Tom

  • HT1212 So my phone is messed up and you can't do anything with the screen...in order for me to sink it to back up i have to enter the passcode because it had a lock on it...and i can't due to it being messed up...is there any way around this...

    So my phone is messed up and you can't do anything with the screen...in order for me to sink it to back up i have to enter the passcode because it had a lock on it...and i can't due to it being messed up...is there any way around this...

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • HT4528 Why is it that everything is fine with my verizon account and apple is messing with my pre order of the iphone 5?

    Why is it that everything is fine with my verizon account and apple is messing with my pre order of the iphone 5 telling me that verizon is "rejecting" my order.. My verizon account is fine, and I am eligible for an upgrade, there is no past due balance.. the order went from being prepared to ship back to processing 2 days before it's supposed to get here.. still says it's going to deliver 9/21, yet it still stuck in processing mode, called apple for the past couple of days since i ordered it ON TIME and basically spoke to 17 different people telling me all different things and seems as if it just becomes more and more of a problem..

    this what most people say, track in on UPS website using your phone number. its TRUE and better tracking info
    more info here
    https://discussions.apple.com/thread/4311254?tstart=0

  • Why is it that everything is fine with my verizon account and apple is messing with my pre order of the iphone 5?

    Why is it that everything is fine with my verizon account and apple is messing with my pre order of the iphone 5 telling me that verizon is "rejecting" my order.. My verizon account is fine, and I am eligible for an upgrade, there is no past due balance.. the order went from being prepared to ship back to processing 2 days before it's supposed to get here.. still says it's going to deliver 9/21, yet it still stuck in processing mode, called apple for the past couple of days since i ordered it ON TIME and basically spoke to 17 different people telling me all different things and seems as if it just becomes more and more of a problem..

    this what most people say, track in on UPS website using your phone number. its TRUE and better tracking info
    more info here
    https://discussions.apple.com/thread/4311254?tstart=0

  • My screen is cracked on my iPhone 5 and it still works perfectly but now, it won't charge. I have two chargers and neither work.  Is it my screen that has messed with the charging area?

    My screen is cracked on my iPhone 5 and it still works perfectly but now, it won't charge. I have two chargers and neither work.  Is it my screen that has messed with the charging area?

    Probably when you dropped it something inside the phone broke too.

  • My macbook pro screen is totally messed up in different positions with the screen

    My screen is totally messed up when I put my screen in different positions.
    Does anyone know about this problem?
    Picture on the screen is just below.
    How am I suppose to fix this problem? I have never dropped or damaged my Macbook Pro, its in perfect conditions (besides this).
    Its a Macbook Pro 13" Sent 2011
    2,4 GHz Intel Core i5
    16 gb 1333 mhz DDR3
    Intel HD Graphics 3000 512 MB
    Thanks for the help in advance.

    Parts fail - there's likely nothing that you did to make the machine fail. Good thing you've that homeowner's insurance - I have an accidental damage rider on my renter's insurance. Something like $6 a month for up to $10,000 in coverage.
    Get the to an Apple Store or AASP... they'll be able to fix it.
    Good luck,
    Clinton

  • Help with laptop screen?

    I am wondering if all I need to order is a new laptop screen or if I will need anything else replaced. I'm not sure what all comes when you order a new laptop screen like if its just the outer glass or full screen assembly. I will try to give as much detail as I can. I was also wondering if anyone knows of a good site for screens that has a good reputation and pricing?
    I have a Lenovo B570 Model: 1068-AFU Laptop. My son was using it and he closed the screen with a pencil (or something) laying on the keyboard. He then decided to lay his book(s) on top of it. When he opened it the next day and turned it on the screen was all messed up. The glass itself about 2" from the bottom of the screen up against the left side is a small crack that spider webs out about 1-2 inches. Around the crack the screen is black with a purple line surrounding it. Most of the upper left of the screen is white with multicolored vertical lines, the rest of the screen you can see the login screen but has horizontal lines and the whole screen is flickering like crazy. I can still move the cursor around but can only see it in the top right ⅓ of the screen where the only change is the flickering.
    Solved!
    Go to Solution.

    hi DreadSpawn,
    Welcome to Lenovo Community Forums!
    Based on your description, You just have to replace the LCD Screen,
    This link should get you going, Screen from resellers don't come together with the covers. So I would suggest to examine the LCD covers on your computer see if it took damage as well, Normally If the Plastics were damage the LCD Itself will move while still attached to the covers.
       You can Check this Hardware Maintenance Manual about Checking and replacing parts on your B570.
    Just be extracareful in replacing parts, If you can have a Local Tech replace it then that's OK.
    Hope this helps
    Cheers!
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Phone with busted screen turns on right after turn...

    Hello everyone,
    Thought i'd register to lay out a problem i have with my N95 phone. First of all, great phone, ive been using it for years and it still competes with everything out there for me. It did break down occasionally, but nothing i couldn't fix by cleaning the contacts or whatever, i always found a way to get it going again.
    Last month somewhere i went for a run, but on my way there the derailleur of my bike (gear shifter thing) snapped off, my wheel locked up, i came tumbling off and i had to fish my beloved N95 out of my pocket in two bits, the screen and the main body. After carrying my bike home i ordered a new flex cable, a new screen and a new body for my N95, build it in with no problem at all (done it 3 times before) and popped in the battery to have a go. That's when it got interesting.
    The phone turned on (giving the customary bleep), the keys lit up (although one keyboard led seemed to have broken) but the screen wouldn't turn on. Oh well i thought, let me just buy another screen since this one is obviously DOA. But with the second screen it still wouldn't work, and what are the odds of receiving two DOA parts from different stores? Not very likely. 
    I started looking for cases similar to mine and i came across tons of topics, they all pointed in the same general direction, format the phone using either the 3 * green button method or calling to #7370# and so on. Would be fine solutions if my screen worked, but since it didn't i was in for a blast. I tried the 3 button method and it seemed to be doing something, but since i couldn't see anything it was a little tricky to tell, but anyway i just assumed it did something. I left for a few days (i'm not one for half measures) hooked to the power and just let it format, or i thought so because i couldn't actually see anything happening because the screen wouldn't come on. After seeing nothing change i just turned it off. But it wouldn't turn off, because immediately after it gave a bleep and turned back on again. When i try to shut it down it happens again, comes back on. Only way to kill the power is to take out the battery, but when i pop the battery back in the same thing happens, the phone turning on after turning it off. 
    So to recap: phone busted, new flexcable, new screen and new body, after reassembling screen not working and after a seemingly botched attempt at formatting it won't turn off normally, instead it turns back on with the screen still not working. 
    The obvious question here is: what is going on and what can i do to get it going again? Either by formatting the thing and hopefully fixing corrupt video drivers and get the screen going again or some other solution i haven't thought of yet. Any suggestion would be greatly appreciated, as i said i think its a fantastic phone. Now im using my old 1100 which is of course a poor substitute to an N95, even if its more functional in terms of being able to use it to hammer concrete nails into walls :-) And i know what your thinking: just drop it in the bin and buy a new one. But i'd rather fix it, i always try to fix broken appliances, phones and computers and it has probably saved me thousands of euros. So again: any help is greatly appreciated!
    Moderator's Note: We have removed mention of unofficial parts which may void warranty of other users.

    Hi miintz,
    You phone will need repair. Please contact a Nokia Care point in your country so they can take a look at your phone and help. You can find Care point locations globally from www.nokia.com/repair or your local Nokia website -> Support.
    Also note that as your warranty may be void, a charge may be in place to get it fixed. Let us know how you get on.
    Regards,
    haZey
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • Ibook g3 OSX 10.2.8 was upgraded to 10.4 but screen went black, sound fine.  How do I revert to 10.2.8 with blank screen?

    So here's what happened.  The Apple Store Geniuses generously upgraded my ibook g3 with OSX 10.2.8 to OSX 10.4 via USB port since my CD drive no longer works.  But the screen suddenly went black, sound was fine.  Genius was stumped, but when I restarted later I very briefly got an initial screen plus the music that accompanies an initial OS installation before screen went black again.  I really think that OSX 10.4 was more than my ibook g3 could handle.  I don't recall the specifications anymore and can't check them with a black screen, but capacity was fairly limited.  I went back to Apple a few weeks ago to ask them to downgrade my poor ibook g3 to OSX 10.3 which seems more likely to work with my computer's specifications, but was informed that OSX 10.3 is no longer available for them to load via USB.  Today it occured to me that OSX 10.2.8 is still somewhere on my ibook, and if there's some shortcut I can use to restart under 10.2 instead of 10.4, some switch of OS I can make while blind (since the screen is currently dark), I could at least still use the ibook using the old 10.2 OS.  Is there a way to do this switch in OSX while essentially blind?  If not, my ibook is basically a doorstop I originally spent over $600 on 10 years ago.  I really can't afford to just run out an buy new computers as I am disabled and dying a slow painful death from Lyme disease, but can't afford medication to treat my own illness, let alone buy another computer every 5 years.  Please help!

    Hello,
    Ok let's see what we can do here.
    First thing to try is resetting the PMU. Http://support.apple.com/kb/HT1431 it may make no difference but its good practice to do so.
    So times it can resolve faults. You say they installed Mac OS X 10.4. Did they setup a user a count and did you see the desktop? Did they simply hand it back to you when the installed failed with a blank screen?
    The truth is, in order for you to restore your iBook your going to need the system restore disk. With a broken CD drive this has limitations as you have no real means to install.
    The only option would be to use target disk mode on an external drive, but being an early G3 iBook I'm not sure if target disk mode will work. I am going to assume the shop used this method to install via USB.
    What would be a good solution is to fit a replacement CD drive. They are often cheap enough to buy and relatively easy to fit on a white duel USB model. Replacement CD drives can be brought from eBay at very little money.
    An online guide can help you fit one with the right screwdrivers.
    With a replacement drive, you will be open to better options for installing or even using an apple hardware test disk to diagnose any faults with the screen.
    Suprised you was left in such a situation by the shop.

  • Creating sales order with reference to order

    Hi SD gurus.
    I try creating a sales order with reference to order, but I get this error message: "Flow control: Entry SAPMV45B, UER1, E0, *   , AU  , * is missing in T185". I don't know what is missing. Please, could you help me?
    Thanks a lot.
    Marta.

    hi,
    this is to inform you that,
    i went to SE16N given there T185 and checked with UER1 which is an FCODE FOR OVER VIEW SCREEN in VOV8.
    this entry is missing for the combination.
    please check in your sales order in VOV8 whether you have maintained UER1 in the above field.
    if not :
    please maintain the entries missed in T185 in SM30.
    because i have checked teh same in SM30 it is having opportunity to maintain.
    hope this will solve your issue.
    regards,
    balajia
    Edited by: balaji timmampalli achari on Nov 23, 2010 12:00 PM

  • I have an external display, but the screen ratio is messed up in games.

    I've got:
    - A new MacBook Pro 15" with Lion (a month old maybe), it's the 2.2 GHz one (with 8 GB RAM)
    - A Samsung Syncmaster BX2235 screen, working at a resolution of 1920x1080 pixels
    - A VGA connector to plug the Syncmaster in to the laptop.
    My problem:
    When I normally use my laptop with my external display in Lion it supports 1920x1080 without a problem (see photo 1), when I watch a movie in full screen too, but as soon as I start up a game (any game: WoW, TF2, Worms, etc) in full screen and I set the resolution to 1920x1080 it'll mess up the screen (see photo 2). I'm not sure if you see it at first glimpse but there are black bars at both the left and the right side of the screen, the left one is bigger than the right one.
    Anyway in WoW there is a function that you can run the game in Windowed but still Full Screen. When I do that I can access the top OSX bar (the one with the clock), and click on the display icon. It now shows there are 2 versions of 1920x1080 @ 60Hz (see photo 3). If I click the one that isn't checked, it'll fix the screen and I can view the game on this display exactly the way I want it.
    I had an older MacBook Pro (from 2009, 15", 2.8GHz Dual Core) running Snow Leopard, I played some of the same games on that and I NEVER had problems with this screen. I gave it to my sis so I tested it again and there are still no problems.
    Now naturally my question is: what is the problem and how can I fix it?
    Photo 1: http://imageshack.us/photo/my-images/835/fotoik.jpg/
    Photo 2: http://imageshack.us/photo/my-images/38/fotocopyt.jpg/
    Photo 3: http://imageshack.us/photo/my-images/851/fotocopy2.jpg/

    Restore

  • Interaction Center Sales with ERP Sales Order

    We are in the process of upgrading from CRM 4.0 sp 6 to CRM 2007.  We have been using the Web IC and Mobile sales for the last 4 years.  In our original CRM 4.0 implementation (which was developed by SAP) we were using the CRM Web IC to create orders with R/3 using a couple of BADI's.  We are currently using R/3 4.7 and have plans to upgrade to ECC 6.0 next year.  I was just rereading some of the documentation in the upgrade guide and came across the following line:
    "The following software units are required for the Interaction Center Sales with ERP Sales Order scenario:
    Mandatory:  IC WebClient with specific ERP Sales order viewset requires SAP ECC 6.0"
    This implies that the standard Interaction Center Sales with ERP Sales Order functionality will not work in our current landscape and that it would only do so when we upgrade to ECC.  What options are open to us to get around this?  What is the technical reason why this functionality doesn't work with SAP R/3 4.7?
    I can't imagine we are the first company to face this problem and I can't imagine everyone upgraded to ECC 6 - so what approaches have people taken to address this issue
    Thanks in advance
    Eddie

    In the last 12 months we upgraded from 4.0 to 5.0 in CRM and went form 46C to ECC 6.0.
    In your current landscape you can create orders in the ICWC where the order is created in CRM and replicates to R/3 4.7.     You have the replication scenarios X, Y, Z available to you.
    Your other option is using the ICWC R/3 order screen where you basically are calling R/3 transaction VA01 and entering the order in the ICWC but the order entry in being done directly into R/3 via your ITS server.  Looks almost exactly like VA01 in the gui.  The menu bars are a little different. 
    The ERP order looks like other ICWC screens,  is very sharp and users wouldn't know that they are entering the order directly in ECC.  We have been using it about 3 months.  More Pro's than Con's, if you have user exits in MV45AFZ* the ERP order still uses them  (but t-code isn't VA01 if you have condition If statements around t-codes).
    Hope this helps,

  • MIGO vs MB1a - cancellation with reference to order

    Folks,
    Within MB1A we have the option to make a cancellation with reference to order by going into the menu in the selection screen:
    Goods issue / Cancel with reference / To order.
    This allows the user to only cancel issues for those items that were initially issued on the order. I was trying to find the same logic in MIGO but I cant find it. Customizing also only shows Material document as reference document for cancellations. We cannot add another reference document, or can we?
    Thanks,
    MZ

    Hi,
    MIGO is the enjoy transaction can be used for GR,GI  and CANCELLATION. If you want to cancell with reference to order, that order might be partially completed, still delivery need to done on this, to which quantity in order you will post cacellation. Hence SAP system proposed to refer materila document as a reference for cancellation. With that reference the items which are issued or received can be cancelled exactly (quantity and amount)
    In MB1A :It is purely related to GI and refer the order
    Hence in standard SAP in MIGO, you cannot have option of order as reference for cancellation. I hope it will help you. Thanking you.

Maybe you are looking for

  • IPhone 5S lost voicemail and when I tap vm icon the phone diales voicemail and gets busy signal.  No other options show.

    iPhone 5S lost voice mail and when I tap vm icon the phone dials voice mail and gets busy signal.  No other options show. started yesterday.  No voice mail at all.  When I tap the voice mail icon the phone immediately dials some number and that numbe

  • Issue with app not completely installed

    App. "Quiz" related to TV show "Kruitfabriek" on Belgianfootball TV station "Vier" is being installed. Symbol appears on the screen, but installation is not complete. It now also blocks all other updates and downloads via iTunes, ... As I try to dele

  • How can I get my iMovie 4 working with a USB Camcorder

    Hello everybody, I bought a Sony DCR SX33E which does not have a FireWire connection. IMovie does not recognize the camcorder and it is not possible to transfer the recorded material to iMovie 4. What can I do to get the camcorder working with my iMo

  • Using logging.properties in weblogic 10.3.6

    Hi I have created logging.properties under Middleware Home and the content of property file is below ####################Logging.properties file content#################### handlers = java.util.logging.ConsoleHandler,java.util.logging.FileHandler.lev

  • Empty Events, Everything!  PLEASE HELP!

    Hi Guys, I recently tried opening my iPhoto to find that all of my events and albums are empty!  They are all still there, and organised, and named in the same way as when I was last looking at them, but when I open an event, the only photo in there