Planning Capacity using CM01 and CM07 transaction

Hi,
there are two kinds of sales order in our company: the "confirmed" order sales and the "not confirmed" order sales. The both we need to plan in PS and need use the factory capacity. But when we need to analyze the capacity planning of these projects, it's interesting if we can separates both types of projects, the "confirmed" and the "not confirmed project". And we have to change the projects from "not confirmed" to "confirmed" when a costumers really confirmed a sale. The input in CM07 transaction that I use is the work center.
I think this case is very common in the companies since there are situations that it's necessary to use the factory forces even a order sales is not confirmed but probably is going to. Than we need to change this project to "confirmed" and is going to show us in CM07 as a confirmed project.
Thanks,
Tiago

Try this function module,
CLOI_WC_CAPACITY_READ  Similarly
Please search in SE37 using f4 by giving the capacity in the description field and search.
there are many function modules are listed for capacity related one , then try  giving your input value and find the output you are expecting...
Thanks.

Similar Messages

  • How to use DataSource and External transaction in 9ias?

    I'm working on a project that the application server needs to connect to over 100 databases.
    I'd like to use connection pooling and external transaction service defined in OC4J's Datasources.
    I wonder if anyone has an example of using datasource and external transaction service for OC4J.
    Right now, I export toplink project to a java source and do the initialization there manually but I don't know how to use Datasource to get connections and how to use the external transaction service in the java code for OC4J.
    I really appreciate you help.
    Wei

    Here is a fill in the blank example on how you could set this up through code:
    Project project = new MyProject();
    // alternatively, use the XMLProjectReader
    server = project.createServerSession();
    server.getLogin().useExternalConnectionPooling();
    server.getLogin().setConnector(new JNDIConnector(new javax.naming.InitialContext(), "jdbc/DataSourceName"));
    // the next line depends on the type of driver you want to use.
    server.getLogin().useOracleThinJDBCDriver();
    server.getLogin().useOracle();
    server.getLogin().setUserName("username");
    server.getLogin().setPassword("password");
    server.getLogin().useExternalTransactionController();
    server.setExternalTransactionController(new Oracle9iJTSExternalTransactionController());
    server.logMessages();
    server.login();

  • Error while updating data using session and call transaction method

    Hi all,
        i have to update data using MM01 transaction from flat file to database.i have used both session method and call transaction method to do that.in both the methods data has been transferred from internal tables to screens but while updating the data that is by clicking the ok-code at the end of the transaction iam getting a dialogue box stating
       SAP EXPRESS DOCUMENT "UPDATE WAS TERMINATED" RECEIVED FROM AUTHOR "SAP".
      please tell whether the problem lies and solution for that.
                                       thanks and regards.

    hi,
    check your recording.check whether u saved your material no in recording or not.
    once again record the transacton mm01.
           MATNR LIKE RMMG1-MATNR,
           MBRSH LIKE RMMG1-MBRSH,
           MTART LIKE RMMG1-MTART,
           MAKTX LIKE MAKT-MAKTX,
           MEINS LIKE MARA-MEINS,
           MATKL LIKE MARA-MATKL,
           BISMT LIKE MARA-BISMT,
           EXTWG LIKE MARA-EXTWG,
    these are the fields which u have to take in internal table.
    this is the record which i took in my flatfile.use filetype as asc and hasfieldseperator as 'X'.
    SUDHU-6     R     ROH     MATSUDHU     "     001     7890     AA
    i did the same.but i didn't get any error.

  • Ora 02290 when using qms_transaction_mgt and autonomous transactions

    Hi all,
    I'm using the qms procedures:
    qms_transaction_mgt for openeing and closing transactions.
    Somewhere in my procedure when the transaction is opened i call another procedure which contains a autonomous transaction.
    The next time qms_transaction_mgt.close_transaction is called i get an ORA-02290: check constraint (HST65.QMS_NEED_TO_CLOSE_TRANSACTION) violated
    When i debug the qms_transaction_mgt.close transaction the g_current_trans_id variable is empty, which indicates the transaction is allready closed.
    When i remove the pragma autonomous_transaction statement and the commit statement from the procedure i call, the problem is resolved.
    Version information:
    Designer 9.0.2 with a with a Oracle 9i 9.2 database and Headstart 9i.
    Does anybody know how i can resolve this or if this is a bug and how to fix it?
    Thanks,
    Yvon

    Ian, Yvon,
    It is unfortunately a know restriction that the CDM RuleFrame component of both Headstart for Designer 6i and Headstart for Designer 9i doesn't work in combination with autonomous transactions.
    The reason is that the RuleFrame administration relies on information stored in 1. pl/sql package variables and 2. database tables. Using autonomous transactions (that involve CDM RuleFramed DML) causes this information to dissynchronize.
    A year ago I investigated the possibilities to make autonomous transactions possible with RuleFrame but unfortunately this is fundamental problem: RuleFrame wants to combine multiple DML-actions into one logical transaction (gards this with the "need_to_close_transaction" constraint), while autonomous transactions intend to to the opposite: commit a part of a transaction while the rest of the transaction still is posted/not committed.
    There is one exception: if you call an atonomous procedure that does DML on a non-ruleframe-enabled table (no TAPI triggers that intend to open/close the transaction, no CAPI etc), everything functions.
    Problem explanation:
    ====================
    1. Outer transaction is opened (by front end or TAPI triggers of first DML)
    2. DML takes place
    3. Autonomous transaction-procedure is called
    4. Auto-transaction again tries (and succeeds!) to open the transaction, it doesn't see that the transaction is opened (db table qms_transactions is empty for the autonomous transaction on query)
    5. DML within auto-transaction is posted
    6. Auto-transaction closes transaction
    7. Auto-transaction is committed
    8. Outer transaction thinks the transaction is already closed, because the auto-transaction cleaned out the package variables when it closed the transaction.
    9. Commit of the outer transaction fails as the deferred check constraint need_to_close_transaction avoids this to happen (rollback takes place because of this violation).
    Hope this helps
    Kind Regards
    Marc Vahsen
    Headstart Team Oracle NL

  • How to do archieve using SARA and FILE transaction

    Hi,
    I am using ECC6. i have requirement to do archiving. Please suggest me how to do archive using FILE and SARA.
    Regards,
    Asif

    Hi Asif
    Please go through the following links..
    http://www.sap-basis-abap.com/sapta009.htm
    Re: archiving data through SARA tcode
    If you face any problem , search notes with SARA, you will get enough infromation.
    Hope this helps.
    Thanks
    Anindya

  • Using EXCEPT and INTERSECT (Transact-SQL) with a Twist

    I understand how to use EXCEPT and INTERSECT BUT how Do use it with two different servers?  I have the production database on server1, the conversion database on server2. The databases are identical EXCEPT there is more (new) data in CONVERSION.
    I want one query that properly coded returns the differences between production and conversion. I expect to run EXCEPT first (PRODUCTION on left, CONVERSION on right), then I will run INTERSECT (PRODUCTION on left, CONVERSION on right).
    How do I get the full network path: SERVER/DATABASE/TABLE?
    USE SERVERNAME1.PRODUCTION;
    SELECT person_id
    ,person_name
    FROM person_detail AS x
    USE SERVERNAME2.CONVERSION;
    SELECT person_id
    ,person_name
    FROM person AS y
    GO
    SELECT *
    FROM x
    EXCEPT
    SELECT *
    FROM y;

    Hi,
    You can use
    OPENROWSET to get the data from the remote server and then you can use simple EXCEPT and INTERSECT as you already know
    Something like:
    SELECT ProductID FROM Production.Product
    INTERSECT
    SELECT ProductID
    FROM OPENROWSET(
    'SQLNCLI',
    'Use your connection string here to the remote server',
    'SELECT ProductID FROM Production.WorkOrder ;'
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • How To Use SPDD and SPAU Transaction in An Upgrade Project

    Hi Friends,
    I will be working in an upgrade project very soon. this is my first experience for Upgrade project. Though I know these two transaction are used for Upgrade.
    Can anyone give me a step by step document for using these two transactions and other relevant information.
    Also, I have one query where do we use these transactions : On the old system e.g. R/3 4.7 or ECC 6.0
    Thanks,
    Pradeep
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Edited by: Alvaro Tejada Galindo on Dec 23, 2008 10:39 AM

    Hi Pradeep,
    For SPDD see this link
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/2e/6d66587d9011d396b60000e82de14a/frameset.htm
    For SPAU
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/c8/61ec66e33611d1954b0000e82de14a/frameset.htm
    Why you need this Adjustments
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/60/d6ba7bceda11d1953a0000e82de14a/frameset.htm
    You use the transactions in the new system.
    Regards

  • How to use commit and rollback transaction if my i am using MS Access as a

    as per my knowledge the transactions commit and rollback is not work if my data base is MS Access then plz give me the logic how i used these transaction with MS Access.
    waiting for response
    plz mail ur respose if possible at [email protected]

    Same as every other relational database you can connect to with JDBC.
    try
        connection.setAutoCommit(false);
         // Perform your unit of work here
         connection.commit();
    catch (SQLException e)
        connection.rollback();
         e.printStackTrace();
    finally
        try { if (connection != null) connection.close(); } catch (SQLException ignore) {}
    }%

  • What is best way to set up Ipods for my children?  One lives with ex and I plan to use facetime and texting to communicate.  Should he have his own itunes account?

    I started out by setting up under my itunes account.  When I tried the facetiming my iphone with my sons new ipod it said that I was calling even though I set it up in his name.  Also, I don't know how to try to face time him.  How do I add him as a contact to facetime him.  Also, his step sister will be setting hers up also and she will want to be able to text and face time him.  How should we go about setting all this up?  Thanks for any help and I hope I explained this well enough.

    First, you should have to Apple IDs
    Second, you must have a Wi-Fi connection.
    Facetime Calls
    To add them go to address book and put in the Apple ID username under email.
    Go to facetime, click the contacts button on the bottom. Click the name they gave them. Click the email you used for their Apple ID. It should start a call with the device hooked up with that Apple ID.
    Set-Up Facetime
    Go to settings. Click facetime. Sign-in with the Apple ID you are using. When someone calls that address it should give you a notification.
    Texting
    If you are getting a new iPod you will be getting with iOS 5 wich includes iMessage to other iOS 5 devices. Just click iMessage at the home screen and type in the name of the person with the Apple ID you want to text OR type in the Apple ID you want to text. You should start a convorsation with the iDevice hooked up to that Apple ID.
    Set-Up iMessage (a.k.a. Texting)
    Go to settings. Click iMessage. Sign-in with the Apple ID you are using. When someone texts that address it will notify you.
    Hope I helped!

  • Miss matching for some Actual costs using KSBB and KSB1.

    Hi All,
    We have some problem with this report GP42H1QSVYPI2TJMBXZAFTCRP0R590 .  . When this type of program will generate? Any configuration time?  Can we modify this type of report? Could you please explain more. 
    When I compare the Actual costs using KSBB and KSB1 transaction the values are not equal for some cost elements.
    Thanks,
    SN
    Edited by: surendranatha chintha on Aug 14, 2008 8:32 AM

    Hi,
    The name of the program you gave is irrelevant, as it's a dynamic name given to any report built with Report Writer techniques. Which report in KSBB shows different figures from KSB1?
    Regards,
    Eli

  • Return document picking wrong main and sub transaction @ FPL9

    Hi Mates,
    I need a help to find out the reason why return document is referring with wrong main and sub in our current client.
    Issue: when unpaid returns are posting with reference to payment document return document is posting by using main and sub transaction with previous cleared items.
    Ex:      2000200 Invoice document -  Main Transaction 0100 sub 0002
               3000300 Payment run document - Main Transaction 0610 sub 0010
    When return is posting with reference to 3000300 return document is referring 0100 and 0010, and new return document is updating with Billing and invoice text.
    Usually if return document is posted that should be refere the payment document 0610 and 0010 main & sub and invoice document 2000200 should be open.
    This is happening for all the main and sub cases and return document is referring with cleared items, in some cases it's posting currectly.
    I have validated at return lot specific level, posting type=cancel payment.
    some of business users are posted using posting type = new receiveble derived from payment.
    Second case we found many issues with refeernce wrong sub, but even 1st case also system is showing same.
    Kindly suggest.

    Hi Bogdan,
    Thanks for the reply.
    When SD invoices are transferred to FICA, the system checks whether entries maintained for account determination:
    1. Maintain Account Assignment Data Relevant to Transactions
    2. Derive Main/Sub Transaction from SD information
    3. Derive Document Type from SD Billing Document Data
    Thanks,
    Kumar

  • Reg Capacity used and capacity available

    Dear all,
    How can I see the capacity available and capacity used for a particular resource for previous month , is there any standard report available in standard SAP.
    Regards
    madhav

    Try transaction MCP7

  • Possible to call a transaction from a planning book using a macro button?

    Hi All,
    Is it somehow possible to call a transaction using a macro button in the planning book? Also, the current selection should be passed as input parameters to the transaction.
    In my example, I am trying to run the transaction /SAPAPO/MC90 - Release to Supply Network Planning from the Demand Planning  Planning Book/Data View. This way if planners need to change forecasts mid month for specific selections, they can easily transfer to SNP without having to go out of interactive planning.
    Thank you,
    Maria

    Hello Maria,
              It's possible to call a transaction from a planning book using a macro button.
    What you can do is ..... Create a function module and inside it use the command "Call Transaction Tcode"  (ABAPer can do this) to call ur specific transaction. And this module can in turn be called from your macro. Please find the below link which explanis how to call a function module from a macro. Do let me know if you need more information on this.
    Calling a function module from APO Macro
    Regards,
    Siva.

  • ROUCH CUT PLANNING-capacity in terms of Material,Month and Qty wise

    Hi Gurus
    I have the following scenario
    The client will input the Rough cut planning Sales Plan for "Material A" in MC87. Then he will generate Production Plan in the same screen by create prodcution plan ->sychronise to sales
    SO Material specific and Month specific Quanitities will be inside
    His requirement is For Material Specific he is having some capacity Availability in terms of Quantity Material specific and Month wise. Say, Material A he can produce only 5000 in  a month, Material B 2500 in a month by the way
    So he will compare this with sales/production plan in MC87 and correct the MC87 data
    Is our rough cut planning will use any way for comparing and putting his available material specific capacity in terms of Qty. How to map this requirment in SAP
    I tried with MC35 rough cut planning it is giving the error stating resource..
    Might be i have not used it properly
    your suggestions are welcome to reslove this
    K.Prabakaran

    Hi,
    Pl. try the foll,
    In mc35, choose the resource as work center & enter min.
    Then in the main screen, enter the time for processing 1 Pc. (base qty). (Calculate this time for the processing of material A & then enter the time.)
    Regards,
    Senthilkumar

  • I want to use my Time Capsule as a central 'hub/hard-drive' in order to keep all my working files in one place. I then plan to use my laptops/desktops as peripheral devices for editing and creation of these files. Is it possible? Create a personal cloud?

    I want to use my Time Capsule as a central 'hub/hard-drive' in order to keep all my working files in one place. I then plan to use my laptops/desktops as peripheral devices for editing and creation of these files. Is it possible? To create a personal cloud?
    Can someone advise as to whether i can do the following:
                                Future Internet connection -------------------TIME CAPSULE (containing all files) -------------- Backed up on the WD 2T Hard-drive I have
                                      (not connected yet)                                         I                                                          (*connected to timecapsule physically)
                                                                                                            I
                    I                                         I                                                I                                                              I                                                I
          Macbook Pro                             iMac                                       HP (PC)                                             OLD Macbook Pro                         iPhone
    (used for remote working)       (Used for home working)     (used for heavy CAD and rendering)    (not being used for anything at the moment)        (& iPods)
    I am looking to have all my files in one place as i am hopelessly disorganised. I know the online clouds are a good solution (used Dropbox at work and uni for 3 years) however i am wanting to create my own 'dropbox/icloud' at home. So whenever i get back home with my laptop, any work i have been working on whilst out that day is updated to the timecapsule, and then ultimately as i turn on the other devices, they update to those newer versions of the files. Please tell me that the 3TB time capsule i have can do this, otherwise it feels rather overpriced as a wireless storage device?
    Another note (to those in the know) If i am to be working on large files (REVIT/SOLIDWORKS/KEYSHOT/CREO/AUTOCAD) - is the timecapsule connection good enough to support editing and updating these files?
    I know i may be asking a question that many have before, but as a bit of a technical novice I wanted a clear-cut answer to my specific circumstances. Your help is greatly appreciated.
    (*can i use this WD hard-drive that is connected to the Time Capsule as a back up? so that the time machine back-ups/any back ups are also backed up onto this one? can the WD be a backup for the TC?)
    Kind Regards
    Joe

    The diagram was supposed to look more like this......
    Internet ---------TIME CAPSULE(containing all files) --------WD 2T Harddrive
                                                I
         I                           I                          I                            I                                   I
    Macbook Pro         iMac                 HP (PC)            OLD Macbook Pro           iPhone
    Sorry!
    Regards
    Joe

