Bapi To convert planorder into production

I have tried to used BAPI_PRODORD_CREATE_FROM_PLORD with this bapi.
But for order type PP01 i have to give routing group but here no input for this.
and bapi return message that not for type PP01 routing required.
Please help

Extend the BAPI
Reddy

Similar Messages

  • ABAP program for BAPI and convert DB into XML

    ABAP program for BAPI and convert DB into XML
    Thank you,
    Regards,
    Jagrut BharatKumar Shukla

    Refer the link -
    give an example of bapi coding?
    how can we transfer huge amount of data from database server to xml format
    Regards,
    Amit
    Reward all helpful replies.

  • Getting Error when convert the plan order into production order

    Hi Experts,
    When i converting the planorder into production order i am getting this error
    could you please suggest me hoew can i resolve this issue.
    Message no. CK466
    Diagnosis
    The system could not calculate a price for the internal activity with activity type 20000 of cost
    center 110TUP002 because none of the valuation strategies in valuation variant 006 was successful.
    System Response
    If the system issues a warning message or an information message, the costing item will be
    used in costing with a value of zero.
    If the system issues an error message, it sets the status "KF" (costed with errors).
    If the system issues a termination message, the cost estimate cannot be processed.
    Procedure
    1. Check the master data for activity type 20000 of cost center 110TUP002.
    2. If you have authorization for Customizing, check the valuation strategy for internal activities
    in valuation variant 006.
    Thanks&regards.
    Sateesh.C

    Hi,
    For the orders for which you get the error, note the dates, then check in KSBT, whether there is price maintained for that period.
    Eg: If the order has a start - 2nd Aug, 2010 & end 10th Aug, 2010, then check if price exists for period - 08, year - 2010
    Regards,
    Vivek
    Added
    If the values are maintained, then check the costing variants specified for the order type in OPL8 for plant - order type combination in cost accounting tab. Then in OPL1, check the details specified for the variants. If you're not sure on this, take help from your FI-Co colleague.

  • BAPI for converting planned order to Production Order(in PP)?

    Hi all,
            Is there any standard BAPI for converting Planned order to Production Order?
    Thanks in advance,
    anjaly

    hi,
    check this..
    BAPI_PRODORD_CREATE_FROM_PLORD BAPI: Convert Planned Order into Production Order
    for more details check this link..
    Create a production order
    <b>reward points if it is helpful..</b>

  • How to trace planned order data after it has been converted into production

    Hi, There,
    The planned order has been converted into production order.
    However, I need to trace if this planned order is generated by MRP
    run or created manually. I can't get any planned order info from
    table PLAF. Any input?
    Regards,
    Nancy

    Hi,
    Once fully converted, the Planned Order data will not be available in the Table : PLAF.
    If it is available, then You can have the details with the Time Stamp and User data from PLAF.
    But, the refrence will be available in the Production Order.
    You want to make a Track of the Planned Order details and the Quanity, then you need to have/create Z tables so that the data will be availabe.
    This is how most of the Organizations keep a track of the Planned order data.
    Hope this helps..
    Regards,
    Siva

  • Methods in bapi used to convert data into XML

    Methods in bapi used to convert data into XML,
    how to implement those also,
    points will be rewarded
    Thank you,
    Regards,
    Jagrut BharatKumar Shukla

    Hi
    Check this
    http://www.sap-img.com/abap/sample-xml-source-code-for-sap.htm
    https://forums.sdn.sap.com/click.jspa?searchID=2889167&messageID=3406594
    Reward points for useful Answers
    Regards
    Anji

  • Not to convert planned  orders  into  production  orders.

    I donot  want  to  convert all the  planned  orders in a plant  into  production  orders on a specific date  only ( SAY on 5th Oct -2007 planned  orders  should  not  be  converted  to  production  orders in a  particular  plant).pl tell me  what  customisation is  required  to be  changed or  else  what is  the  solution.
                                                                             jpb

    Hi,
    Planned order is just a system proposed order its upto the user if they want to use all or part of it, for this they have to convert them.. If you dont want to convert them you can delete them as else the SNP will keep considering it as a valid supply.
    If the planned orders are not required on some particular dates on a permanent basis then you need to modify the Factory calender accordingly, so that the system will consider as if the resources are not available on thoese dates.
    Reward point plz...
    Regards,
    manjit.

  • Number range error for some materials when converting into Production order

    Hi,
    Please I need some help with my error.
    When trying to convert planned orders into production orders, I receive an error message saying Internal assignment not defined for number range XX.
    The strange part is that is only happening for two materials! Material type is the same one we always use.
    The planned orders have also the same type.
    Any idea?
    Thanks,

    Hi,
    I think for these 2 materials system is selecting the order type for which external number range is marked and ingternal number range is switched off.
    Can you go to CO01 and create a production order for these materials directly w/o assigning order type on intial screen. check which order type is detrmined by system and check its number range in co86.
    please check.

  • Step by step bapi to convert SAP to XML please its urgent

    step by step bapi to convert SAP to XML please its urgent
    full points if with full example and coding in ABAP,
    Thank you,
    Regards,
    Jagrut Shukla

    yes i want to convert Catsdb table into xml format and safely in server, i.e secured  place

  • Converting Rows into Column in Oracle 10g

    Hi All,                    
    I m using Oracle Version 10.1.0.2.0 - Production                    
    I have requirement to convert rows into column wise as per the following:                    
    My Query is:                    
    WITH t                    
    AS ( SELECT 'A' AS x, 100 AS y FROM DUAL                     
    UNION ALL                    
    SELECT 'B',200 FROM DUAL                    
    SELECT X, Y                    
    FROM t;     
    X Y
    A 100
    B 200
    My Requirement is
    A B
    100 200
    So any one could help me that how I resolve this.
    Regards,
    Prasanta

    Dear frank,
    Thanks for your support,.
    It's working fine for static cases.If the first column is dynamic then how come i will resolve it.
    Example:
    Create table mytab (ID_C Varchar2(15),Value_N Number);
    Records Population into MyTab table is dynamic.
    Insert into mytab values('HO',5000);
    Insert Into mytab values('PG1',2400);
    Insert Into mytab values('PG2',3000);
    Insert Into mytab values('PG3',800);
    Commit;
    SQL> Select * From MyTab;
    IDC_ ValueN_
    HO 5000
    PG1 2400
    PG2 3000
    PG3 800
    Then My expected result will be as follows
    HO PG1 PG2 PG3
    5000 2400 3000 800
    Thanks and Regards,
    Prasanta

  • Import products into Product catalog - WWM1 ERP E-commerce

    Hi guru's,
    Is there a standard LSMW or program form SAP to import products (XML file) into Product catalog (wwm1). We have arround 10,000 materials and it is practically hard to enter them manually.
    We are implementing SAP ERP E-commerce and are on ECC 6.0.
    Thanks
    Ram

    While lot of effort is put by SAP in a BAPI to read Catalog or Catalog Export programs, there isn't any direct program to automatically load catalog.
    We are out of luck if we don't use the automatic option in Catalog - that is to load catalog as per the hierarchy. If we have to use manual then there are no standard LSMW / programs for TCODE WWM1 to load products in catalog. We have found that the screens don't work well for a BDC type loading and hence we could not use LSMW easily.
    Now, here is the IDOC for [Product Catalog - PRDCAT / PRDCAT01  |https://websmp205.sap-ag.de/sapidb/011000358700002529571998/prdcat01_d.htm] and one for [Product Catalog Item - PRDPOS / PRDPOS01|https://websmp209.sap-ag.de/sapidb/011000358700002529571998/prdpos01_d.htm]. What do these give you? Nothing much really - you can use these as a way of input of your XML catalog data. But you still have to write your own program to load the data.
    In CRM, there are bunch of function modules when used in a coordinated way, can be used to build a loading program.
    Easwar Ram
    http://www.parxlns.com

  • Partial conversion of planned order into production order of AFS material

    Dear Experts,
    I am working with SAP 6.0 EHP4 with AFS add-on. My material is AFS specific material. I am not able to convert planned order into production order partially from MD04 screen as all the fields in the CO48 screen is grayed out. 
    Please help...
    Regards,
    Alok Tiwari

    Hi,
    I am not able to get what is passing the start date.
    Second thing is how you are generating the serial number - manually or automatic?
    If you are generating serial number automatic, then it is not possible to generate it considering the basic start date.
    But if you are entering the serial number manually, then there should not be any problem as system will accept that serial number which you enter at the time of conversion of planned order to production order.
    Regards
    Amit parkhi

  • How to convert mysql into bekerley db?

    i have a mysql database ,there is a table in it ,only have 7 fields:symbol,date,open,high,low,close,vol.
    would you mind to tell me how to convert it into bekerley db?

    Hello,
    You can build a drop-in replacement for SQLite by specifying the
    --enable-sql_compat flag to Berkeley DB's configure script.  This
    creates a binary, sqlite3 which has the same interface as SQLite.
    The "Getting Started with the Oracle Berkeley DB SQL API" and FAQ
    have the details:
    http://www.oracle.com/technology/products/berkeley-db/faq/db_faq.html
    http://www.oracle.com/technology/documentation/berkeley-db/db/bdb-sql/index.html
    Thanks,
    Sandra

  • Getting 'Out of memory' error while opening the file. I have tried several versions of Adobe 7.0,9.0,X1. It is creating issue to convert PDF into TIFF. Please provide the solution ASAP

    Hello All,
    I am getting 'Out of memory' error while opening the file. I have tried several versions of Adobe 7.0,9.0,X1.
    Also, it is creating issue to convert PDF into TIFF. Please provide the solution ASAP.

    I am using Adobe reader XI. When i open PDF it gives "OUT of memory" error after scrolling PDF gives another alert "Insufficient data for an image". after clicking both alerts it loads full data of PDF. It is not happening with all PDFs. couple of PDFs are facing this issue. Because of this error my software is not able to print these PDFS into TIFF. My OS in window7*64. I tried it on win2012R2 and XP. Same issue is generating there.
    It has become critical issue for my production.

  • Need to convert values into coma separated

    Need to convert values into coma separated
    I have a string value that stores data like 'NYK,IND,SGP,GER'
    FOR EXAMPLE
    V_CITY_CODE = 'NYK,IND,SGP,GER'
    When I query
    select * from city where city_code = V_CITY_CODE;I get no rows, this is because V_CITY_CODE has all city code as single code.
    I need a function to search , and replace with ','.
    I tried using instr and replace but was unable to convert it.
    could some one pls assist me.
    thanks in advance
    Saz

    Looking for this?
    SQL> select * from emp
      2  /
         EMPNO     DEPTNO ENAME                                 SAL DOJ       JOB
             1          1 Karthick                               80 03-DEC-11
             2          1 Karthick_1                             90 23-NOV-11
             3          2 Ram                                    80 03-DEC-11
             4          2 Ram_1                                  90 23-NOV-11
    SQL> var v_ename varchar2(1000)
    SQL> exec :v_ename := 'Karthick,Karthick_1'
    PL/SQL procedure successfully completed.
    SQL> select *
      2    from emp
      3   where ename in (
      4                     select regexp_substr(val, '[^,]+', 1, level)
      5                        from (select :v_ename val from dual)
      6                    connect by level <= length(val) - length(replace(val, ','))+1
      7                  ) 
      8  /
         EMPNO     DEPTNO ENAME                                 SAL DOJ       JOB
             1          1 Karthick                               80 03-DEC-11
             2          1 Karthick_1                             90 23-NOV-11

Maybe you are looking for

  • "disk cannot be read from or written to" -- help, please.

    this started in perhaps the last week or so - i tried updating my mini and it took ages. so i decided i would restore it instead, and as it was doing so, a message popped up and told me that the restore process could not take place because the "disk

  • Disable 'open PDF in browser'

    Hi, I'm trying to disable the open PDF in browser option in a corporate enviroment. The Adobe knowledge base said that this can be done by disabling the addon called 'Adobe PDF Reader' I've set a policy to disable this addon, but the PDF still open i

  • Mail Adapter: How to send data as a simple text file attachment?

    Hi All I have a proxy to file scenario, where i write data to a text file. Now, i need to have a second receiver. I have to send an email, with the above file as an attachment, to this receiver. How can i do this? How can i send the data as a text fi

  • Captivate 8 Drag drop - Many to Many as correct answers? via type.

    Captivate 8 Drag drop - Many to Many as correct answers? i.e. via type grouping of drag image objects I've hit a brick wall. I've been testing this drag drop quiz feature via the Interaction Wizard and I've found that drag items assigned to the same

  • HP Deskjet D1560 printing VERY slow

    I've gone through the troubleshooting (moved power cord direct to wall, reset printer, removed all cords and reattached, etc.) and I've turned on an off my computer all to no avail.  The printer was working fine a couple days ago but now it takes alm