Unable to do goods movement when calling BAPI_PRODORDCONF_CREATE_TT

Hi,
I have used BAPI_PRODORDCONF_CREATE_TT as RFC.
When I run the bapi with that of input payload seperately production order confirmation and goodsmovement  are done successfully.
But when I run the interface then only production order confirmation is successfull while goodsmovement is unsuccessfull.
Any help on this please?
Thanks in advance,
Rohan.

Hello Rohan,
I you are using BPM to call two RFC's seperately for prd.conf and goods movement, then, try to incorporate a Wait step in the BPM!
Regards,
Jilan

Similar Messages

  • Standard cost estimation after goods movement when material ledger is activ

    Hi!
    our client is activated material ledger, for some materials standard cost estimation is done till marking but not released.
    goods movements have been posted for those materials.
    Now system is not allowing to release the standar price for those material in the current period, as material ledger expects same price for entrie period.
    what is the alternative way to update the standard price for those materials ( with out reversing the goods movements).
    regs,
    ramesh

    Hi Ramesh,
    When you are using Material Ledger, after goods movemnets for materials, no need to change the standard cost estimate as Actual costing run will take care to derive the PUP price.
    If there is no standard cost estimation release for sold materials (e.g.FG), you will get an error message duirng the billing document release to accounting. To aviod this error, if you are using split valuation (valuation types) and mixing ratios (CK91N & CK94), try with the below steps:
    Create a new valuation type for the same material
    Crate CK11N & CK94,
    Run CK11N
    Run CK24.
    Then release the billing document.
    Let me know if you need more details.
    Thanks & Regards,
    ADI

  • Unable to view download movies when in the air??

    unable to view downloads when on the plane??

    You might want to include a little more information such as the source of the download and the app. However, if you are referring to a movie purchased in itunes, yes, once downloaded you do not need WiFi to view. but it must be downloaded first.
    To actually download or stream, you need a WifI connect that permits that. Most airline WiFi services block large file downloads and streaming.

  • Unable to slide to answer when call comes in?

    Hi All,
    Does this issue happens to iPhone 4 or all other generations of iPhone? I'm unable to slide to answer my phone calls at least 60% of the time and i have to try multiple times to slide which doesn't sometimes doesn't stick to my sliding??? Is there any suggestions or solutions to this? Sorry if this has been posted before.

    A probably similar problem occurs sometimes on my own iPhone 4 and on my wife's iPhone 4.
    When a call comes in, "slide to accept" does not work properly. It can be moved half-way across the screen but then it snaps back. Then I try to slide it again and again and eventually it works, before the call is lost. For me, this problem only occurs about 5% of the time (probably less often on my wife's iPhone), and I remember that it happened also sometimes with my old iPhone 3gs. This is very annoying.
    I think that in this mild form the problem occurs very often. See, for example, http://discussions.apple.com/thread.jspa?threadID=2486329
    and there seems to be no solution so far.
    Please, Apple, do something about this.

  • I recently downloaded the new software to my iPad! I also rented and downloaded several movies, I am unable to watch the movies, when I click on the movies it says downloaded but nothin plays? Help!

    I downloaded one movie and rented others, when I open iTunes and select the movie it says downloaded, but I have not figured out how to play the movies!

    Hello there, Starbrute11.
    The following Knowledge Base article provides some great troubleshooting steps for your issue:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Documentary Batch Field for Line item when calling BAPI_GOODSMVT_CREATE

    hi all,
    Iam unable to locate the Documentary Batch Field for each line item while posting a Goods Issue using BAPI BAPI_GOODSMVT_CREATE.
    BAPI2017_GM_ITEM_CREATE structure has got no field to enter the DB number against each line item. Although its not a mandatory field while posting a goods issue when calling the BAPI, but there shud be a input field for the same. When doing a similar posting in SAP using MIGO transaction it's mandatory to enter a Documentary Batch number(SAP Field name DOCUBATCH_CHARG). Does anyone have come across this situation. Is there a field with different name in the  BAPI2017_GM_ITEM_CREATE structure ? Appreciate your thoughts !
    Regards,
    Gilmour

    Hi Vindy,
    bapi2017_gm_item_create-batch is the field for the Batch.
    However Iam looking for a field called DB No which is basically a Documentary batch ensure the traceability of a material, without it being necessary for the stock of the material to be managed in batches. If you look at the Item section in MIGO you would have Batch and DB No for each line item and Iam looking for the DB no and not the primary Batch.
    Thanks,
    Gilmour

  • Goods Movement - BAPI_GOODSMVT_CREATE - input parameters

    Hi,
    I have to create a goods movement with movement type 343 and 344.
    While using the transaction MB1B (Tranfer Posting), I give the following parameters.
    Header
    1. Document Date              2. Posting Date
    Item
    1. Movement Type              2. Plant                  3. Storage Location
    4. Material                         5. Quantity
    But while using the BAPI for creating the goods movement, it creates material document. But I am neither able to view the document nor see any change in the good movement of the material. The quantity remains same in transaction MMBE.
    I feel that item details given as input to the BAPI needs changes. Can anyone suggest the fields to which each of the above item details needs to be given.
    Thanks.
    Regards,
    Senthil G.

    Hello Senthil,
    Check this sample code
    REPORT ZRICH_0001 .
    * Structures for BAPI
    DATA: GM_HEADER  TYPE BAPI2017_GM_HEAD_01.
    DATA: GM_CODE    TYPE BAPI2017_GM_CODE.
    DATA: GM_HEADRET TYPE BAPI2017_GM_HEAD_RET.
    DATA: GM_ITEM    TYPE TABLE OF
                     BAPI2017_GM_ITEM_CREATE WITH HEADER LINE.
    DATA: GM_RETURN  TYPE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA: GM_RETMTD  TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    CLEAR: GM_RETURN, GM_RETMTD. REFRESH GM_RETURN.
    * Setup BAPI header data.
    GM_HEADER-PSTNG_DATE = SY-DATUM.
    GM_HEADER-DOC_DATE   = SY-DATUM.
    GM_CODE-GM_CODE      = '04'.                                " MB1A
    * Write 971 movement to table
    CLEAR GM_ITEM.
    MOVE '412'                 TO GM_ITEM-MOVE_TYPE     .
    MOVE 'Q'                 TO GM_ITEM-SPEC_STOCK.
    MOVE '3800533484'  TO GM_ITEM-MATERIAL.
    MOVE '1'     TO GM_ITEM-ENTRY_QNT.
    *MOVE 'PC'    TO GM_ITEM-ENTRY_UOM.
    MOVE '1060'  TO GM_ITEM-PLANT.
    MOVE '0007'  TO GM_ITEM-STGE_LOC.
    *MOVE '0901'   TO GM_ITEM-MOVE_REAS.
    MOVE 'P203601001' TO GM_ITEM-WBS_ELEM.
    MOVE 'P203601001' TO GM_ITEM-VAL_WBS_ELEM.
    APPEND GM_ITEM.
    * Call goods movement BAPI
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
         EXPORTING
              GOODSMVT_HEADER  = GM_HEADER
              GOODSMVT_CODE    = GM_CODE
         IMPORTING
              GOODSMVT_HEADRET = GM_HEADRET
              MATERIALDOCUMENT = GM_RETMTD
         TABLES
              GOODSMVT_ITEM    = GM_ITEM
              RETURN           = GM_RETURN.
    IF NOT GM_RETMTD IS INITIAL.
      COMMIT WORK AND WAIT.
      CALL FUNCTION 'DEQUEUE_ALL'.
    ELSE.
      COMMIT WORK AND WAIT.
      CALL FUNCTION 'DEQUEUE_ALL'.
    ENDIF.
    WRITE:/ GM_RETMTD.
    LOOP AT GM_RETURN.
      WRITE:/ GM_RETURN.
    ENDLOOP.
    " Also after iu call the BAPI use the FM BAPI_TRANSACTION_COMMIT
    If useful reward.
    Vasanth

  • GI:How to set Indicator:Item Not Relevant for Goods Movements LIPS-NOWAB

    Hi,
    does anybody know what i have to do to get the Indicator: Item Not Relevant for Goods Movements set for a good issue delivey position? (Table LIPS field NOWAB)
    thanks in advance
    Steffen

    Hi,
    the thing is the following (maybe it doesn't work at all, i don't know) :
    a) i have a "Non-stock" material (e.g.material type NLAG)
    b)this material should be picked, so it should be relevant for the delivery (e.g.item category TAX)
    c) for a special reason the "Total goods movement status" in the outbound delivery header shouldn't be "Not relevant", therefore i assigned the item category TAX to a shedule line category that has a movement type (e.g. CN)
    d)but the bad thing is, that the customer has set the indicators "quantity updating" and "value updating" for the material type NLAG, and so the goods issue posting gets some errors. eg.g missing storage location etc.)
    During debugging i found a coding that checks the sign NOWAB of lips, the documentation says:
    "You can use this indicator to control whether the item is relevant for goods movement when the delivery is still being created.
    When this indicator is set, goods movement is not posted for this item - regardless of the movement type assigned  to it."
    So i head the idea it might be possible to set this indication (Lips-nowab) somewhere in the sales order or somewhere else but maybe this conflicts with point c) above .
    Maybe shomeone knows what to do or has a better idea.
    Best regards
    Steffen

  • How to get more detailed error information when calling Java SP

    Hi
    Sorry for reposting this in here but I got no responses in the JVM forum...
    I am calling a Java stored procedure from a PL/SQL stored procedure (Oracle DB 9.2.0.8.0) and I am getting the exception:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.NullPointerException
    It does not help much though... Is it possible to get the full Java error stack from within PL/SQL so I can log a more informative message?
    Thanks!
    Luis

    Thanks for the replies! However I am not sure if they help...
    I will give some more info about my problem. I have an Oracle job that runs every morning and executes a PL/SQL procedure, which in turn calls that Java SP.
    Sometimes the Java SP fails and the error is logged; however only the message "java.lang.NullPointerException" is reported by the SQLERRM function (apparently the last Java error message in the error stack). I am unable to reproduce the error when calling the Java SP manually as was suggested.
    I need to log a more detailed error message from within PL/SQL to know exactly where the error occurred, when it occurs next time...
    I will take a look to see if I can get some information in some trace file, though ideally I would like to do it programatically.
    Thanks
    Luis

  • Goods movements

    Hi,
    I am having an issue  with goods movements.when two people are trying to post goods at  the same time one of them is getting an error saysing that the plant data info is blocked by XXXXXXX user. this is happening for the confirmation process. In my business process 20 people will be doing confirmations at the same time. so I am having this problem quiet often. how to over come this.
    I know we can set a background job to post all goods moements   ( OPKC) but those  scenarios dont work for my business process.
    is there any way to queue thise movements instead of all happening at the same time.

    Hi
    I think this question was raised earlier also. The best way is to allot a fixed time slot for your users so as to avoid clash. I suppose i explained that the master data of any material is stored at one place only and if you schedule a background job for this then all your good movement transaction will be in que and performed in orderly manner.
    If automatic posting is not possible then use the time slot method.
    Krishna

  • Goods movement not possible with mvmt type 991

    Hi,
                As per requirement I need to create a GR for Purchase order wise. I tried to create using BAPI BAPI_GOODSMVT_CREATE but It returns the error message.
    error:  Goods movement not possible with mvmt type 991
    LOOP AT gt_outtab1.
      gt_outtab1-gr_wght       =   gt_outtab1-gr_wght.
       MOVE: gt_outtab1-matnr            TO gt_item-material,
              gt_zseed_po_qty-werks       TO gt_item-plant,
              gt_zseed_po_qty-lgort       TO gt_item-stge_loc,
             '901'                        TO gt_item-move_type,
              gt_outtab1-gr_wght          TO gt_item-entry_qnt,
              'B'                         TO gt_item-mvt_ind,
              '1'                         TO gt_item-stck_type,
              v_lifnr                     TO gt_item-vendor,
              gt_outtab1-ebeln            TO gt_item-po_number,
              gt_outtab1-ebelp            TO gt_item-po_item.
    APPEND gt_item.
    ENDLOOP.
    CLEAR gt_item.
      LOOP AT gt_outtab3 WHERE bqty IS NOT INITIAL.
        MOVE: gt_outtab3-bmatnr           TO gt_item-material,
              gt_zseed_po_qty-werks        TO gt_item-plant,
              gt_zseed_po_qty-lgort      TO gt_item-stge_loc,
             '991'                        TO gt_item-move_type,
              gt_outtab3-bqty             TO gt_item-entry_qnt,
              ''                          TO gt_item-mvt_ind,
              '1'                         TO gt_item-stck_type,
              v_lifnr                     TO gt_item-vendor.
        APPEND gt_item.
      ENDLOOP.
    CLEAR gt_item.
      LOOP AT gt_outtab3 WHERE pqty IS NOT INITIAL.
        MOVE: gt_outtab3-bmatnr           TO gt_item-material,
             gt_zseed_po_qty-werks        TO gt_item-plant,
              gt_zseed_po_qty-lgort      TO gt_item-stge_loc,
             '942'                        TO gt_item-move_type,
              gt_outtab3-pqty             TO gt_item-entry_qnt,
              ''                          TO gt_item-mvt_ind,
              '1'                         TO gt_item-stck_type,
              v_lifnr                     TO gt_item-vendor.
        APPEND gt_item.
      ENDLOOP.
    ***********Call goods movement BAPI
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header  = gs_header
          goodsmvt_code    = gs_code
        IMPORTING
          goodsmvt_headret = gs_headret
          materialdocument = gs_retmtd
          matdocumentyear  = gs_year
        TABLES
          goodsmvt_item    = gt_item
          return           = gt_return. 
    so could you please let me know which are the parameters I need to pass to create GR?
    regards,
    tarun

    Hi,
    Go to T.code OMJJ . Give your your movement type 991. Check the allowed transaction and all the details  in your left hand side and the settings done.
    Thanks
    Arbind

  • Error in PARALLEL goods movements involving batch name

    Hello everybody,
    I am facing some problem in goods movement and expect some views in the following scenario.
    Having a problem in PARALLEL goods movements when multiple users perform any of these pair of transactions
    (PGI with GR),
    (GR with GR),
    (GR-PGI-PPorder confirmation)
    The system generates message M3682 'Batch & of material & is already locked by &'.
    We are facing this transaction blocks very frequently.
    The common factor in all these transactions is the batch name 'OK'.
    Till now the material lock (OMJI) was "EXCLUSIVE LOCK", i had tried to simulate with activating "LATE LOCK" also, but the same error M3682.
    Please spare some time in analysing this scenario. Please let me know if you need more details.
    Thanks & Regards,
    Joy Ghosh

    What is the quantity of one batch?
    How many plants do you have?
    in what portions do you sell this material?
    Answering those questions could actually bring some light, as I usually consider this as an unlikely event, which often happens in training sessions because of unrealistic test cases, but occurs less often in reality.
    I am working in a chemical company and a batch could be for example any quantity between 2 and 100 tons.
    Lets assume we produced 20 tons, and we pack this into 50 drums with 200 kg and 100 drums with 100 kg
    Assuming that each customer orders just 1 drum, then we would have a maximum of 150 activities until the batch is gone.
    if this is distributed through 15 plants, then each plant has just 10 activities.
    In a normal day with 8 hour working time, it is a little more than one activity per hour in average.
    Is a batch really  sold off within one day, or isn't it usual that you may need several days until everything is sold?
    If the users are well trained, which means they know that they shall not use a change transaction to display content, that they shall leave a transaction when they go for lunch (or something else) then such cases that they block each other can happen but much less than some panic stories try tell us.
    Try to search for notes, there are some, but they can certainly not make this locking go away as it is technically needed, like you cannot have 2 trains on single track without collision

  • Production order goods movement issue

    Hi,
      i am interested in issuing the materials to a production order at the creation stage.please specify any settings can be made for this. I want it to happen in specific plant only and not at global level.
    please suggest
    regards
    madan

    Hi,
    Normally system will not Allow  any  Goods Movement when the Order has CRTD status (Creation stage).
    However u can overcome this  by doing allowed Goods MVt for status at CRTD at BS22.
    It will afftect all the Plants & order types globally ,
    As i know   your requirement is not possible  .
    Pradeep

  • Problems with goods movements cancelling network confirmations

    Hello experts,
    I'm having some problems with goods movement when cancelling network confirmations.
    I assign a component for a operation in the project builder (CJ20N). Then when I execute a confirmation for that operation in CN25 everything works correctly, I can assign the time for the confirmation and SAP automatically carries the component assigned to the operation. Once I have done the confirmation the goods movements and the hours have a correct account assignment.
    The problem is that if I cancel this confirmation, the hours are correctly cancelled but the component is still there. If I try to cancel the goods movement with MIGO it is no possible because the system says that must be cancelled with the corresponding transaction (CN29) but, as I have said, the system does not cancel it.
    On the other hand, If the goods movement goes to COGI transaction and then I post-process the error, If later I cancel the confirmation, everything works correctly.
    Does anybody know why this could happen?
    Thanks and regards
    Laura

    Hi
    I think this question was raised earlier also. The best way is to allot a fixed time slot for your users so as to avoid clash. I suppose i explained that the master data of any material is stored at one place only and if you schedule a background job for this then all your good movement transaction will be in que and performed in orderly manner.
    If automatic posting is not possible then use the time slot method.
    Krishna

  • Good Movement at the confirmation of an operation

    Dear All,
    I tried to make good movement when I maked an confirmation for an operation.
    I configured whit TC: OPK4 automatic good movement and whit TC: OP67 I choosed option automatic good movement for control key.
    However, when I maked an confirmation (TC: CO1F), the system didn't propose the material from BOM, for issues, or the finished good to get in stock.
    And an additional question: if I have many operations on the routing and each of them have the same control key (PP01, for example) the system cannot accept any automatic good movement.
    What can I do in this case?
    Thank you very much for the answers.
    Regards,
    Marian

    Hi,
    You are trying progress confirmation right...
    As per my knowledge for production order confirmation you could findth egoods movement...
    in CO15 or CO11N...
    For th e second question if u have N number of operations then you could confirm operation wise in CO11n and for first operation goods issue and for the final operation goods recipet will happen
    Regards,
    sravanthi
    Edited by: Sravanthi683 on May 21, 2009 10:34 AM