Maybe you are looking for

  • Missing Port  Information - HELP!

    Hi, i built a dynamic client to work with my webservice. Both were built using the JWSP1.2. Bellow is the error i get. It happens only if i call the getAll WS method (this method receives a String parameter and returns a Source Type Object) . Does an

  • STORAGE OF PHOTOS

    When I download photos via my card reader they automatically go into the iPhoto library.  I use Adobe CS5 Photoshop to edit.  I shoot in RAW and save as TIFF files as they are truer than jpeg.  Can I store the files in another way than iPhoto in thei

  • Need to find Internet Explorer version used in AD

    Hi, I used Microsoft Assessment and Planning Toolkit for finding all SQL server instances a while ago. Now I need to find filtered IE versions on AD computers. I am pretty sure that MAPT could help to accomplish that. 1. Yes or No? 2. I didn't instal

  • Mobile Me, Address Books, etc

    Hello all - I am trying to finally straighten out my fractured contact information across a variety of platforms and programs. I believe I have finally ironed out most of my book, stored in my Address Book on my Home Mac. My iphone and Mobile Me acco

  • How to set paragrah Attributes to AttributedString ?

    Hi All, I want to draw a paragraph of text on the JPanel with Paragraph attributes(alignments,line spacing) for this drawing i am using TJtextLayout class. JtextLayout object construction is based on the AttributedString class. How can i add paragrap