R12 New Apply Hold Functionality - Applicable Also to

Hello All,
We are upgrading to R12 and i see that in Create Hold Source there is an additional option to specify "Applicable Also To" and here you can specify All Operating Units
What i am finding is when i select that or if i give additional Operating Units i am getting the error "APP-ONT-251851: Entered hold criteria combination is not valid across operating units"
Does anyone know what this is doing ?
This will be helpful in cases where need to do Stop ship for an item across all Operating units
Thanks

This topic is being discussed in detail here.

Similar Messages

  • OM: Apply Hold after new a order line on line level..

    Hi All,
    There is an issue that we have to apply hold on line level when order is changed.(include update line or new line)
    And we try to use trigger(with PRAGMA AUTONOMOUS_TRANSACTION) to call Apply Hold API.
    It work when existed order lines are changed.
    But it not work when new a order line, at the after-insert moment, it CAN NOT apply Hold on this immature order line.
    How can we fulfill this requirement?
    Or the requirement is nonsense...
    Any suggestion will be appreciated.
    Best regards,
    Zhxiangl

    R U going to use any bapi  to split the line items???

  • My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    Thanks for your response and good luck wishes, I suspect I will need them!
    In principle, I agree re: the manufacturer's warranty. However, I am pretty upset that this is now my second iPod to develop a critical fault within weeks of the warranty expiring, and frankly, it is not unreasonable to expect a state-of-the-art $500 electronic device to last well beyond one year of life.
    I agree talking to Apple is not likely to do me any good (the clue is in how impossible they make it to talk to them in the first place) - but that is not necessarily OK. I expect I will have to pay money to get the battery replaced - again, not OK (full stop - but especially given the cost of the device and the money I have spent with Apple). Yes, the batteries have a limited lifespan, but it should last longer than this (and surely, I should notice a gradual decline in its functionality, not an instant stop).
    I will try Deggie's suggestion (see my reply post), but probably won't hold my breath (think I have already done this). I probably will have to get the new battery - and probably under my own steam. It is a principle at stake and I feel I should be able to let Apple know how I'm feeling - and am frustrated that they make this virtually impossible. It sends the very clear message that they are not interested in listening to their customers.

  • Vendor hold function

    Hello,
    our users work very often with the hold function in ME21N, because for new venndors we have a specific creating flow.
    So the purchaser creats a PO without vendornumber and do hold.
    The PO is correct in all points. The purchaser maintain the header text of PO also on a very detailed level. (2 pages is nessesary)
    If the Vendor is created the purchaser put it in the PO. What happens?
    All header texts are lost.
    Is this normal that the header text are lost if i fill the vendor in a holded PO?
    The same Behavior do we have on item level if we change the materialnumber.
    Here we lost all item texts.(material-text i would unterstand)
    Is this a normal Behavior or is there a possibility to manage this.
    Regards
    Ralf

    Hi,
    put a break-point in:
    program SAPMF05A
    include   MF05AI00_BELEG_MERKEN
    Module PAI BELEG_MERKEN
    CALL FUNCTION 'SAVE_TEMP_DOCUMENT'
    Best regards.

  • Apply Oracle Functions to Individual numeric characters in a string

    I'm trying to apply MOD function and some arithmetic to each and every numeric character with-in a string. Maximum length of the string is 30 characters, and its variable length. When I try the traditional for loop, my execution time increases drastically. Here are some details:
    If my string is: abc1234X-23J, I need to keep the alphabets and special characters as is, multiply each numeric by 5 add 3, apply a MOD of 10. I've done this in a function like this:
    CREATE OR REPLACE FUNCTION Test1(i_Text IN VARCHAR2) RETURN VARCHAR2 IS
    V_Output VARCHAR2(30) := '';
    BEGIN
    FOR I IN 1 .. LENGTH(i_Text) LOOP
    IF SUBSTR(i_Text, I, 1) IN ('0', '1', '2', '3', '4', '5', '6', '7', '8', '9') THEN
    V_Output := V_Output || TO_CHAR(MOD((TO_NUMBER(SUBSTR(i_Text, I, 1)) * 5) + 3, 10));
    ELSE
    V_Output := V_Output ||SUBSTR(i_Text, I, 1);
    END IF;
    END LOOP;
    RETURN V_Output;
    EXCEPTION WHEN OTHERS
    RETURN NULL;
    END;
    I need to apply this function to approximately. 4 columns, data volume is huge. I tried with 2.5 M records, in INSERT ... SELECT option, it takes 17 seconds without this function and around 6 minutes when I use this function. This is just a sample data, I would like this task to be completed with-in 30 seconds. Is there any way I can change my function or use any other option to get better performance?
    Note: I tried REGEXP_REPLACE - this didnt help me, increased my execution time - I had to use native dynamic sql in this case
    Tried with decode - this also didnt help.
    Any expert advice is appreciated.
    Thanks in advance.

    SQL> select mod((l*5)+3,10), l from (select level - 1 l from dual connect by level <= 10);
    MOD((L*5)+3,10)          L
                  3          0
                  8          1
                  3          2
                  8          3
                  3          4
                  8          5
                  3          6
                  8          7
                  3          8
                  8          9
    SQL> select translate('abc1234X-23J,','0123456789','3838383838') FROM DUAL;
    TRANSLATE('AB
    abc8383X-38J,Hope this helps
    cheers
    Raj
    Message was edited by: code formatting applied
    s.rajaram

  • How to Create a new Number Range Function in R3

    Hi,
    I need to create a new number range function in R3 and i have to call this function to get the new material number incremented by 1. Can any one please let me know the transaction code to create the number range function? Please also tell me how to call this number range function in ABAP pogram? Thanks for your help  in advance.
    Thanks and Regards,
    Kannan

    Hi,
    Go to snro
    create an object say zabc
    specify short text and long text and
    number length domain say num10
    then click number range interval at the top and specify starting and ending number.The number you want
    for ex
    from number 5700000000
    to number   6799999999
    make sure i should be no of digits in specify in previous .
    Then you use this object i.e zabc where ever you want
    for ex
       call function 'NUMBER_GET_NEXT'
                  exporting
                  nr_range_nr                   = '01'
                  object                        = <b>'ZABC'</b>
                  quantity                      = '1'
           SUBOBJECT                     = ' '
           TOYEAR                        = '0000'
           IGNORE_BUFFER                 = ' '
             importing
             number                        = number
           QUANTITY                      =
           RETURNCODE                    =
             exceptions
               interval_not_found          = 1
               number_range_not_intern     = 2
               object_not_found            = 3
               quantity_is_0               = 4
               quantity_is_not_1           = 5
               interval_overflow           = 6
               others                      = 7

  • "HOLD" functionality NOT working in Sourcing cockpit.

    Gurus,
    I have 2 issues:
    1)
    I am trying to hold requsitions in Sourcing cockpit but when I add them to Workarea and click " HOLD" button it doesn't do anything ( NO Messagee, Nothing) and when I check back in it still shows the requsition item in the scourcing cockpit not the hold status.
    I think the Hold Functionality is not working properly...is thee any fix to it or any OSS Note.
    2)
    We are facing a issue with the “Vendor Text” being getting copied from a catalog item to a Free Form item while the creation of shopping cart.
    When I am creating a SC - say with 3 line items with 3rd line item as Freeform item and 1st and 2nd as catalog items then the vendor text is getting copied from the Catalog line items in  to the Freeform line item.
    So if two catalog line items are there then Vendor text gets copied twice in the Freeform Line item.
    Is there any OSS note or any fix for this
    Kindly advice.
    ANKIT

    Hi,
    1)
    Please go through these SAP OSS Notes ->
    Note 1028009 Message 'Items are being processed by another user' 21.03.2007
    Note 680265 Incorrectly translated message in sourcing cockpit
    Hope this helps.Also seems to  be a bug in the system,so paralley raise an OSS message.
    2)
    Note 816763 - Copy items does not copy vendor text and internal note
    633726 - Internal note and vendor text are not copied
    661820 - Internal note/vendor text disappears
    Note 987686
    Note 988490
    Note 987640
    Note 1021692
    Note 930450 - Vendor text appears twice
    Related threads:
    Vendor Text and Internal Note in Shopping Cart
    SRM 5.0 SP 9 - Text fields shown incorrectly in 'Documents & Attachments'
    Text editor on top of page instead of under Documents
    SRM 5.0 SP 9 - Text fields shown incorrectly in 'Documents & Attachments'
    Re: Internal Note and Vendor Text field size
    Internal note, vendor text
    Re: Internal note text and vendor text disappears during the approval process.
    BR,
    Disha.
    Pls reward points for useful answers.

  • New itunes search function is terrible

    The new itunes search function is really terrible, as a dj and listener with over 250GB of mp3s I find the new system to be extremely frustrating. I want to be able to type in a tag and sort my music hierarchically and I am no longer able to do this.
    Sad.
    Colin

    If you want to go back to iTunes 10 I am happy to show you the way.
    I am happy to regard myself an expert now on how to downgrade iTunes 11 back to 10. Having found a straight forward and logical way of doing so I thought it my duty to share with others. I can't express what a relief it is to have version 10 back again. See the method below. Let me know how you got on.
    You can jump to the method below but I feel I need to express my view on the experience I have had of using iTunes 11.
    I have been a mac obsessed devoted fan all my life (I'm 46), never used a PC and got my first mac back in 1988. Until just the past few months I wouldn't hear anyone say anything derogatory about anything apple. However a few things are rocking my 'religious like' devotion. Most of all I have been dumfunded about issues of the recent iTunes evolution in version 11.
    I am also obsessed with music, movies and music videos. It's not just a hobby - I am a DJ and Video DJ by proffesion. iTunes, since the very first release, has been the backbone to the way I organise and store all my digital media. I never had any need to seek an alterantive and have also enjoyed the intergration it provides with my iPhone and other things etc etc.
    My libary is huge. I don't mean to brag but aside from my digital music collection of 40,000 + tracks, either purchassed from the iTunes store or imported from my CD colection, my music video collection is over 10,000. I am a proffeciant iTunes user and I often have reason to need to retag my files within iTunes or sometimes I use MetaX.
    Until now I have never resisted installing any available apple updates and even feel some excitement in anticipation of improved features etc. iTunes version 11 has changed all that now. It is, without question, an inferior version to 10. Anyone who feels otherwize is probaly only using itunes in a basic way and for this reason I have always thought there was a market for a pro version of iTunes for people like me.
    iTunes 11 simply doesn't work. I click to play a track, click again cos it hasn't started and click another time and only then do I get to hear the track play for the start three times. It takes ages to build links to external files, just as long as it takes to actually import them to the media folder. Tagging takes rediculous long the point yu would need to leave the job to be done over night. I could go on but you are probably reading this because you have aleady experienced your own issues concerning version 11.
    Befoe following the method below, I tried to seek alternatives to iTunes all together. I briefly tried Double Twist and Song Bird amougst many other but it truth iTunes is better for my personal purposes.
    The most dispointing thing about version 11 is the silence from Apple about the obvious problems. It is this specific fact that has agrivated me so much. Maybe I am romanticising, bt I can't help imagine that SJ would have never let version 11 go as far as actually being released.
    Here are the Stages and Steps: For OS X only. (have no idea for PC users). Thank you to Bogoss on MacForums, whoever you are.
    Stage 1.
    Note: Any changes you have made to your music files since you used last used version 10 will be lost but any purchasses you have made in the time since can be downloaded again if you can't find those purchasses in your media folder. If recently made playlists are of particular importance you could export the lists to somewhere for later.
    1. Back up your iTunes Folder(s) just incase
    2. Download these apps 1. AppZapper from http://appzapper.com (the free version will do). 2. Pacifist fromhttp://www.charlessoft.com.
    3. Download iTunes 10.7 (last version before 11). Check your download folder, it might still be there. You can also get it from : http://appldnld.apple.com/iTunes10/0...iTunes10.7.dmg
    4. Using AppZapper simply uninstall itunes 11. Before you drag the iTunes icon from the Application folder to the window you will need to open the preferences of AppZapper and deselect the tick next to "Keep Apple applications safe"
    5. Open the 10.7 dmg file, you will see the pkg file(usally you would double click it to install), but now, this time drag it out somewhere, eg desktop.
    6. Open Pacifist
    7 drag the pkg iTunes 10.7 file to pacifist and then click install from the menu bar
    8, during installation, click replace everytime a window pops up.
    9. installation finished, iTunes 10.7 is back!
    10. Don't open it yet!!!!
    Stage 2.
    See this video that explains the pocess here. http://www.youtube.com/watch?v=xXKZ2IBNsIA
    1. In FINDER - go to your iTunes Folder in the iTunes Folder.
    2. Within it, open the folder called Previous iTunes Libraries.
    3. Identify the most recent backup. It has the date at the end.
    4. Duplicate it. Move it to the desktop.
    5. Rename it as iTunes Library.itl. Basically remove the date from the file name.
    6. Go back to your iTunes Folder and rename the file there which is already named iTunes Library.itl to iTunes Library.itl.old.
    7. Now move the iTunes Library.itl file from your desktop to this location.
    8. Now open iTunes 10.7. If it can't find your iTunes library, select choose library and navigate the application to the new iTunes Library.itl file you created.
    9. Breath sigh of relief, you're done!
    10. Copy this and post it to help others. Only come back to me to say Thanks, not for more support.
    Danny

  • Apply hold on sales order lines programmatically

    Hi all,
      I am new to SCM and we have a requirement where Holds should be applied on Sales Order Lines based on some complex criteria that can not be met by the declarative "Apply Hold Criteria" option from Sales Orders window. So I want to know where can this custom code be hooked to put the Holds on the Lines when the criteria is met. Which of the following options are possible ?
    1. Custom Extension (or Hook) of Order Lines.
    2. Workflow Customisation
    If none of the above are possible, I guess then the only option will be scheduling a Custom Concurrent Program to apply holds.
    Please advise.
    Thanks,
    Sharath

    You should be able to add this as a workflow customization, but you'd need to call a procedure with PRAGMA AUTONOMOUS TRANSATION since commits in the workflow code  itself could cause problems.

  • I have downloaded and installed the latest version of numbers on my mac. Everytime I save and then try to reopen that document, I receive a message telling me that I need a new version of numbers. Also, when I try to sort the date column, it sorts out of

    I have downloaded and installed the latest version of numbers on my mac. Everytime I save and then try to reopen that document, I receive a message telling me that I need a new version of numbers. Also, when I try to sort the date column, it sorts out of order. The last version sorted fine.

    Welcome to Apple Support Communities
    When you install the new iWork version, the old iWork version is kept, so it looks like you are opening your old version.
    To fix this, open a Finder window, choose Applications in the sidebar and drag the new Numbers version to the Dock, so you can access to it quickly. Open all documents from this version. I don't recommend you to delete the old Numbers version in case you need it.
    Respecting to the second question, you will get better answers in the Numbers for OS X forum

  • If I changed my Apple ID password on my iphone then log into itunes on my phone with that new password, would it automatically sync to my laptop or would i need to put the new password into my laptop also?

    If I changed my Apple ID password on my iphone then log into itunes on my phone with that new password, would it automatically sync to my laptop or would i need to put the new password into my laptop also? My laptop got stolen so I changed my password and wanted to be sure it's safe to enter in the new one on my phone. I don't want it to snyc to my laptop.

    Hi loro,
    Thanks for visiting Apple Support Communities.
    I'm sorry to hear that your laptop was stolen. Changing your password was a good step. 
    Entering your new password on your iPhone will not affect the laptop, as mentioned in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/HT5624
    The next time you use an Apple feature or service that uses Apple ID, you'll be asked to sign in with your new Apple ID password.
    Best Regards,
    Jeremy

  • How do I move Elements 8 projects (slide shows) from a Windows XP computer to new Windows 7 computer that also has Elements 8 on it so that the slides shows will work (Elements 8 works well on the Windows 7 computer & I have done several new slide show pr

    How do I move Elements 8 projects (slide shows) from a Windows XP computer to new Windows 7 computer that also has Elements 8 on it so that the slides shows will work (Elements 8 works well on the Windows 7 computer & I have done several new slide show projects on it)?    I tried backup & restore without success.  I have also found the .psess files and copied them to the catalog in the new computer but when the sides shows are opened none of the images or music is there.  Only the text that I entered shows.  I have even tried to replicate the file paths from the XP computer to the new computer to see if that will help.

    UPDATE:  By a stroke of luck I happened to find a catalog link (a PSE8D file) in the 'My Catalog' file where the imported data was stored.  When I clicked on it to investigate what is was 'magically' all of my transferred projects appeared in Organizer.  Upon further investigation I found that the projects transferred from my XP computer were stored in a hidden catalog that had to be accessed through the Custom Location option in Catalog Manager (accessed by clicking File then Catalog then Custom Location).  No Windows or Elements search revealed this fact.  I am appreciative that I just got lucky.  The Adode/Photoshop company was absolutely of no help.  If fact to me their structure is designed to avoid contact with their customers unless you're buying a new product.  Their products have many good features (even though user unfriendly) and it's a shame they don't value their customers more once the sale is completed. 
    Bottom line:  All of the projects (sideshows) have been recovered and work in my new Windows 7 computer.  I hope my experience helps others. 

  • I have an imac bought late 2013, can i use it as a display for the new mac pro? I also want to use windows 8 on it, would this work with parallels or bootcamp?

    I have an imac bought late 2013, can i use it as a display for the new mac pro? I also want to use windows 8 on it, would this work with parallels or bootcamp?

    Yes, it supports target display mode. Windows can be run with either Parallels or Boot Camp.

  • On windows 8.1 charms bar does not show up and the touch functionality is also degraded

    upgraded my elitepad 900 to windows 8.1 . after this the charms bar does not show up and the touch functionality is also degraded while playing games. i believe i need the latest synaptics gesture suite.  Cannot find it. Please help.

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this HERE.
    HP ElitePad 900 G1 Tablet Support
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • What to do when my iPhone is asking for password of old apple I.D. when I don't have it and have created a new applie i.d.  Can anyone please help me on this issue?

    Can anyone please help me on this issue "What to do when my iPhone is asking for password of old apple I.D. when I don't have it and have created a new applie i.d."??

    Sir, Thank you very much for your prompt response.  I have already done this.  But the problem is still persisting.  Actually, I want to upgrade my WhattsApp application and as soon as I click the upgrade button in App Store, it asks for the password of previous apple i.d., which I don't have as I have bought this phone from somebody.  There is no option for log out or log in.  It there any other way out to upgrade the WhatsApp ????

Maybe you are looking for

  • NT CWS erroring out.

    We have installed 5.0.2 and the optional web services on a dev box. I get the following errors when trying to create a remote data source. The Server Configuration Interface for this Remote Data Source is unavailable. Check the URL configuration in t

  • After capture, small grey lines in viewer scrubber bar

    I have just captured about an hour of video to FCP 5 and when I open the clip in the viewer, there are 12 small grey lines in the lower half of the viewer scrubber bar, they seem to be equal distance apart. Anyone know what these are? At first I thou

  • MOS Scrollable Frame "pushing" background graphic

    Following on from my animated magazine cover, I am trying to overly a scrollable text frame which a user can pull the contents on the cover page, however it is pushing the background video as I scroll as if it is grouped with the background image. Th

  • Type euro sign on Windows 7 64-bit Lenovo X201

    Hi, The subject says it all: how do I type a Euro sign on my Lenovo X201, Windows 7, 64-bit. It is a US keyboard. I have tried Alt+4, Alt+5, Alt+e, etc, .... Thanks. Solved! Go to Solution.

  • Cceadmin - pcce vs ucce

    Is the cceadmin interface only for pcce vs ucce? I've got a customer using pcce and all cceadmin functionality is read/write, but another customer using ucce and all cceadmin functionality is readonly except for attributes. Is this by design or am I