Maybe you are looking for

  • Status LIS9 of the User interface MP000200 missing

    Hi All, While creating leaving action. System is giving error (Status LIS9 of the User interface MP000200 missing. Mentions below are my configuration. Infogroup COP 0001 Org assignment LIS9 0002 Personal Data LIS9 0006 address LIS9 0105 Communicatio

  • EJB Timer problem

    Hi all, I'm trying to run the J2EE Tutorial EJB Timer sample, but I keep getting an exception: Errors while obtaining information about the database. Got the following exception: java.sql.SQLException: Error in allocating a connection. Cause: Connect

  • Is there a way to prevent apps from reopening on startup?

    I like to shut my computer down without closing each app but I don't want to have them all reopen on start up. Is there a way to prevent apps from reopening on startup without having to close them all before shutting down? I found the checkbox to pre

  • G5 xserve: How do I boot from a FireWire device ?

    Hi. I have a PowerPC G5 server WITHOUT a keyboard/display and have just installed Leopard 10.5.1. After setting up Leopard, I made a backup copy of the server HD onto a Lacie FireWire hard-drive device connected to the FireWire 400 port on the front-

  • How to exclude Sales orders while crdit check

    Gi gurus,    I am using Automatic Dynamic Credit check at PGI level & creating crdeit limit check as ZERO Amount. Scenario is like this 1st Sales order Value is 1000 2nd Sales Order Value is 3000 Customer Pays Rs 1000  for 1st sales order then if i g