Lost Newbie, help needed for building dream machine

Hello everyone!
I was wondering if you could tell me what you think about this setup for premiere, after effects and speed grade use:
http://pcpartpicker.com/user/trundrumbalind/saved/#savedbuild_167634
I know it's probably an overkill, but what do you guys think?

First off, I would not go for that particular discrete sound card: It is not sufficiently better in quality than onboard audio to justify the $58 cost. What's more, that card is not a true X-Fi card at all; in fact, it is basically a descendant of the old software-based Ensoniq AudioPCI, which (mis)uses the CPU for most audio tasks (there is a controller chip on that card, but that chip is very similar to the codec-based onboard audio).
Second, the RAM and motherboard are both overkill. In fact, you might not be able to run all four sticks of RAM at anywhere near its DDR3-2133 speed. Intel (and JEDEC) officially limit the maximum memory speed with a fully-populated memory controller to only DDR3-1333 speed. You can run that memory at the DDR3-2133 speed using an XMP profile - but then, you're limited to running only two sticks of RAM total at that speed. Besides, that quad-channel kit is really meant for LGA 2011 platforms, not LGA 1155 platforms. And the motherboard actually costs as much money as or more money than many good X79 LGA 2011 motherboards. Remember, the LGA 1155 platform has only two memory controller channels, not four. The official JEDEC spec allows the implementation of up to four ranks per memory controller channel - albeit at only up to DDR3-1333 speed. With DDR3-1600 and higher-speed RAM as well as all RAM running using XMP profiles, JEDEC officially limits such operation to only two ranks per channel (one double-sided DIMM, such as in all 8GB DIMMs, already eats up two ranks per slot).
In other words, that setup is a waste of money at that price point. Why spend $2600+ on a limited LGA 1155 build when you could have gotten a superior-performing LGA 2011 build with an i7-3930K for the same price or slightly less? As a matter of fact, I would personally not spend more than about $2000 for LGA 1155.

