Automator: approximate mouse moves!

Hi,
I am new with Automator and I encounter problems when I play a previoulsy recorded mouse move process:
the mouse doesn't replicate the moves I recorded!
1° I want to modify the System Preferences, so I record the mouse going to Apple menu, click on it, select System Preferences:
http://cjoint.com/data/fosyejMnKb.htm
I stop the Automator recording.
2° I play the Process. Automator moves the mouse to Apple menu, click on it, BUT selects another item from the menu!
http://cjoint.com/data/fosBAZtm5R.htm
3° But as far as I can see, it seems that the process was correct:
http://cjoint.com/data/fosEc7hbLX.htm
Am I wrong somewhere?
Or is it a bug?
Thanks for your help!
PAul

The last link should be : http://cjoint.com/data/fphVYnfBtR.htm
I still don't understand why the movement are wrongly reproduced...
Anyboby knows?
ジョ
Oui tu as raison (je débute...) et j'ai suivi ton idée : j'ouvre bien les Préférences Système et complète ensuite en enregistrant mes mouvements de souris.
J'ai juste des soucis concernant les clics et valeurs :
Automator enregistre par exemple le nombre de fois que je clique sur une checkbox mais pas la valeur qu'elle doit prendre.
Idem pour les curseurs : Automator modifie leur valeur, mais en fonction de la position au moment où le processus est lu. Et malheureusement pas en leur affectant la valeur que j'avais défini lors de l'enregistrement.
Un moyen d'être plus fin dans les valeurs à affecter ?
Message was edited by: Eric Azerty

