Action control functionality doesn't work propery

Hi all
I defined Action control Z3 and assigned Action keys BOME(BOM Explosion) and FIRM(firm planned order header) in SPRO, After that I Put Z3 in MRP view for my related material in Material master but finally I ran MRP for a sales order and for generated Planned order Execute MDAC(Execute Action for planned order)  with Action Key FIRM , but it got following Error:
Z3 /  / FIRM is an invalid combination or action code not allowed.
Since I had run MRP BOME had been done previously and it should do Execution for FIRM but I don't know what is the problem.
Would you please Help me.
Regards
Bolourchi

Hi,
The break down dimension was given as 'D' type of dimension where the Rollup member was given in the rule.
Then the break down dimension was removed and also instead of rollup member, we gave actual BASE member.
Still it shows it as PASS, and the Control result DO NOT show the actual numbers.
Regards,
Rashmi

Similar Messages

  • The to_date function doesn't work ?

    Hello
    I don't know why my to_date function doesn't work on my pc.
    my statement is pretty complex so i just tried simple one
    select to_date('10-Jan-2006','dd-mon-yyyy') from dual;
    but even this one doesn't work it says it is invalid month
    howcome?
    is it because my Windows XP (not english version) doesn't recognise month Jan?
    i tried it another place it worked
    so is there any language pack / patch i need to install? ?
    so does OS matters?
    or how to fix this..please help me

    By default SQL Developer picks up it's language settings up from (on Windows) the Regional and Language Options. You can see what it has set by querying the NLS_SESSION_PARAMETERS view.
    Assuming you don't want to change to using DD-MM-YYYY formats for your months or change your regional settings on your PC, you need to tell SQL Developer which language you want, which you can do by adding the following lines to the file sqldeveloper\jdev\bin\sqldeveloper.conf:
    AddVMOption -Duser.language=en
    AddVMOption -Duser.country=US

  • Cannot print with a Samsung ML2160 printer (mono laser) and Pages. Print function doesn't work, only drag and drop in printer's queue

    Hello,
    I just purchased a Samsung ML2160 printer and it doesn't work with nor my Pages program, nor the Preview (to print PDF). No matter the way I tried, the Print function doesn't work and I cannot neither print or even enter the printer preferrences menu! My MacBook Pro has worked before with other printers, but now with the Samsung it doesn't work at all... Though, if I drag and drop a document, jpg, pdf in the printer queue, it prints just fine, but that method gives me absolutely no freedom to the printing... Could it be something from the Computer -> Machintosh HD -> Library -> Printers? Because a friend of mine was recently trying to save me some disk space, and therefore erasing part of the HP printer (to remove the previous printer I owned)...
    If anyone has any idea, that would be much appreciated
    Thank you in advance

    Do the sensible thing, as you say neither Preview nor Pages print, try other programs eg TextEdit. If none of them print then it is a System problem and very likely the printer drivers are AWOL or were never installed.
    Go to Samsung's website and download their software for the Mac:
    http://www.samsung.com/uk/consumer/print-solutions/print-solutions/mono-printers /ML-2160/XEU-support
    http://www.samsung.com/uk/support/model/ML-2160/XEU-downloads
    Peter

  • Since I got my new fixed disk my scan function doesn't work (HP Photosmart Premium All-in-One-Drucker - C309g), what should I do

    since I got my new fixed disk my scan function doesn't work (HP Photosmart Premium All-in-One-Drucker - C309g), what should I do

    Check whether you have the latest driver:
    Printer and Scanner software available for download:
    http://support.apple.com/kb/HT3669?viewlocale=en_US

  • I upgraded my 3 yr old iMac to Snow Leopard and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site, but still no joy.  Any suggestions?

    I upgraded my 3 yr old iMac to Snow Leopard (OS X 10.6) and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site and installed them, but still no joy.  Any suggestions?

    aspaceman,
    Perhaps I owe you an apology.   Having re-read that downloading from HP was unsuccessful I feel uncomfortable.  Can I suggest you update your 10.6 system (as noted in your profile) to 10.6.8 (if it is not already there) by using the
    Mac OS X 10.6.8 Update Combo v1.1 combo update plus any software updates that then apply.  

  • Lightroom 5.7.1, Yosemite OS X - Synchronise Folder function doesn't work in Lr. Is there a compatibility issue? I can see the folders/images in Finder but when trying to synchronise folders in Lr it does not recognise that there are any images and theref

    Lightroom 5.7.1, Yosemite OS X - Synchronise Folder function doesn't work in Lr.
    Is there a compatibility issue? I can see the folders/images in Finder but when trying to synchronise folders in Lr it does not recognise that there are any images and therefore unable to import to catalogue. Anyone has any idea how to make it work. Thanks a lot.

    Hi Elba,
    Thank you very much for your reply. Not sure, however, that we are talking about the same problem.
    I am trying to perform the same function in Lr that I have been doing for many years in the past and has only been a problem in the last few days (possibly coinciding with upgrading to Yosemite, trying to find out whether that is the problem)
    I am not intending to sync any files with Creative Cloud but only trying to use 'Synchronize Folder' function in Lr. Normally, I would right click on a particular folder in Lr catalogue and click on that function to check that the Lr Catalogue is perfectly matching my drives where the original photos are actually stored.
    The problem that I only started to encounter is that I can see the files on the actual drives but they do not appear in my Lr Catalogue and they are completely invisible to Lr. I simply can not get Lr to recognise them and then import them to catalogue.
    If for example, I export images to Ps and then save and close them, they do appear on my drive but are invisible to Lr and I can't get them imported into the catalogue. Import to folder also not producing any results as they are still invisible to Lr.
    Completely baffled by it. Any idea what could be the reason?
    Kind regards,
    Nik

  • Sort function doesn't work E12

    the sort function doesn't work half the time on Elements 12 organizer.

    What about FUNCTION CLOCK_INFormula
    RETURN NUMBER
    IS
        l_hours_worked  NUMBER;
        l_to_return     NUMBER;
    BEGIN
        l_hours_worked := TO_NUMBER(NVL(:ATX_CLOCK_IN,'0'));
        IF (MOD((l_hours_worked - 0.02),0.25) = 0) THEN
            l_to_return := TRUNC((l_hours_worked - 0.02) * 4) / 4;
        ELSE
            l_to_return := TRUNC((l_hours_worked + 0.23) * 4) / 4;
        END IF;
        RETURN (l_to_return);
    EXCEPTION  
        WHEN VALUE_ERROR THEN
            RAISE_APPLICATION_ERROR ( -20100
            ,   'ERROR, Cannot represent '
            ||  :ATX_CLOCK_IN
            ||  ' as a number.');
    END CLOCK_INFormula;?
    This function assumes :ATX_CLOCK_IN is always positive.
    T.

  • Tap function doesn't work, recovered files in bin etc

    Hi
    I'm using Mac Book Pro 13' - Mac OS 10.6.8
    1) Every time, I switched on my laptop, the one finger (tap to click) function doesn't work (although I have set it up).
    I have to go to 'systems preferences' to set it up again.
    2) Why is there 'Recovered files' in the trash bin each I switched on my laptop? How to get rid of it?
    3) Sometimes when I work using Word 2011, it takes a long time to save (the little icon will be swirling and swirling) and then I had to force quit and lose unsaved info. Why does this happen and how to avoid it from happening?
    Pls help me. I'm in the middle of my thesis submission and urgently need solutions to my Mac problems. Thanks!

    Reinstall Photoshop. That often fixes the issue.

  • Preview function doesn't work in Cap2

    I just installed Captivate2. In the project I'm working on,
    the Preview function doesn't work. Or rather, it works
    sporadically... sometimes it does, and --- much more often -- it
    does not. What happens instead is, the "generating slides" message
    appears, and the progress-bar begins, but then suddenly the
    message/progress window disappears, WITHOUT generating the swf file
    and without doing any kind of preview. It happens on all the
    various options of the Preview function.
    It does work about one time in every ten attempts.
    This surely isn't acceptable... Anyone else encountering
    this???

    Hi UncleErnie
    By chance have you fiddled with the slide properties of any
    of the slides? One of the new options available in version 2 is to
    apply navigation options that cause slides to behave certain ways.
    So it stands to reason that if a slide was configured to jump to
    the end of the movie and the end of the movie option was to close
    the movie... Well, hopefully you see what I mean.
    Another question I would have is where are you editing your
    project? Are you possibly saving it to the company LAN and editing
    it using Captivate to make edits while in that location? If so,
    this is normally bad practice. Try moving the project locally and
    see if the issue resolves.
    Cheers... Rick

  • Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    drag the other clip 'over' the main clip
    the 2nd clip has to be selected/yellow border...
    then you're prompted in the Inspector with the several options...

  • Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on

    Hello,
    the Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on. Once you click on tools > Snapshot > raster, the window where the displayed 3D model will be white.
    The same happens when  you click on the taskbar.
    There one other option than to turn off the Aero Design?
    System:
    OS: Windows 7 32bit
    APEX 9.3.2
    nvidia Quattro NVS160
    4GB RAM
    Dell Latitude E6400
    Thanks,
    Olli

    Hello,
    the Snapshot function doesn't works in APEX 9.3.2, if the Aero Design is turned on. Once you click on tools > Snapshot > raster, the window where the displayed 3D model will be white.
    The same happens when  you click on the taskbar.
    There one other option than to turn off the Aero Design?
    System:
    OS: Windows 7 32bit
    APEX 9.3.2
    nvidia Quattro NVS160
    4GB RAM
    Dell Latitude E6400
    Thanks,
    Olli

  • Scroll up function doesn't work at all.

    My Blackberry Bold9930 is having some issues and it is my second one this one is about two months old. First of all it has a dead pixel and I know you can not do anything about that. The other issue is with the track pad in some windows scroll up/down function doesn't work at all but left to right works. In some windows the scroll up/down function it will but others will not WHY? Windows that the function will not work that I know of are any pop up winds and the tap page in the browser some options pages etc. Why is this? Yes I have done restarts latest software I have done everything.

    Can you scroll using the touchscreen?
    Whenever my trackpad scroll "sticks" or seems to not work, it's because I have too many browser windows open, or too many apps open.  Which browser are you using?
    Try closing apps, closing windows, and leaving open only those you are actually using at the time.  A battery pull (quick pull in my case) usually cures a sluggish phone every time for me.

  • In Yosemite, Magic Mouse double-click function doesn't work

    On my iMac running Yosemite 10.10.2, the double-click function on the Magic Mouse no longer works. So to open a folder, or anything for that matter, I must always do click-control ---and that doesn't work for everything. For example, I can't double click on a character in Glyphs, so this renders Glyphs useless. And so on... I have gone into preferences to see if anything was amiss in the settings, but everything checked out fine. Is there a fix for this, or do I have to wait for the next upgrade for Yosemite? Help! Thanks... --Royce

    What's the answer to this mouse problem, please? Why does my double-click no longer work on my magic mouse since downloading Yosemite 10.10.2 to my iMac? 
    What's up Apple?
    Mark

  • Log clip function doesn't work

    Trying to capture HDV footage. Everything was working fine and then at one point the "log clip" function just stopped working. I can see and hear the footage, I can control the camera, set in points and out points, basically everything but when I go to "log clip", nothing. It doesn't transfer to the bin. I can create a new folder from the capture window but I can not log the clip. I can not use the "Capture - Clip" button to capture each segment individually. If I use, "Capture - Now" when I hit escape, the clip has been digitized onto the hard drive, I see it, but it is not added to the bin. Thanks for any help offered.

    Short of anything really odd, I'd trash my preferences.
    Hopefully you've used FCPRescue before and have a good set of preferences you can revert to???? If not, google for FCP Rescue and use that to trash your preference files. They've got some cruff in them, I'm sure.
    Good luck,
    CaptM

  • HP 3330 MFP scanning function doesn't work

    I have a HP 3330 MFP wirelessly networked to (2) computers via a WPSM54G.  I am able to wirelessly print from both computers, but I am unable to scan from either.  When I open the HP LaserJet Document Manager, and initiate a scan, I receive a message "hp LaserJet Scan Control Viewer...Unable to communicate with the device.  The device is disconnected or powered off."  (The MFP is "on", and if I power the HP 3330 MFP "off" and "on", the result is the same.)
    If I connect the printer directly to the computer(s) via a USB 2 cable, the scanning function does not work - since the Linksys printer drivers were installed.  (I also noticed in Control Panel -> Printers and Faxes, there are some printer functions (ie., Scanning, Fax) have been removed - since the Linksys printer drivers were installed on the computer(s); and Network HP LaserJet 3330 (shared) was added as the default printer.
    Since the printing function works fine, I'm wondering if 1.) the installation of Linksys printer drivers on the computer(s), removed or altered the HP drivers/scanning function, 2.) if there is a printer driver that will allow the computer/printserver to recognize a scan command and/ or the printer, or finally, 3.) if the HP 3330 is simply not capable of perfoming all of the functions (scanning, faxing) that the WPSSM54G claims it is capable of perfoming...
    Any ideas?
    Thank you for your thoughts.
    saj

    Got it working.  The problem was with the firewall (Bit Defender).  Once I turned it off, and connected the print server (wirelessly), the scan function worked like a charm.  (It would be nice - in a perfect world - if when the print server experiences a problem, the Linksys software/ drivers would identify the cause, and at least point you in the right direction....you know, something like "...can't communicate with device, try turning off your firewall")
    Hope this helps someone.
    saj

Maybe you are looking for

  • Sending an Email by taking excel sheet from Application Server.

    Hi. I Searched in SDN related 'Sending an Email by taking excel sheet from Application Server'. But i didnt get. I got sending mails from local pc. Can some bdy provide me sample code how to send mail with an attachment. the attached file should get

  • [JS][CS3] Loading text into memory

    Hi. Am am trying to access an external txt file which holds data for my script.  I have looked at the famous "FindChangeByList" and tried to work from there.  However, I am not going to need input from the user for the txt file location, it will alwa

  • Searching Multiple Articles at Once

    The Platinum Edition of the 7th Edition of Perry's Handbook of Chemical Engineering came on a CD with an Adobe edition with a special  Adobe add-on that allowed searching of multiple articles at once.  This edition of the famous print book played the

  • Random number generation in numbers

    I cannot find out how to create a random number colum. It ios very easy on Excell ,but my attempts on numbers have been frustrating. I look at the instructions, but when I click on formulas it doesnt show the whole list.

  • System problem in the delivery schedules of a purchase order ?

    hello to all, I am creating a purchase order and displaying it (in smart form). what i am noticing is the system does not keep that entry of the delivery schedule(with itself) that has the same audit quantity and delivered quantity. why is this so an