Similar Messages

  • Help needed for building report with execution method Java Concurrent prog

    Hi,
    I have saw a report like this:
    The report has executable "XML Publisher Data Template Executable", short name as "XDODTEXE", application "XML Publisher",execution method "Java Concurrent program". Also the report has a XML publisher Data Template and Data definition and in the data definition a .xml file is attached.
    I could not understand what is the data source?
    Could anyone help me on how to build or update this type of report?
    Is there any link or help docs which has proper step by step procedure to build this type of xml publisher report?
    Please help.
    Thanks.

    The xml file which is attached to the data definition is the data source and it has sql queries and structure of xml file.
    Check this out for step-by-step guidance.
    http://www.oracle.com/technetwork/middleware/bi-publisher/overview/xmlebsrep-132947.pdf
    http://apps2fusion.com/at/ps/51-prabhakar/262-xml-publisher-and-data-template-sql-query-to-develop-bi-publisher-reports
    For more on data templates refer user guide
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e12187/T421739T434255.htm

  • Good morning, AS3 help needed for building my own site in flash

    Good morning to all,
    I am creating a site in Flash, I am using AS3 to create a
    site that stops/starts the movie on my home page and I have a
    series of buttons that play a head (or are supposed to) to the a
    frame for each additional page. Do I need A.S. for each button as
    well? I didn't think I did. The script below is the first one in
    the layer titled actions, this I thought is supposed to stop/start
    the movie at the beginning and the button abt_mgn_btn is supposed
    to bring it to frame 10 to play my about page. ?? at my frame
    number 10 should I put the stop(); script there as well? And at
    every frame break for the next pages? I am hopelessly in need of
    guidance. Thank you to anyone helping me out.
    import flash.events.EventDispatcher;
    import flash.display.MovieClip;
    this.stop();
    function startMovie(event:MouseEvent):void {
    this.gotoAndPlay(10);
    abt_mgn_btn.addEventListener(MouseEvent.click,startMovie);

    If you have a button on the same timeline as your code with
    the instance name of abt_mgn_btn, then, when this button is
    released, the playback head will jump to frame 10 of the current
    timeline and continue to play.
    If you want the playback head to jump to that frame and stop
    then, either use gotoAndStop(10), or put a stop(); command at frame
    10. GotoAndStop() will work more reliably.
    Have you gone through the tutorials that come with Flash?
    These tutorials may help you to understand the basics of working in
    Flash CS3. You may also benefit from a book or two on Flash. Try
    "Foundation Flash CS3 for Designers" by Tom Green and David Stiller
    from friends of Ed, ISBN 159059861X and/or "Adobe Flash CS3
    Professional, Classroom in a Book" from Adobe Press, ISBN
    0321499824.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with re

    Color management help needed for adobe CS5 and Epson printer 1400-Prints coming out too dark with reddish cast and loss of detail
    System: Windows 7
    Adobe CS5
    Printer: Epson Stylus Photo 1400
    Paper: Inkjet matte presentation paper with slight luster
    Installed latest patch for Adobe CS5
    Epson driver up to date
    After reading solutions online and trying them for my settings for 2 days I am still unable to print what I am seeing on my screen in Adobe CS5. I calibrated my monitor, but am not sure once calibration is saved if I somehow use this setting in Photoshop’s color management.
    The files I am printing are photographs of dogs with lots of detail  I digitally painted with my Wacom tablet in Photoshop CS5 and then printed with Epson Stylus 1400 on inkjet paper 20lb with slight luster.
    My Printed images lose a lot of the detail & come out way to dark with a reddish cast and loss of detail when I used these settings in the printing window:
    Color Handling: Photoshop manages color, Color management -ICM, OFF no color adjustment.
    When I change to these settings in printer window: Color Handling:  Printer manages color.  Color management- Color Controls, 1.8 Gamma and choose Epson Standard it prints lighter, but with reddish cast and very little detail and this is the best setting I have used so far.
    Based on what I have read on line, I think the issue is mainly to do with what controls are set in the Photoshop Color Settings window and the Epson Printer preferences. I have screen images attached of these windows and would appreciate knowing what you recommend I enter for each choice.
    Also I am confused as to what ICM color management system to use with this printer and CS5:
    What is the best ICM to use with PS CS5 & the Epson 1400 printer? Should I use the same ICM for both?
    Do I embed the ICM I choose into the new files I create? 
    Do I view all files in the CS5 workspace in this default ICM?
    Do I set my monitor setting to the same ICM?
    If new file opens in CS5 workspace and it has a different embedded profile than my workspace, do I convert it?
    Do I set my printer, Monitor and PS CS5 color settings to the same ICM?
    Is using the same ICM for all devices what is called a consistent workflow?
    I appreciate any and all advice that can be sent my way on this complicated issue. Thank you in advance for your time and kind help.

    It may be possible to figure out by watching a Dr.Brown video on the subject of color printing. Adobe tv
    I hope this may help...............

  • File missing (file\BCD error code 0Xc0000034 help need for work!

    file missing (file\BCD  error code 0Xc0000034 help need for work!    what can i do?
    have an p 2000 notebook pc

     Hi bobkunkle, welcome to the HP Forums. I understand you cannot boot passed the error you are receiving.
    What is the model or product number of your notebook? What version of Windows is installed?
    Guide to finding your product number
    Which Windows operating system am I running?
    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!

  • Help need for force to signout All session ! how...

    hi
         help need for force to  signout All session !  how ??
    Solved!
    Go to Solution.

    Hi and welcome to the Skype Community,
    To force a signout of all instances your Skype is signed into please change your password: https://support.skype.com/en/faq/FA95/how-do-i-change-my-password
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • Help needed for Notifications

    After compaing many prducts in the category I went with Forms Central because overall it looked like it had the potential to be the best, and I still think that, but I am now very dependent on it and need a few answers if possible.  First of all FormsCentral doesn't seem to show up on Adobe product lists when phoning in for help or in some on-line places.  Is FormsCentral considered an Adobe core product that they are committed to long term?  I've tied phone support 3 times now - and left a callback number and each time they call back and I jst get the recording with music on hold and have waited over an hour each time and still have not had anyone pick up the phone.
    But specific questions related to the product:
    1.  Why can I not have notifications go to an e-mail other than the one registered on the account.   For confirmations you can specify a co-author's email for the reply to field, but why not the same for notifications back to the form owner.  And how can you specify not to use a reply-to addresss at all?
    2.   What kind of backup does Adobe offer on forms and their data in the event of some disaster on the form owner's part.  Is there a way to retrieve the forms and data from a prior date if need be?
    3. When publishing a response results table to a web addreee, how can I put a pssword on it to be required to open it?  I know it has a very unique address and not likely to be seen accidentally by anyone but I have a client who insists on that befoer he will use it.
    4.  A unique ID field option would be nice
    5.  A hidden field on the form results that captures the form filler's IP address would really help too.
    Overall though great product and if you can keep the enhancements coming this product will be tops.
    Many thanks.

    We apologize for the poor experience you had with our call-in support. We are definitely committed to FormsCentral. If you ever have any questions do not hesitate to post them on this forum or send an email to [email protected] Both I and the entire product team monitor the forum and that email alias. We are here to help you... your feedback also helps us to build a better product.
    Regarding your questions:
    I wrote up a FAQ on how others can receive e-mail notifications. You can read it here: http://forums.adobe.com/docs/DOC-1424I'm not sure what you mean by this "And how can you specify not to use a reply-to addresses at all?" E-mail notifications only have a no-reply address and submission receipts have an option to turn it off.
    The form file has a history. Click the clock in the lower right corner to see it. You can roll back to an earlier version. If you are really worried about data loss you should also save the data out as an Excel file on occasion.
    There is no way to put a password on a published form file. You should just share the form file with him and make him a Reader. He would need a username and password to access it and he would see the same thing as the published file.
    Good feedback. If you haven't already, you should vote on that in the idea section - someone else has already asked for this feature. This helps us to prioritize.
    Why do you need to know the IP address?
    Thanks for your feedback!
    Randy

  • Help needed for using BASIC authentication through JDBCRealm

    Help needed.
    Hello,
    I am doing a degree project, so far it works fine in my local machine, I need to try it on my virtual hosting (as it is a live server).
    My project requires JDBCRealm, that is BASIC authentication loading access data from mysql database. Normally this setup can be done in Server.xml file, because my Tomcat hosting is a virtual one, I only have permission to access the web.xml file.
    My question is: is it possible to get it done in an alternative way? In web.xml? Some properties file maybe?
    Thank you very much.

    You can set this up for your context using META-INF/context.xml instead of working with server.xml.
    Make a directory called META-INF under your webapp ( it'll be at the same level as WEB-INF ). Under this, add a context.xml with all your context specific configuration including the realm. A sample is below
    <?xml version="1.0" encoding="UTF-8"?>
    <Context path="/myApp" reloadable="true">
        <Realm
            className="org.apache.catalina.realm.JDBCRealm"            
            driverName="com.microsoft.jdbc.sqlserver.SQLServerDriver"         
            connectionURL="jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=myDB;SelectMethod=Cursor;"
            connectionName="username" connectionPassword="password"
            digest="MD5" userTable="users" userNameCol="userid" userCredCol="userpassword"
            userRoleTable="user_roles" roleNameCol="rolename"
        />
    </Context>Hope this helps.
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    ----------------------------------------------------------------

  • Help Needed in Building JTree

    HI,
    I've a doubt in Building a JTree.It wud be helpful if some one helps me with a better logic for building this Tree..
    I have a tree like this:
    root
    |
    A--B--C--D
    A--B--C--D
    A--B--C
    A--B--C--E--F
    I have the tree nodes like this . i need to merge the nodes like this
    root
    |
    A
    |
    -- B
    |
    --C
    |
    --D
    --E
    |
    --F
    I've tried it in few ways. It doesn't seems to be working.. Can some one help me in giving me a better logic in doing this

    Hello,
    When updating the tree, do not access the tree nodes directly. Update the tree via its (TreeModel).
    to get the model of your JTree use
    DefaultTreeModel treeModel = (DefaultTreeModel)myTree.getModel();to add nodes use the method
    treeModel.insertNodeInto(newChild,parent,offset);and remove nodes using
    treeModel.removeFromParent(nodeToRemove);--
    Regards,
    Ahmed Saad

  • Query help needed for querybuilder to use with lcm cli

    Hi,
    I had set up several queries to run with the lcm cli in order to back up personal folders, inboxes, etc. to lcmbiar files to use as backups.  I have seen a few posts that are similar, but I have a specific question/concern.
    I just recently had to reference one of these back ups only to find it was incomplete.  Does the query used by the lcm cli also only pull the first 1000 rows? Is there a way to change this limit somwhere?
    Also, since when importing this lcmbiar file for something 'generic' like 'all personal folders', pulls in WAY too much stuff, is there a better way to limit this? I am open to suggestions, but it would almost be better if I could create individual lcmbiar output files on a per user basis.  This way, when/if I need to restore someone's personal folder contents, for example, I could find them by username and import just that lcmbiar file, as opposed to all 3000 of our users.  I am not quite sure how to accomplish this...
    Currently, with my limited windows scripting knowledge, I have set up a bat script to run each morning, that creates a 'runtime' properties file from a template, such that the lcmbiar file gets named uniquely for that day and its content.  Then I call the lcm_cli using the proper command.  The query within the properties file is currently very straightforward - select * from CI_INFOOBJECTS WHERE SI_ANCESTOR = 18.
    To do what I want to do...
    1) I'd first need a current list of usernames in a text file, that could be read (?) in and parsed to single out each user (remember we are talking about 3000) - not sure the best way to get this.
    2) Then instead of just updating the the lcmbiar file name with a unique name as I do currently, I would also update the query (which would be different altogether):  SELECT * from CI_INFOOBJECTS where SI_OWNER = '<username>' AND SI_ANCESTOR = 18.
    In theory, that would grab everything owned by that user in their personal folder - right? and write it to its own lcmbiar file to a location I specify.
    I just think chunking something like this is more effective and BO has no built in back up capability that already does this.  We are on BO 4.0 SP7 right now, move to 4.1 SP4 over the summer.
    Any thoughts on this would be much appreciated.
    thanks,
    Missy

    Just wanted to pass along that SAP Support pointed me to KBA 1969259 which had some good example queries in it (they were helping me with a concern I had over the lcmbiar file output, not with query design).  I was able to tweak one of the sample queries in this KBA to give me more of what I was after...
    SELECT TOP 10000 static, relationships, SI_PARENT_FOLDER_CUID, SI_OWNER, SI_PATH FROM CI_INFOOBJECTS,CI_APPOBJECTS,CI_SYSTEMOBJECTS WHERE (DESCENDENTS ("si_name='Folder Hierarchy'","si_name='<username>'"))
    This exports inboxes, personal folders, categories, and roles, which is more than I was after, but still necessary to back up.. so in a way, it is actually better because I have one lcmbiar file per user - contains all their 'personal' objects.
    So between narrowing down my set of users to only those who actually have saved things to their personal folder and now having a query that actually returns what I expect it to return, along with the help below for a job to clean up these excessive amounts of promotion jobs I am now creating... I am all set!
    Hopefully this can help someone else too!
    Thanks,
    missy

  • Help needed for config.xml

    hi all,
    i have some 15/20 applications based on J2EE, but each application has diff Config.xml,
    my client wants me to generalised the process of generating the generalised config.xml file, (i have some idea like i will have a properties file from which i will pick up the data regarding specific application n then generate the config.xml).
    the next step is i need to build the application for which i need ANT script,
    the next step is i need to deploy thios on unix box.
    can anybody suggest me any options for doing al this.
    any code snippet or any open source tool for this?
    (i thing maven and cruisecontrol are the tools used for this not very sure)
    plz let me kno if anybody has ny backgrng on this.....
    cya
    sush

    hi all,
    i have some 15/20 applications based on J2EE, but each application has diff Config.xml,
    my client wants me to generalised the process of generating the generalised config.xml file, (i have some idea like i will have a properties file from which i will pick up the data regarding specific application n then generate the config.xml).
    the next step is i need to build the application for which i need ANT script,
    the next step is i need to deploy thios on unix box.
    can anybody suggest me any options for doing al this.
    any code snippet or any open source tool for this?
    (i thing maven and cruisecontrol are the tools used for this not very sure)
    plz let me kno if anybody has ny backgrng on this.....
    cya
    sush

  • Help needed in building query

    Tab1
    Parent       Child       sa l
    P1     A1       4000
    A1     A       1000
    A1     B       4000
    A     X       1000
    A     Y         2000
    B     X1        1000           
    B     X2       3000I need to build a query that will retrieve the value for each child as the sum of the salaries of all its child in a single query.
    That is
    For Sal P1 = Sal A1 + all child of A1 and its child
         For A1 = Sal A1 + all child of A1 and its child ( A+B+X+Y+X1+X2)
    Like it should sho all the records with the count .. please help

    This is not so simple since it is not really clear in your data set whether the sal belongs to the parent or to the child. I assume it's the salary of the child, in which case the salary of P1 is missing. The best option is to fix the data model and have two tables: one containing the element and sal, and another table containing just the relationships. To fix this issue I introduced a dummy record for P1 and salary 0.
    SQL> with t2 as
      2  ( select connect_by_root(child) cbr
      3         , sal
      4      from (select * from t union all select null,'P1',0 from dual)
      5   connect by parent = prior child
      6  )
      7  select cbr child
      8       , sum(sal)
      9    from t2
    10   group by cbr
    11  /
    CHILD    SUM(SAL)
    X1           1000
    A1          16000
    X2           3000
    P1          16000
    Y            2000
    X            1000
    A            4000
    B            8000
    8 rows selected.Regards,
    Rob.

  • IPhone 4 reset itself, photos lost -URGENT HELP NEEDED

    Hi there,
    Urgent help needed!!
    Tonight I was taking extremely important photos throughout an event on my iPhone 4, however, my iPhone 4 ran out of battery once I was near a charger I plugged it in and for some reason my iPhone had reset itself. Back up icloud options were from yesterday, but the photos that I was taking at the event are needed urgently. Is there any way possible I can recover the photos that were taken?
    Thanks in advance!!!!

    Slymm71 wrote:
    just had similar problem got email from find my phone saying initiating full phone wipe this cannot be stopped ***? i own the phone from new and registerred in m name but wiped whilst i was using it !!!
    See your other post... 
    https://discussions.apple.com/message/18876037#18876037

  • Help Needed for T42 Start-up Problem

    Urgent help need!!!
    I have a ThinkPad T42 with Windows XP installed.  It works perfectly for a while without ever have any problem or error message.  Then suddenly it won’t work anymore.  The symptom is following:
    After power on the laptop the Microsoft window would show up and it prompt me for window logon password.  After I type in the password it then shows “window is loading your personal setting”.  After a long while nothing would show up on the screen other than the background of the normal screen.  There is no window bar at the bottom or any icon on the screen.  If I start in safe mode then everything would show up.  I don’t know what is going on.
    This happened two months ago and I ended up restoring a backup image to get it work again.  It happens again today with the same symptom.  I am really tired of having to restore image backup every 2 months. 
    I would really appreciate it if any of your experts can offer me some insight into this problem.  I am desperate in need of help.
    Thanks very much!

    wangy26, welcome to the forum,
    Have a look at this thread to see if my post there helps. The problem seems to mostly occur at the start of a month, why I don't know. Unfortunately the member didin't report back whether or not this was a viable solution for them.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

Maybe you are looking for

  • How do I install the update iPhone 3,1_4.3.2._8H7 on my iPhone 4 manually

    Hi. I hope that someone will be able to help. I am having great difficulty up dating my iPhone 4.  ITunes will advise me that there is an update available. I choose the option to download and Install. Each and everytime I have done as instructed I re

  • Count the number of rows inserted

    Hi, Is there a way to count the number of rows processed post DML in PL/SQL? For eg, BEGIN INSERT INTO TMP1 SELECT * FROM EMP; a function to count the number of rows inserted into tmp1

  • Urgent help needed-----Internet Gateway & VPN Gateway---???---

    Hi All, First of all apologies as I am new to Cisco. I have 2 sites Main site routers 1 is configured for internet having IP address 10.10.10.48. 2nd router is configured for VPN on separate data link configured with bgp protocol having ip address 10

  • Enhancement in T Code LECI

    Hi Gurus, I want to use standard t code LECI  for Gate Pass System I have to track the Inward/Outward vehicle movement according to Purchase Order /Sales Order.I have to add two fields purchase order and sales order in t code LECI. I found one BADI f

  • Prerequisites for Capacity leveling

    what r the Prerequisites for Capacity leveling ? What setting we can do to run the capacity leveling?