Production Order outbound from SAP to PI

Hi
Can anyone help me to send Production Order outbound from SAP to PI?
I have used message type LOIPRO and Basic type LOIPRO01. But I have to enhance it for some customer fields. I am triggering the IDOC from user exit of Production order.
Let me know followings:-
1. Is there any AFS specific IDOC type available?
2. What is the triggering point for Production order IDOC?
Regards,
Subhankar
Edited by: Subhankar Chattopadhyay on Nov 12, 2010 3:57 AM

Hi,
I am not aware of AFS specific...
But in order to get trigger the idoc you can use the output types...using NACE for generating and sending to PI...
if you are using change pointers then i think you need to schedule the job for triggering the data in the form of idoc...
Hope this gives some clues..
Regards
Rajesh

Similar Messages

  • IDOC/BAPI for Production order creation from Legacy system

    Hi all
    We are using an interface to create Production orders from legacy to SAP. Would you recommend an IDOC or a BAPI to create Production orders. If IDOC or BAPI then could you please mention which one?
    thanks a bunch

    Hi John,
    For your purposes, please use BAPI for production order creation from legacy system. There is no standard inbound IDoc available to use. SAP has an IDoc for outbound interface only (message type LOIPRO).
    If there is an inbound IDoc available, I would recommend to use an IDoc.
    IDoc technology has excellent error handling and will allow you to reprocess an error (if any).
    BAPI is also good approach to use and fast in term of  processing.
    For BAPI approach, you can use BAPI BAPI_PRODORD_CREATE.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Mass change of Production Orders status from TECO to CLSD

    Hi All,
    I want to do mass change of Production Orders status from TECO to CLSD. could you tell me is there any t-code by which i can mass change Production orders status from TECO to CLSD. I want Production Orders to be closed, so that further confirmation shouldn't be done for these Production Orders. please let me know the solution.
    Regards,
    Ram

    Hi Girish/Dogboy,
    I can set the status 'Complete' if Order is fully confirmed/fully delivered. When ever i run COHV for partially confirmed/delivered Orders, i get error log saying 'Balance of ORD................ is not zero'. Actually we have lot of Production Orders, where there may be Production Orders released only, partially confirmed etc. so i want them to be closed once for all.
    Regards,
    Ram

  • Production order removal from MD04

    Hi All,
    I have set the deletion flag in the production order.Itis link to the Sales order which is open.Both the sales order and production order is showing in the MD04.How to remove the Production order only from MD04.
    Please help me.
    Thanks
    Srini

    Dear Srini,
    I would suggest two ways to this:
    1. Mark technically complete for the production order
    Goto CO02, after entering the prod. order
    -> Functions -> restrict processing -> technically complete
    Save
    2. Set rejection code in the sales order
    Goto VA02, in the item overview, double your item
    In Tab 'Status', enter the 'Reason for rejection'
    Feedback whether it helps or not.
    Ken

  • Production order creation from sales order

    Hi PP Gurus,
    I am creating a production order automatically from sales order by using strategy group exactly similar to 82. Once i create the sales order , its showing missing parts error in prouction order and if i check missing parts overview,it says over all confirmation date is not determine.We have stock in MMBE for that material and storage location combination.
    I have also chekced the requierement class and type and found ok.
    Please help me resolving this issue.
    Thanks in advance.!
    Regards,
    Sudheer

    Hi Mario,
    Yes, the availability check will check other stock types also. My concern is why the availability check is  failing and giving missing parts even if the components are there in stock after considering the reservations.
    I checked OPJJ setting, availability check is active and we did that.
    Can you please help me in this as we are stuck up at this point.
    Regards,
    sudheer

  • Sales Order iDoc from SAP SCM 7.0

    Hi Experts
    I have two question fro you guys.
    1. Can we generate VMI sales order idoc from SAP SCM 7.0? I know is can generate xml message. If we can generate idoc for VMI sales order from SAP SCM , please give me some direction or path to explore.
    2. Can I use idoc to to create to VMI sales order in ECC skiping CIF. But the changes in ECC to these order should use the CIF to update the VMI orders in SAP SCM.
    Please share your experience on this.

    Hi,
    Did you set up this scenario? I want something similar, but I want an ERP order to be created. Do you know if that is possible? Do you have som tips?
    regards Camilla

  • Checks in userexits of production order confirmations from PDC in CO16N

    Hi,
    we are using PDC interface for production order confirmations. This is done by Idoc type PPCC2PRETTICKET01 (time ticket) based on BAPI BAPI_PRODORDCONF_PDC_UPLOAD_TT. Standard confirmations are working well. In case of SAP detected errors the confirmations are registered for error handling in CO16N.
    So far so good but we have some own check logic implemented in confirmation user exit CONFPP04 and BADI WORKORDER_CONFIRM. These checks are working fine whith online confirmations in CO11N but not in background PDC Idoc processing. I checked the function module EXIT_SAPLCORF_104 for exit CONFPP04 but it has got no exception. The call in SAP processing is like this:
          CALL CUSTOMER-FUNCTION '104'
               EXPORTING
                    CAUFVD_IMP    = I_CAUFVD
                    AFVGD_IMP     = I_AFVGD
                    AFRUD_IMP     = E_AFRUD
               IMPORTING
                    AFRUD_EXP     = LS_AFRUD
               EXCEPTIONS
                    ERROR_MESSAGE = 01
                    OTHERS        = 02.
      CASE SY-SUBRC.
        WHEN 0.
        WHEN 1.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO WITH
                  SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4
                  RAISING CONF_DATA_FALSE.
        WHEN 2.
          MESSAGE E174 RAISING CONF_DATA_FALSE.
    How can I throw the exception when there is no exception defined in the function module interface without modification?
    As 2. option I wonder if it is better to implement the check logic in the BADI WORKORDER_CONFIRM Method AT_SAVE. This has got an exception ERROR_WITH_MESSAGE. But I don't know if this will lead to CO16N registration of the confirmation.
    Any hint how I can solve the problem to apply the online checks in CO11N also to PDC interface confirmations with CO16N in error case?

    Hi Michael,
    First, I think that the BAPI that you are looking for is: BAPI_PRODORDCONF_CREATE_HDR
    Second,
    I don't think that in the framework of such a forum it can be explained in detail how to use BAPIs; nevertheless, here are some highlights:
    A BAPI is an executable piece of code that can be called from either an external program within SAP (Z program), or called from an external system either via RFC, or as a web service (depends on your NetWeaver  release).
    As such, it has input (import) data that you transfer when you call it, and output (export) data that you recieve when it ended processing.
    More detailed information, documentation, and a description of the import/export parameters, as well as error handling, one can find in SAP by calling transaction BAPI.
    Regards,
    Mario

  • Production Order (Receipt from Production)

    Hi All,
    I have just found the bug at the time of Receipt from prodution Transaction
    I have Planned and Released production order and with out issue the child components I am able to do receipt from productiion.
    Is there any work around to solve the problem?
    I am using SAP 2007B Patch 0
    Regards
    Shashi

    Hi shashi,
    Its not a bug, its a flexibility. If you are looking at functionality to restrict issue without receipt then your child items should be 'Backflush' Items. Thus  by this you can reduce one transaction and also gain control over the inventory 
    control w.r.t issue to production.
    Regards,
    Aditya

  • Goods receipt not ticked in production order converted from sales order req

    Hi all,
    In MTO scenario, where requirement trigger from Inquiry -> Quotatation -> Sales Order -> Plan Order -> Production Order, goods receipt indicator in production order was not checked if requirement is triggering from sales order, however it is ticked if requirement trigger from inquiry, therefore we are not able to do confirmation. Appreciate if anyone able to assist us as soon as possible.
    Thanks in advanced.

    Hi,
    I understood that---
    If u r creating Sales order directly without Quotation u r  not able to do the GR.
    If u create from Quotation, u r able to do GR. right?
    I think, Problem with Settlement. Please Look into that.
    Kiran.

  • Goods receipt not marked for production order trigger from sales order

    Hi all,
    In MTO scenario, where requirement trigger from Inquiry -> Quotatation -> Sales Order -> Plan Order -> Production Order, goods receipt indicator in production order was not checked if requirement is triggering from sales order, however it is ticked if requirement trigger from inquiry, therefore we are not able to do confirmation. Appreciate if anyone able to assist us as soon as possible.
    Thanks in advanced.

    Hi,
    I understood that---
    If u r creating Sales order directly without Quotation u r  not able to do the GR.
    If u create from Quotation, u r able to do GR. right?
    I think, Problem with Settlement. Please Look into that.
    Kiran.

  • Issues to Production Orders created from Sales Order

    We have multiline Sales Orders that create a Production order for each sales order line (can be up to 70 or 80 per SO). We normally backflush these via multiple MB1A transactions after the SO has been completed. It is a lot of work doing the required issues to reduce stock levels and consequently they are always "late" being done and the stock is always out of date until the movements (type 261) are processed - generally monthly!!
    As a result, an Access Database has been created that reduces stock in that by entering the SO number and this is used for Stock enquiries. I would like to get rid of this Access database so as I'm sure other people have hit this same problem, is there a way of doing the same in SAP i.e. enter SO number and then relevant stocks are reduced accordingly.
    Any help would be appreciated.
    Thanks in advance
    Jim

    Hi,
    I am not clear why you are manually doing the process? When the production order is confirmed for each operation (CO11) the goods movement should be posted then, backflush selected in work centre or in the production order.
    Any failures can be processed via COGI rather than a database.
    Thanks.

  • Prevent Production order deletion from rrp3 and rrp4

    Hi,
         We have an issue is that production orders(without release) have been deleted by somebody from RRP3 or RRP4 Transactions.How to prevent this without restricting user access? Is there anyway to find it in log?I checked in RRPLOG1.But it is showing the planning log and no details about deletion.
    Thanks&Regards
    Venkadesh

    Hi,
    Production order is firmed receipt element and it is created in ECC and transfered to APO. So you cannot delete production order by using standarad tools in /SAPAPO/RRP3 or /SAPAPO/RRP4.
    Yes it is possible to delete production order from livecatche by using function module delete incon orders but not using RRP3 or RRP4.
    Once order is tecoed or closed it will be removed from APO automaticaly.
    Are you sure it has been deleted from APO.
    Run CCR and if it is in open state in ECC it will error order not in APO. You can push the order to APO.
    You can try out to delete production order in APO using RRP3 or RRP4 in your test system  it will not allow even if it is not released.
    Regards,
    Santosh

  • Change Production order thru a SAP Query

    Hello,
    i have a SAP Query to recalculate some conversion factors in the routing of a production order.
    Because the header unit of the routing is M2 and the routing operation is PC for example.
    No i need a idea how it is possible to update the fields in the production order thru this query. I would like to put some codeing in an addidional field which update this values for me.
    I found this function module CLOI_CHANGES_UPL_31, but i am not sure if i can update the conversion factors with it.
    Also my ABAP knowledge is not the best so it would assist my greatly if you can give me some help.
    kind regards,
    Bernhard

    Solved.
    I use first SM35 to create a record for batch input and after this i use this record in the coding in the query.

  • Production order number from Handling unit number.

    Hello All,
    I need to get the Production order number(AFKO-AUFNR) for a given Handling unit number(VEKP-EXIDV).
    I tried many tables but could not find a way to get it. Please suggest a way to find it.
    Thank you everyone.

    See SAP note 62077, your application server was shut down, the numbers that are left in the buffer (that is, that are not yet assigned) are lost. As a result, there are gaps in the number assignment.

  • Archving production order in sara - sap content server

    Hello,
    we run the sap content server. I have successfully created a content repository that is supposed to store the production orders.
    Now when I go to SARA and enter object PP_ORDER, go to storage system - store files and select the archive file I've created, I get the following error message after starting the archive job:
    HTTP error: 401 (Unauthorized)  "Security SsfVerify failed rc=7, lasterror=4129,PSE not existant, PSE=
    ?\C:\Program Files\SAP\Con
    Message no. CMS025
    Diagnosis
    Error in accessing via HTTP
    401 (Unauthorized)
    "Security SsfVerify failed rc=7, lasterror=4129,PSE not existant, PSE=
    ?\C:\Program Files\SAP\Con
    Any help?
    Thanks
    Anne

    Hi all,
    I got the same issue after sent certificate successfully in OAC0.
    "HTTP error: 401 (Unauthorized)  "Security SsfVerify failed rc=7, lasterror=4129,PSE not existant, PSE=C:\Program Files\SAP\Content"
    Dis you have the solution?
    Thanks,
    Hung.