Similar Messages

  • How to record mouse movements?

    Hello,
    I have the most updated version of Mac OS on my 2014 Macbook Air. Is there a program I can use to record my mouse strokes and clicks? I am doing a repetitive task and would like for the mouse to move on its own and make the same exact movements and clicks. Is this possible on automator and if so how? And if not, what free program is available which can achieve this?
    Thanks for the input!

    When Automator is started, it normally asks for the kind of document that you want to create. Select "work flow". Then near to the upper right corner of the automator window there will be a red button labeled "record". from that point on all the mouse movements and clicks will be stored in the workflow until you click on the stop recording button that shows on a special floating window that automator displays while your mouse actions are recorded.

  • Why does my mouse move slowly?

    Why does my mouse move slow?

    Check the setting for tracking speed. You'll find that in System Preferences > Mouse.
    Note that tracking speed has variable accelleration associated with it; it responds to the speed of the mouse movement as well as the distance. When the tracking speed is set to fast, a slow movement of the mouse will yield an approximate one-to-one response from the cursor; but if you flick the mouse quickly, the cursor will fly across thre screen.
    If you're using a non-Apple mouse, and it came with its own software, check in that control pane for a similar setting.

  • I just created a new profile/user on my MacBook Pro. My pointer/mouse. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. Mouse moves but will not click. Already tried restarting and the pram zap.

    I just created a new profile/user on my MacBook Pro. My pointer/mouse on my trackpad. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. The Mouse moves but will not click. Already tried restarting and the pram zap. The problem starts when I log out of my main profile. I get to the login screen and my laptop stops responding to clicks. When I manage to make my way back to my main profile the mouse works perfectly.  Should I just delete the new profile and try again?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • After sleep, retina MacBook Pro (Mid 2014) does not recognize usb connected mouse movement

    After sleep, retina MacBook Pro (Mid 2014, on 10.9.4) does not recognize usb connected mouse movement. I have tried a generic usb mouse and my Razer Deathadder usb mouse. Both mice work before sleep; but after sleep, the computer no longer recognizes mouse movement while still recognizing the mouse buttons when pressed. Any idea why this is occurring?

    Hello, chocotac0.  
    Thank you for visiting Apple Support Communities.
    Here are some troubleshooting steps that I would recommend when experiencing this issue.
    OS X Mavericks: Reset your computer’s PRAM
    http://support.apple.com/kb/ph14222
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    OS X Mavericks: If a USB device isn’t working
    http://support.apple.com/kb/PH13876
    Cheers,
    Jason H.

  • How to change the mouse cursor icon type when mouse moves out of client area ( propertysheet) WTL?

    I got stuck with an issue in property sheet .I want to load different cursor when the mouse position is within the client area and load another when moves out of the client area.
    In the porpetysheet I added four page. In the first page when I click next I am loading cursor of IDC_WAIT type and loading IDC_ARROW when the mouse moves out of the client area.
    In the page class I triggered the event for WM_MOUSEMOVE as follow:
        MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
    LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    if(TRUE == m_bIsNextBtnClicked)
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    else
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    This event is getting triggered and absolutely had no issue with this. Similarly I tried adding `MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave)` this event making an assumption that this will get triggered if the mouse moves out of the client area,  but
    this event did not get triggered at all.If this is not the mouse event to be triggered for mouseleave which event should I trigger?
    LRESULT OnMouseLeave(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    Now when I click Next button , **I was actually calling a function which is taking sometime to return** . Before to this function I am loading IDC_WAIT cursor i.e., 
     `::SetCursor(LoadCursor(NULL, IDC_WAIT));` . 
    Now when move the mouse cursor on to the non-client area I want to load IDC_ARROW cursor i.e., 
        ::SetCursor(LoadCursor(NULL, IDC_ARROW)); 
    When the moves on to the non-client area I am handling the mouse event in sheet derived class as follows,
    MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnNCMouseMove)
    LRESULT OnNCMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return 0;
    This event is not getting triggered until unless the function in the Next button event is executed.
    I want both of them to be done in parallel i.e, click Next button now hover mouse on the client area, Busy icon should come and when mouse moves out of the client area then IDC_ARROW icon should come.
    LRESULT OnWizardNext()
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    m_bIsNextBtnIsClicked = TRUE;
    BOOL bRet = MyFun();
    m_bIsNextBtnIsClicked = FALSE;
    //Until this function(MyFun()) is executed **WM_NCMOUSEMOVE**
    //event is not getting triggered.But this event should get triggered and I
    //should be able to see the change of cursor within and out of client area.
    Can anyone kindly help me to solve this issue.
    SivaV

    Hello
    sivavuyyuru,
    For this issue, I am trying to involve someone to help look into, it might take some time and as soon as we get any result, we will tell you.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • On my Cinema Display the screen is blurry and shifts with mouse movement.

    I have had this screen for a year and a half and only use it once a week in my remote office. This morning I noticed blurring on the screen and the whole screen shifts up/down, left/right with mouse movement. Please help. I am getting a headache.
    Thanks In Advance,
    Rob

    Press Command-Option-8 once or twice.
    You have Zoom on. It is controlled in "Seeing" in "Universal Access" system preference, and by Control-Scrollwheel.

  • Flash video performance poor in Firefox 3 and other newer Gecko-based browsers; fails to detect mouse movement in full-s

    Regardless of configuration, I have found Flash video
    performance on Firefox 3 to be severely sub-par. Numerous visual
    lags occur throughout a typical Youtube video as it cannot seem to
    manage to maintain a steady frame rate. When in full-screen, mouse
    movement is not detected, forcing me to click in a full-screen
    Vimeo video in order to display its controls when I should have
    only needed to move the mouse. I was informed that the technical
    explanation for this is that Flash isn't triggering MouseEvents
    other than MouseEVENT.CLICK.
    In my tests, this behavior also occurred in Flashplayers 9
    and 10 as well as with recent versions of other browsers that also
    use the Gecko rendering engine, namely Camino, Flock and Songbird,
    but not in Firefox 2. I was told by a Mozilla employee that this
    issue can only be solved by Adobe.
    This has forced me to use the Safari browser as my only
    available work-around. I implore that these issues get resolved as
    quickly as possible.

    guys, im exactly experience the same issue here.. any
    solution guys? tks in advantage..

  • Every keystroke and mouse movement, I get an audio notice that I need to shut off. In Safari, the cursor cycles thru every link and metadata field and I get a verbal/audio notice of what it is.  How do I shut this option off???

    Every keystroke and mouse movement, I get an audio notice that I need to shut off. In Safari, the cursor cycles thru every link and metadata field and I get a verbal/audio notice of what it is.  How do I shut this option off???

    Press the key combination command-F5 to deactivate VoiceOver. If that doesn't work, proceed as follows.
    For OS X 10.7: From the menu bar, select
     ▹ System Preferences ▹ Universal Access ▹ Seeing ▹ VoiceOver: Off
    For OS X 10.8 or later: Select
     ▹ System Preferences ▹ Accessibility ▹ VoiceOver ▹ Enable VoiceOver: Off

  • Premiere Elements 13 issue with the mouse on When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip rom the mouse.    The clip follows my mouse movements and goes to other places in my

    Premiere Elements 13 issue with the mouse on MAC OSX Yosemite 10.10.1
    When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip from the mouse.
    The clip follows my mouse movements and goes to other places in my time line.
    I try to delete these extra insertions, but the mouse will not release the clip.
    Action I’ve taken: I’ve re-installed Premiere Elements 13. Problem remains.
    This issue has consumed too much of my time and does not go away.  It ruins my video.
    Help please.
    Thanks

    I tried using the Guest Account on my Mac. In the Guest Account, Illustrator works perfect!
    Then I started wondering what processes (tools/tweaks) I run by default on my account. Turned out the problem was called by a little background tool called RightZoom. RightZoom let's the green 'zoom' button always maximize your current window.
    So thanks! Problem solved!

  • How can I stop coalescing of mouse move/drag events in jdk1.6 ?

    Hello all,
    My application uses a [pen-based tablet|http://en.wikipedia.org/wiki/Graphics_tablet] to draw lines/curves. But the problem is: when I run my application, due to java’s default behavior of discarding the mouse events which occurs during the repaint call, the curves results in the set of joined straight lines.
    To overcome this problem, when searched over net, came across below link:
    [http://forums.sun.com/thread.jspa?messageID=10811388]
    I tried the option provided at the above URL i.e. overriding the below method of Component.java file:
    protected AWTEvent coalesceEvents(AWTEvent existingEvent,AWTEvent newEvent);
    But later found that, overriding this method worked fine for me for jdk1.5 but this solution did not work in case of jdk1.6. When reviewed the source of Component.java and EventQueue.java files in jdk1.6, found that this method is not having any implementation and simply returns “null” and the complete handling of coalescing of events occurs within EventQueue.java file’s local method which is mentioned below:
    private boolean coalesceEvent(AWTEvent e, int priority);
    As this method is part of EventQueue.java and also it is a private method, I am not finding any way to stop the coalescing of mouse move/drag events in jdk1.6.
    The main problem is that my application is purely based on jdk1.6 only.
    Can anybody help me out to solve this problem by providing any option of preventing the coalescing of mouse move/drag events in case of jdk1.6.
    Thank you.

    Look at the link I posted, you aren't double buffering correctly.
    I saw the other post you mistakenly made before you edited it. Not really a big deal, I was just wondering why you did that.

  • XY graph "mouse move" event stops generating when click on cursor

    Hello All
    When the mouse is moving freelly inside the XY graph control, the "mouse movement" event is fired.
    The same happens when muse clicks anywhere in the graph with the exception of cursors.
    hen mouse clicks on cursors the "mouse move" event is NOT generated even though the mouse is phisically moved.
    Is there any explanation to this.
    I enclose the example.
    regards
    Pawel

    Just today I had the same problem -> my solution:
    set event timeOut to some value(I have it at 1ms) then
    add to globalVariables some BOOL variable that will signal if mouse is down or up (set the flag in appropriate event),
    then add a case in the timeOut event which will read this
    global variable(flag) -> if it's TRUE then change the needed parameter.
    So even if the mouse move event isn't fired the main timeout event is.
    Not a perfect solution, but better than nothing.
    Peace
    Waldemar

  • CS3 Ext. Vista 64 jerky mouse movement

    Hi there,
    I have a huge problem with my 32 Bit Photoshop CS3 Extended under the operating system Windows Vista Business 64 Bit and don't know if this is a known problem or has to do with the 64 Bit or something. I don't know what to do more so I ask here in hope of some help.
    The problem: When I use the f-key to switch to a mode where the image uses the whole space behind the tool paletts and use the space-key to switch temporarily to the move tool to move the image around, my next mouse movements with click actions will be really jerky.
    To explain this further more imagine you are on a deep zoom level inside an image, using the polygon lasso to mark an object exactely, there's often the situation where you come to the border of what you can still see and what you can't see anymore. Here you'd use space and move the window a bit in the direction you want to continue marking the object. When I do that (in fact after the first time i do that) I see that the whole processing of generating those marking points with the lasso gets really jerky as if the pc is studdering. It is not possible to work fluently and/or fast this way. As you can see from my speccs (see further down for details) pc speed is no real issue here. Other things like GPU-heavy games (e.g. Crysis) don't show any studdering.
    Things I already tried to no success:
    1) deactivated version cue
    2) bumped the memory that Photoshop may use from 2.5 GB to the maximum of about 3.5 GB. Windows still has plenty of memory left for itself as Photoshop seems to have a border here that windows itself hasn't.
    3) deactivated GPU-Support temporarily
    Some more information:
    1) Windows and Photoshop are on their newest versions/patches.
    2) There is no emulation software and no Nero installed.
    3) The file I'm testing this with is newly made (ctrl-n) in a resolution of 1280x1024 @ 300 dpi plain white. This shouldn't be extremely large.
    4) Computer speccs: Intel Core i7 920 @ 4000 MHz, 6GB DDR3-1600, Geforce GTX 285 Black Edition, Watercooling for processor and north-/south-bridge and condensators. The whole system resides on 2 500GB Samsung Spinpoint F1's that run in raid 0 mode for speed purposes. Partitioning is done so that the operating system, programs, data, temp-files, photoshop swap file, windows swap file (and some more partitions) are each on separate partitions.
    5) CPU/GPU temperatures are on nice levels (about 50°C each) and at least what I see from the CPU usage all 4 CPU-cores are getting bored during all this (less than 10% usage each).
    6) This is nothing that is limited to the polygon lasso tool: If i use the clone stamp tool or a brush I get the same problem after moving the image around with the move tool on a higher zoom level.
    7) I didn't have this problem on my old pc with Athlon 64 4000+ single core with 2 MB RAM and Windows XP Prof. 32 Bit. Furthermore I haven't seen my new pc without that problem so far. So the problem exists from the beginning.
    Any help is much appreciated! I hope I made myself as clear as possible. If there are questions on your side please ask.
    Kind Regards
    Steve

    Yes, of course the guarantee is solely on the vendor's part. They give 5 years of guarantee on the hardware as they build them together.
    That is an interesting information with CS3 and multi-core-systems. I shall google that and see what information I find about it. Thanks for the remark.
    I'd be more than happy if some folks here could bring some more light in the 64Bit-RAM-size-scratch-disk-issue and how it affects CS3-behavior. Would be really helpful.
    Right now it should be (almost) like this: Vista gets about 2.5GB of RAM, Photoshop gets about 3.5GB of RAM, that is if Photoshop would take it (I'm not sure if it does although I configured it to do so). Being able to use the whole 6GB of RAM was the reason to use a 64Bit OS.
    EDIT: I found a test with dual-core and quad-core systems with Photoshop CS3. The operating system seems to be 32 Bit though. It seems that CS3 doesn't scale very well with 4 cores. It uses 2 apparently but cannot make use of more. But anyway as I said: My old PC with a speed of 2.4GHz (single core Athlon 64 4000+) whose clock-speed is not directely comparable to my i7's 4GHz because of efficiency did the job without studdering. It had only one core that was much (!) slower than any single core on my i7. Even if the multi-core cannot be used from CS3 one would think that it had to run faster with the i7. In my opinion it must have something to do with either the 64 Bit OS or the raid0. The partions were no issue on the old machine (although I used multiple HDDs in the past so Windows and Photoshop were on the same HDD on different partitions but the scratch disks were on another).

  • Mouse moves won't click on anything, can't get into computer

    My mouse moves aaround but will not click on anything.  Cannot get into the computer. Have tried taking battery out and then puttiing it back in.  Computer will start and go to desktop.

    My mouse moves aaround but will not click on anything.  Cannot get into the computer. Have tried taking battery out and then puttiing it back in.  Computer will start and go to desktop.

  • How to use touch start, touch move, mouse down, mouse move to move elements in edge

    How to use touch move and mouse move events events to move elements n edge?

    Here is my code for a vertical carousel for mouse and touch interaction.  it's not perfect, but it does the job.  change from Y to X for horizontal path.  past at Stage.compositionready event.
    // these are my elemens
    var temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
    var temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
    var temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
    var temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
    var temp5 = sym.getSymbol("vmenu2").$("info").position().top;
    var temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
    var temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
    var temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
    var temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
    var tempa = sym.getSymbol("vmenu2").$("tvchannels").height();
    var tempb = 200;
    var tempdiff = temp2 - temp1;
    var y1=0;
    var y2=0;
    var t = 0;
    $(document).bind("touchstart", function(e) { 
      e.preventDefault(); 
      y1 = e.originalEvent.touches[0].pageY;
      temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
      temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
      temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
      temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
      temp5 = sym.getSymbol("vmenu2").$("info").position().top;
      temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
      temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
      temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
      temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
      t = 1;
    $(document).bind("touchend", function(e) { 
      e.preventDefault(); 
      t = 0;
    $(document).bind("touchmove", function(e) { 
      e.preventDefault(); 
      //var x = e.originalEvent.touches[0].pageX;
      y2 = e.originalEvent.touches[0].pageY;
      //sym.getSymbol("vmenu2").$("tvchannels").css({top: y, left: x}); 
      if (t==1) {
        var y = y2 - y1; 
        var top1 = temp1 + y + tempdiff;
        var top2 = temp2 + y + tempdiff;
        var top3 = temp3 + y + tempdiff;
        var top4 = temp4 + y + tempdiff;
        var top5 = temp5 + y + tempdiff;
        var top6 = temp6 + y + tempdiff;
        var top7 = temp7 + y + tempdiff;
        var top8 = temp8 + y + tempdiff;
        var top9 = temp9 + y + tempdiff;
        if (top1<10) {
          if (top9>250) {
            sym.getSymbol("vmenu2").$("tvchannels").css({top: top1}); 
            sym.getSymbol("vmenu2").$("videosondemand").css(); 
            sym.getSymbol("vmenu2").$("radiochannels").css();
            sym.getSymbol("vmenu2").$("music2").css();
            sym.getSymbol("vmenu2").$("info").css();
            sym.getSymbol("vmenu2").$("vrtour").css();
            sym.getSymbol("vmenu2").$("weather").css();
            sym.getSymbol("vmenu2").$("clock").css();
            sym.getSymbol("vmenu2").$("settings").css();
    var d = 0;
    $(document).bind("mousedown", function(e) { 
      e.preventDefault(); 
      y1 = e.pageY;
      temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
      temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
      temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
      temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
      temp5 = sym.getSymbol("vmenu2").$("info").position().top;
      temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
      temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
      temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
      temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
      d = 1;
    $(document).bind("mouseup", function(e) { 
      e.preventDefault(); 
      d = 0;
    $(document).bind("mousemove", function(e) { 
      e.preventDefault(); 
      //var x = e.originalEvent.touches[0].pageX;
      y2 = e.pageY;
      //sym.getSymbol("vmenu2").$("tvchannels").css({top: y, left: x}); 
      if (d==1) {
        var y = y2 - y1; 
        var top1 = temp1 + y + tempdiff;
        var top2 = temp2 + y + tempdiff;
        var top3 = temp3 + y + tempdiff;
        var top4 = temp4 + y + tempdiff;
        var top5 = temp5 + y + tempdiff;
        var top6 = temp6 + y + tempdiff;
        var top7 = temp7 + y + tempdiff;
        var top8 = temp8 + y + tempdiff;
        var top9 = temp9 + y + tempdiff;
        if (top1<10) {
          if (top9>250) {
            sym.getSymbol("vmenu2").$("tvchannels").css({top: top1}); 
            sym.getSymbol("vmenu2").$("videosondemand").css(); 
            sym.getSymbol("vmenu2").$("radiochannels").css();
            sym.getSymbol("vmenu2").$("music2").css();
            sym.getSymbol("vmenu2").$("info").css();
            sym.getSymbol("vmenu2").$("vrtour").css();
            sym.getSymbol("vmenu2").$("weather").css();
            sym.getSymbol("vmenu2").$("clock").css();
            sym.getSymbol("vmenu2").$("settings").css();

Maybe you are looking for

  • Data from a view in the margin

    Hi, I have a view which shows the data for the margin correctly. It is a group above report which results in several pages. On page 1 the footer should be in swedish (a reminder to a swedish customer) and on page 2 the footer should be in english (a

  • NAT IN CATALYST 6509-HOW TO DO IT?

    Hello friends, The LAN CAMPUS is conformed by more than 20 VLANS and all the PCs can go to Internet. Now I have a new network cloud and I have to attach that network into my campus. To do that, I have a Public IP Pool to do translation. But I just ne

  • Printer HP Color LaserJet Pro MFP M176n

    El boton de encendio no funciona. Aprieto en el frontal y en el lateral. Acabo de desembalar la impresora. He probado a utilizar diferentes cables. Hay corriente en la toma.

  • Oracle Report is not finding the prt configuration file on 10G?

    Oracle Report is not finding the prt configuration file on reports server 10G. On another enviroment I had installed only Forms and Reports services. Here was finding the prt configuration file and running ok. Now I have "infrastructure" and "forms a

  • DM material

    Hi All, We have created the Purchase order and enter Delivery block in item detail customer data, the purpose is we block the purchase order.  But system allowing to do the outbound delivery.  Any body can please tell me how can we resolve this issue