OIC: How does the projected commission work in quoting? Does it migrated from Quoting to Sales Order? Is there any documentation available?

We are working in a project where they need to calculate commission "on the fly" according to the princing discount they gave to the customer on a quote (Oracle Quoting). As once confirmed the quote turn into a sales order in OM we would like to know if it (project commission) migrate to the sales order.?
Thanks in advance for your help!

Calamulus wrote:I completely agree; my confusion arises from the fact that the wiki has forever stated that the ondemand governor works like the conservative one by adjusting the frequency between all speeds available
It does. But like litemotiv says, it only does so for brief moments. Because most of the time it's more beneficial to switch to highest freq, so the job is done as fast as possible, allowing to cpu to go to idle as soon as possible.
Calamulus wrote:This can mislead users into thinking (like I did for about 3 years, if it turns out the wiki is mistaken) that by selecting ondemand they get the functionality that is actually offered by conservative instead.
It is the same functionality. It's just that ondemand is better at it. Conservative was only created for some buggy amd processors which had trouble with fast switching, so it shouldn't be used. Unless you have one of those old amd processors of course.

Similar Messages

  • I need help with working with old newspaper photos. The photos need to be blown up and displayed on a traveling exhibit. Is there any training available for this?

    The photos are from newspapers going back to the early 1900s and they are now on microfilm. I can get them digitized at 600dpi but that still doesn't make them ready for placement on a large display. Besides Adobe help I use Lynda.com but I can't find anything dealing with this very specific topic. Anyone have an idea of a training program that deals with this subject?

    Thinking back to when I've seen displays of newsprint that's been greatly magnified, being able to see the halftone screen pattern seems important.  It gives the display a look of authenticity.
    You say the library can scan at 600 ppi.  If that's 600 ppi of a greatly reduced image on a piece of microfiche, it may not give you the resolution you're looking for, and it's entirely possible that getting a quality optical print then scanning it would give you better.
    I don't see how you can plan how to proceed in anything like specific detail if you don't have an image that represents what you're really going to be starting with in detail.  Perhaps getting one scan might be a good idea.
    After that, you just need to figure out what ppi your final overall panel design is going to be at, and upsample the newspaper clippings to match, so that they're the size you need them to be.
    -Noel

  • I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    I have been edited a project for weeks. Today, a few minutes after opening the project to work on it again, my computer shut down abnormally. The timeline disappeared. All the media is still in the project but my edited timeline is gone. Please help!

    You have 10.6 on that machine, I suggest you stick with it for performance, third party hardware and software reasons as long as possible.
    Consider 10.8 (not 10.7) when it's released, because 10.7 and 10.8 will require a new investment in software and newer third party hardware as it requires newer drivers the old machines won't have. (forced upgrade because of software, really nice of them)
    http://roaringapps.com/apps:table
    Far as your Safari problem do these things until it's resolved:
    1: Software Update fully under the Apple menu.
    2: Check the status of your plug-ins and update (works for all browsers) also install Firefox and see if your problems continue. You should always have at least two browsers on the machine just in case one fails.
    https://www.mozilla.org/en-US/plugincheck/
    Flash install instructions/problem resolution here if you need it.
    How to install Flash, fix problems
    3: Install Safari again from Apple's web site
    https://www.apple.com/safari/
    4: Run through this list of fixes, stopping with #16 and report back before doing #17
    Step by Step to fix your Mac

  • How are the latest updates working???

    Hi
    Been away for a while and notice that my trusty Apple System Update is suggesting some changes to iDVD, iPhoto, iMovieHD and Quicktime. Last time I took the plunge blindfolded, my iLife was a disaster (summer 06...). How is the current suite working? I have another project to do. Should I upgrade? The suite from the last upgrade seems to be "happy".
    cheers
    Terri

    Hi t
    If You have a working environment that works - why risk it ?
    There has been some problems regarding iDVD 6.0.3 but if I understands it
    right then this depends on miss matching with other programs eg. OS and QT.
    So it seems as if OS is up to X.4.8 and QT to 7.1.3 it should work that said
    if repair permissions has been run before + after updating.
    Running repair hard disk (Apple disk util tool) from CD or ext hd from time to
    another is also a good habit.
    Yours Bengt W

  • How do the two codes work ?

    i came across the following code in socket programming in the net,could anyone please tell me that how do the following codes work together? there is no main class in ChatHandler programme but there seems that it is a separate programme.. being new to java i am unable to understand it, please someone help
    import java.io.IOException;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class ChatServer {
        public static final int DEFAULT_PORT = 9800;
        public static void main(String[] args) {
         int port = DEFAULT_PORT;
         ServerSocket serverSocket = null;
         Socket socket = null;
         try {
             if(args.length > 0)
                 port = Integer.parseInt(args[0]);
         } catch(NumberFormatException nfe) {
             System.err.println("Usage: java ChatServer [port]");
             System.err.println("Where options include:");
             System.err.println("\tport the port on which to listen.");
             System.exit(0);
         try {
             serverSocket = new ServerSocket(port);
             while(true) {
                 socket = serverSocket.accept();
                 ChatHandler handler = new ChatHandler(socket);
                 handler.start();
         } catch(IOException ioe) {
             ioe.printStackTrace();
         } finally {
             try {
                 serverSocket.close();
             } catch(IOException ioe) {
              ioe.printStackTrace();
    }// ChatHandler.java
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    import java.io.OutputStreamWriter;
    import java.io.PrintWriter;
    import java.net.Socket;
    import java.util.Vector;
    public class ChatHandler extends Thread {
      static Vector handlers = new Vector( 10 );
      private Socket socket;
      private BufferedReader in;
      private PrintWriter out;
        public ChatHandler(Socket socket) throws IOException {
            this.socket = socket;
         in = new BufferedReader(
             new InputStreamReader(socket.getInputStream()));
         out = new PrintWriter(
             new OutputStreamWriter(socket.getOutputStream()));
        public void run() {
            String line;
         synchronized(handlers) {
             handlers.addElement(this);
    // add() not found in Vector class
         try {
             while(!(line = in.readLine()).equalsIgnoreCase("/quit")) {
              for(int i = 0; i < handlers.size(); i++) {     
                   synchronized(handlers) {
                          ChatHandler handler =
                           (ChatHandler)handlers.elementAt(i);
                      handler.out.println(line + "\r");
                   handler.out.flush();
         } catch(IOException ioe) {
             ioe.printStackTrace();
         } finally {
             try {
              in.close();
              out.close();
              socket.close();
             } catch(IOException ioe) {
             } finally {
              synchronized(handlers) {
                  handlers.removeElement(this);
    }

    pranay09 wrote:
    ok, but when i am compiling the two codes, then for the second one i get the error that no main class found:No, you will never get that when compiling.You will get that when running, if the class you try to run is not on your classpath.
    main() is simply the entry point into your program for the JVM. When you say
    java MyClassYou're telling hte JVM to execute public static void main(String[] args) in the class MyClass. That class must be on your classpath and it must have that method. That class is then free to use any other classes, in its own package or in other packages (provided they are accessible and on the classpath), regardless of whether those classes have a main method.

  • How is the product allocation  work?

    How is the product allocation  works? (material master: Basic Data 1,) where is the place to maintain the parameters?
    point will given

    Product Allocation
    Configuration Overview; Allocation Specific Usage
    1.Allocation Procedure (OV1Z) The product allocation procedure is the parent of the entire allocation process. All materials that are to be included in the allocation scheme are required to have an allocation procedure assigned to it in the material master. In addition, as of release 4.0, it is in the procedure that the method of allocation is defined. The user has the opportunity to set an indicator to identify their choice of two different methods (discrete and cumulative allocation) to evaluate the quantities to be considered for product allocation.
    2.Allocation Object (OV2Z) The allocation object is the root level of the allocation process where actual data is entered and planned in LIS. The object allows the user to further break down a procedure into smaller parts for future validation of components comprising a specific material
    3.Allocation Hierarchy Mapping (OV3Z) Primarily, this transaction permits the assignment of an allocation procedure to an LIS information structure. Secondly, a character is assigned to the information structure to permit collective planning. Finally, the user can assign a step level to the procedure and information structure to sequence the order in which allocation quantities are checked. This functionality allows the user the opportunity to check product allocation against several product allocation scenarios, before the required quantity is confirmed
    4.Define Consumption Periods (OV5Z) The allocation consumption periods functionality is only valid if the allocation method flag has been set (OV1Z). If you have de-selected the method field, this functionality is not available. The consumption window indicates the number of past and future periods to be used in the allocation check.
    5.Control Product Allocation (OV4Z) In order for the allocation process to function properly, allocation control records are created primarily to map allocation procedure steps to their corresponding objects so that the allocation data records can be located for validation. Secondly, validity periods must be established to indicate when the allocation control records are active. Finally, the user has the option of establishing a conversion factor per allocation control record to accommodate BOM listings of constrained materials
    6.Activate Allocation for Requirement Class (OVZ0) In order to turn on allocation in the standard order processing functionality, the requirements class must have a flag indicating that allocation is relevant.
    7.Activate Allocation for Schedule Line Category (OVZ8) In order to turn on allocation in the standard order processing functionality, the schedule line must have a flag indicating that allocation is relevant
    8.Create Planning Hierarchy (MC61) In order to adequately establish allocation quantities, the user must initially determine the level at which the allocation is to take place and the aggregation factor of the allocation quantities. In this step, the levels for the collective allocation search procedure are also identified.
    9.Generate Masking Character (OV7Z) Upon completion of the level determination for the planning hierarchy, the collective allocation masking character must be generated to allow aggregation indicators to be established. This transaction simply reads the hierarchy established in the planning table and then generates a collective mask character for each level of the hierarchy
    10.Modify Planning Hierarchy (MC62) This step is a repeat of MC61 where the initial hierarchy was established. In order to complete the hierarchical set up, the collective allocation (mask character) hierarchy must now be maintained with the appropriate aggregation factors
    11.Allocation Procedure Assignment to Material Master (MM02) At the root level of the allocation process are the materials. Each material that is to be considered in allocation scenario must be mapped to an allocation procedure. In order entry, then, when a material is entered with a valid allocation procedure in the material master, the allocation data is verified prior to confirming the line item ordered
    12.List of Suitable Structures (OV9Z) This report is used to identify potential LIS information structures that can be used in the product allocation process. This report simply reads through the data dictionary and selects all the active information structures that contain the field product allocation object (KONOB) as the first field. This data can then be utilized in the mapping transaction (OV3Z) to link the allocation procedure step to an information structure (previous step).
    Regards
    Jitesh

  • Does anyone maybe know why the new Macbook pros don't have iWeb and how i can install it. My Macbook already came with the iLife thing, but it seems to only have iMovie, iPhoto and Garage Band. is there any way that i can install iWeb?

    Does anyone maybe know why the new Macbook pros don't have iWeb and how i can install it. My Macbook already came with the iLife thing, but it seems to only have iMovie, iPhoto and Garage Band. is there any way that i can install iWeb?

    Apple discontinued iWeb. That's the case for over a year now.
    Topics in this forum will tell you that in order to install iWeb you have to find a copy at eBay, Amazon and similar places.
    Or here

  • I have upgraded to Lion Os but my Network storage (Iomega Home Media Network hard drive) does not work with Time Machine.  Are there any solution available?

    I have upgraded to Lion  OS only to find that my NAS (Iomega Home Media Network hard drive) does not work.  It tells me that it is not configured.  Are there any solutions .  Have Iomega sorted out the problem?

    Same issue here.  Based on what I can tell, iomega still has not developed a solution to the problem.  See below:
    https://iomega-na-en.custhelp.com/app/answers/detail/a_id/28327/kw/Mac%20OS%20X% 20Lion

  • How can I get my money back I BUY the  Coins in the game fieldrunners 2 HD were cut $ 9.99 $ from my account and did not receive any coins?! No. process MHFQZV02X8 please  cancel the operation, collected coins and thank you

    How can I get my money back I BUY the  Coins in the game fieldrunners 2 HD were cut $ 9.99 $ from my account and did not receive any coins?! No. process MHFQZV02X8 please  cancel the operation, collected coins and thank you

    Apple does not have a presence here, this is a user to user forum. You would probably have more success contacting iTunes Support at http://apple.com/support/itunes/contact/.

  • How does one migrate play lists to another account

    Question how does one migrate or copy a list with out assocaiting with another account, ex my play list on this account I like to put on my other account since I want to keep my music from FB(this account is linked through sign up, where as my other account don't).  I know how to copy the list url and do know how to drag and drop to desk top, both assocaite with this account Why ask this question when looking at when something is added or who added it it gives an account number(and that account was deleted for a reason and list migrated to this account).  Is there a possibility of taking my lists with out account number or would that be impossible? Note I use 8.1 for Windows

    Hello there and welcome to the community,
    1) on the old account : copy the Playlist Link (Right click on the title)
    2) Paste it on your web browser
    3) open your new account.
    4) Play the playlist in your browser
    5) Playlist will open also in your Spotify desktop
    6) Subscribe to the playlist. That will save the playlist on the folder PLAYLISTS (on left side)
    7) Always on your new account, create a new playlist with the same title if you want
    8) Copy all the tracks from the old playlist to the new one
    9) Delete the old playlist
    10) Now you have a playlist with your new user name as creator
     

  • How does one update from iwork '09?

    I followed blog advice to download iwork trial and try to upload from there, but no dice. how does one update from iwork /'09???

    With all due respect ... I do not see how one can change the Subtemplate value from Yes to No. When I query the offending Template, the Subtemplate column is not displayed in bold, indicating to me that it can not be updated. Clicking on Edit Configuration, doe not provide an ability to change the value either.
    As best I can determine, one needs to 1) query up the template
    2) download the rtf file(s)
    3) end date the template
    4) create a new template and then set the Subtemplate value to No.
    And the same steps appear to be required in order to add or update a template Description.
    Which raises the question, Why can this not be done by editing the configuration?

  • The IC WebClient profile does not have a component 'ERP Sales Order'

    Hi CRM Experts,
    While creating the ERP Sales Order in web-IC
    we have bumped into following error:
    "The IC WebClient profile does not have a component 'ERP Sales Order'".
    And also we are not able to see sales area data and Plant data in the drop down lists.
    we have done the following settings:
    1) ERP Sales Order Profile:we have defined ERP Sales Order profile,maintained RFC destinatin and assigned document type to ERP Profile.
    2) Business Transaction Launcher: We have defined the Business Transaction Profile and assigned dependent business transaction.
    3) We have assigned the Business Transaction Profile to the Navigation Bar Profile.
    Please suggest me regarding above error also let us know did we miss any configuration?
    Waiting for your valuable inputs.
    Regards,
    Sree.

    Hi Sree,
    There is a setting needed for the IC webclient
    ERP_SALES_ORDER
    you need to define ERP sales order profile and assign it to your ic webclient profile.
    And the ERP sales order scenario can only be used with a ERP 6.0 backend system, at least.
    Hongyan

  • How to take the screen shot of my computer page by using Labview.... is there any funtions available in Labview?

    How to take the screen shot of my computer page by using Labview.... is there any funtions available in Labview?

    Another thread about this theme.
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Repeat credit check does not happen for already released sales orders when CMGST =D, for the second time using FM SD_ORDER_CREDIT_CHECK

    Hi,
       I have written a routine which will call the FM SD_ORDER_CREDIT_CHECK whenever there is a rejection and again unrejection of a same sales order, we are only concerned about already credit released sales orders, the scenario is as follow
    1). Sales order created in the system --> Credit check --> Credit blocked
    2). Release credit block manually CMGST =D
    3). Reject sales order then unreject the same
    4) Routine will determine rejection and unrejection of the order while saving and will call the FM SD_ORDER_CREDIT_CHECK
    5)   The order is credit checked and blocked if necessary
    All goes well till this point
    but when the same sales order is rejeceted and unrejected multiple times either partially/ fully then the Custom routine calls the FM for credit check but the FM fails to put the order back on credit hold
    in short the FM works only for the first time incase of mutiple rejection and unrejection of teh same sales order then the FM SD_ORDER_CREDIT_CHECK fails to put the order back on credit hold from the second time onwards
    if some one any idea of the behavior of this FM please share your thoughts and inputs . thanks !!

    Issue resolved
    The Standard FM “SD_ORDER_CREDIT _CHECK” uses the field  “Release date of the document determined by credit management  VBAK – CMFRE”
    For any sales order that is manually credit released in a single day, Only one credit check is triggered (per day) if there is any change in the sales order and then the order goes back to credit hold and if again the order is manually credit released for the second time in a single day there will be no credit check  (still the order will pass into FM but  the update entry in the internal table will be blank)this is a standard functionality
    Process of rejection and unrejection :
    Blocked order -->released-->blocked again (first time after manual release same day) unrejected (same day) -->but no credit check  (all this in a single day)
    note : OVA8 - released document still unchecked = 0 Days , Deviation %= blank

  • I am heading out to the US from NZ and I want to buy an Iphone, Will it work in NZ if I buy from Apple and do not connect to any network until back in NZ? Thanks

    I am heading out to the US from NZ and I want to buy an Iphone, Will it work in NZ if I buy from Apple and do not connect to any network until back in NZ? Thanks

    When you get to the States, if you will be in an area with an Apple store for a couple days, call and ask about reserving an unlocked iPhone, it takes a couple days to get it in the store from what I understand.
    The current MBP 15" models are 2.2 and 2.4 GHz i7 machines.  There is a 17" with 2.5 GHz i7.
    The difference, in addition to the slightly faster cpu, is:
    2.2 GHz - Radeon HD 6750 M with 512 MB VRAM
    2.4 GHz - Radeon HD 6770 M with 1 GB VRAM
    Both have the same hard drive, 750 GB 5400 rpm, both have the same primary graphics - Intel 3000.
    So the difference is in the discrete grapics processor, important for heavy video work, heavy gaming...but will drain the battery a lot faster.
    You can get all the details on any Mac computer by going to http://www.everymac.com and click on the model and then scroll down to the exact machine of interest.

Maybe you are looking for

  • Need help - several questions

    The main problem: I have a computer that needs wireless connectivity. I do not want to use a wireless card, for a couple of reasons. One is sort of made obvious below, and the other is that I want to use the pci slot for something else anyway. The se

  • How can I create 2 catalogues (same design but different languages)

    Hello, I have to launch 2 catalogues (32 pages) in Indesign, with an equal layout but different languages. My client will need to start them both and won't wait for a agreement on a Master file. He'll update the layout all along the realisation (colo

  • [solved] mplayer suddenly scaling my widescreen videos?!

    I just did an upgrade, I tried mplayer with a bunch of video files and it keeps rescaling them, getting rid of the black bars on top and bottom, kind of "upscaling" which I don't want. I can't figure out how to stop it from doing this: ┌─[ 23:13 ][ /

  • Deactivate batch

    Hello I am unable to deactivate batch management indicator in Material Master. It shows Batches exist. Though i have deleted and archived the batch numbers. Pls explain. Thanks

  • EP5 - EP6

    I installed the plugin for Eclipse for EP6 and I imported one iview developed in EP5. But I have a lot of errors like:    The import com.sapportals.htmlb cannot be resolved.    The import com.sap.mw.jco cannot be resolved. What I have to do, may I ha