Maybe you are looking for

  • Analyzing video 0%?

    I have  captured about 30 min of video through firewire 800 from a Sony Fx1 (so from tape). I chose to analize video for poeple and consolidate results. In the last two hours, backgroung tasks have done nothing. I am running final cut x  on a new mac

  • Errors in stand by alert.

    though my 4 node stand by database is sync with 4 node primary.. my alert log on the stand by database filling with this erros.. RFS[1]: Archived Log: '/archive/kftscp_1/2_1490_690902567.dbf' Primary database is in MAXIMUM PERFORMANCE mode RFS[1]: No

  • Email "from" name is incorrect

    I am experiencing something that I have never seen before. Situation:  I create an email message and send it to a group.  I am part of that group, so I am also a recipient of that message.  When the message arrives in my in-box the "from" field shows

  • AUDIT,CMS,BOMM: Same database, different schemas..?

    Hi, When installing BOE 3.0 and BOMM 3.0, is it ok to put these repos in the same oracle database, in different schemas, or is it recommended to have bomm repo in a separate database ? Any experiences ? Thanks, - jem

  • Oracle Apps Licensing Information

    Hi All, Where can I get Various installation and licensing options for oracle Apps . Frequently I have to answer questions like this: we are having Inventory+PO+Order Management. Now we are looking at implementing ATO or PTO processes. ATO is better