Incoming IDOC Error "No batch input data from the screen SAPMV45A 4001"

Hello ,
The Incoming IDOC with Message type 'ORDERS' is triggering the error message "No batch input data from the screen SAPMV45A 4001" with message no 00344 . There is an SAP note 785000 to handle this type of error message which has been already implemented. Still we are encountering few IDOC error's  at the time of sales order creation. The IDOC reaches status 51 throwing the error which is again reprocessed through BD87 .
We are unable to replicate the similar scenerio in Development & Testing systems as it works fine.
Can any one kindly advise how to eliminate the error "No batch input data from the screen SAPMV45A 4001" message at the time of Incoming IDOC processing.
Thanks in advance.
Best Regards
Sateesh

Dear Sateesh
Check this link where the same topic was discussed
[ VA01/VA02: batch-input error in IDoc processing|http://www.sapfans.com/forums/viewtopic.php?f=21&t=313032]
thanks
G. Lakshmipathi

Similar Messages

  • Error message 00 344 : No batch input data for the screen SAPMF02D 0324

    Hi Experts,
    We are working with SAP CRM 4.0 and SAP R/3 6.20
    We have an important number of BDocs (type 'BUPA_MAIN' ) in status  E02 with the error message
    00 344 : 'No batch input data for the screen SAPMF02D 0324'.
    Can any one help us to explain the cause of this message and how to resolve it ??
    Thanks you in advance for your help !
    Best regards,
    Nabil.

    Any ideas ?
    We really appreciate your help !

  • Error: No batch input data for screen SAPMZVKDIALOGDEMO 1000 Help Needed

    Hi Experts!
    I wrote a program for BDC. I am attaching the code herewith. When i am trying to process the session in SM35, i was getting the error: No batch input data for screen SAPMZVKDIALOGDEMO 1000. Can anyone please tell me, what am i doing wrong.
    Thanks.
    REPORT  zvkbdcdemo01.
    DATA: bdc_tab LIKE bdcdata OCCURS 6 WITH HEADER LINE.
    DATA: session LIKE apqi-groupid VALUE 'Session #1'.
    CALL FUNCTION 'BDC_OPEN_GROUP'
      EXPORTING
        client                    = sy-mandt
    *   DEST                      = FILLER8
        group                     = session
    *   HOLDDATE                  = FILLER8
    *   KEEP                      = FILLER1
        user                      = sy-uname
    *   RECORD                    = FILLER1
    *   PROG                      = SY-CPROG
    * IMPORTING
    *   QID                       =
    * EXCEPTIONS
    *   CLIENT_INVALID            = 1
    *   DESTINATION_INVALID       = 2
    *   GROUP_INVALID             = 3
    *   GROUP_IS_LOCKED           = 4
    *   HOLDDATE_INVALID          = 5
    *   INTERNAL_ERROR            = 6
    *   QUEUE_ERROR               = 7
    *   RUNNING                   = 8
    *   SYSTEM_LOCK_ERROR         = 9
    *   USER_INVALID              = 10
    *   OTHERS                    = 11
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    PERFORM fill_bdc_tab.
    CALL FUNCTION 'BDC_INSERT'
      EXPORTING
        tcode                  = 'ZVKTR001'
    *   POST_LOCAL             = NOVBLOCAL
    *   PRINTING               = NOPRINT
    *   SIMUBATCH              = ' '
    *   CTUPARAMS              = ' '
      TABLES
        dynprotab              = bdc_tab
    * EXCEPTIONS
    *   INTERNAL_ERROR         = 1
    *   NOT_OPEN               = 2
    *   QUEUE_ERROR            = 3
    *   TCODE_INVALID          = 4
    *   PRINTING_INVALID       = 5
    *   POSTING_INVALID        = 6
    *   OTHERS                 = 7
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'BDC_CLOSE_GROUP'
    * EXCEPTIONS
    *   NOT_OPEN          = 1
    *   QUEUE_ERROR       = 2
    *   OTHERS            = 3
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *&      Form  fill_bdc_tab
    *       text
    FORM fill_bdc_tab.
      REFRESH bdc_tab.
      PERFORM populate_bdc_tab USING:
      '1' 'SAPMZVKDIALOGDEMO' '1000',
      ' ' 'SFLIGHT-CARRID' 'LH',
      ' ' 'SFLIGHT-CONNID' '0400',
      ' ' 'SFLIGHT-FLDATE' '07/07/2007',
      ' ' 'SFLIGHT-PRICE' '1982',
      ' ' 'SFLIGHT-CURRENCY' 'EUR',
      ' ' 'SFLIGHT-PLANETYPE' 'A310-300',
      ' ' 'BDC_OKCODE' 'CREA'.
    ENDFORM.                    "fill_bdc_tab
    *&      Form  POPULATE_BDC_TAB
    *       text
    *      -->FLAG       text
    *      -->VAR1       text
    *      -->VAR2       text
    FORM populate_bdc_tab USING flag var1 var2.
      CLEAR bdc_tab.
      IF flag = '1'.
        bdc_tab-program = var1.
        bdc_tab-dynpro = var2.
        bdc_tab-dynbegin = 'X'.
      ELSE.
        bdc_tab-fnam = var1.
        bdc_tab-fval = var2.
      ENDIF.
      APPEND bdc_tab.
    ENDFORM.                    "POPULATE_BDC_TAB

    This normally means that you are trying to insert data on a screen for which a particular field is not available.
    So check screen number, screen fields and report name. In case of screen fields, use F1, F9 (technical information), and check the name of the screen field for batch processing (all the way at th bottom of the pop-up). This can differ from actual name of the screen field.
    If all this is ok, try to create a recording of the transaction with SM37.

  • Inbound ORDERS IDoc Error: No batch input....

    Dear all,
    i try to receive IDocs via the standard function module IDOC_INPUT_ORDERS. Partner profiles etc. are maintained in WE20. However, when I create the Test IDoc in WE19 and process it, i get the following error:
    No batch input data for screen SAPMV45A 4001
    Message no. 00344
    My IDoc looks as follows:
    EDIDC   2000000000000203045700 51        2SAPXXX    LSXXXCLNT200
            E1EDK01                                                                                220 56026671
            E1EDK14                     012OR
            E1EDK14                     00601
            E1EDK14                     00701
            E1EDK14                     008PLANT
            E1EDK03                     002200909170000
            E1EDK03                     012200909171212
            E1EDK03                     022200909171212
            E1EDKA1                     AG 0003000011
            E1EDKA1                     WE 0003000011
            E1EDK02                     001K1234567                                 20090911
            E1EDP01                     1          1              EA
                E1EDP19                     0035200000
    Has anyone an idea, what might be the reason for this error?
    Best regards
    Florian

    Hello Florian
    When you choose function "Inbound Function module" (IDOC_INPUT_ORDERS; WE19) switch the transaction processing to In Foreground or In Foreground after Error.
    Then you will clearly see what is missing and it should be easy to find out where to place the missing data into the IDoc.
    Most likely segment E1EDP20 (containing the quantity) is missing. Example:
    E1EDP20                     136.000        0.000          20080822
    Regards
      Uwe

  • Error "No batch input data for screen SAPMF02D 0130" MASS tcode Msg:00344

    Hi,
    I am trying to update the filed "Industry"(KNA1-BRSCH) with value "RNRN" in Customer master data (XD01) through Tcode MASS for 1500 customers. I am getting error "No batch input data for screen SAPMF02D 0130" Message no. 00344. I tried to upate one customer but still the same error popped up. We tried implementing SAP note 737698 but it did not work.
    Any inputs please??????

    Hi,
    MASS (KNA1)
    Select KNA1-BRSCH
    execute
    select customers
    give your value against New values field
    and click on mass change button
    Rgds
    Murali. N

  • Error: No batch input data for screen SAPLSTRD 0300 for BDC OB52

    Hello,
    I have created one program, where i am just calling transaction OB52 using batch input.
    CALL TRANSACTION 'OB52' USING bdcdata
                              MODE  input_method
                              UPDATE 'S'
                              MESSAGES INTO itb_msg.
    When I run my program in background the it is giving me Error "No batch input data for screen SAPLSTRD 0300 ", but I am changing the MODE to 'A' in foreground then it is working perfectly without any Errors.
    Can you guide me why i am getting the above error only when i am executing the program in MODE = 'N'...
    Regards,
    Sujeet Mishra

    Hello,
    Actually recording is perfect and it was working fine earlier on production server. now the error i am getting is related to transport request. like when we do the changes in transaction OB52 online is will ask you for transport request, but in my recording we are not taking care of this transport request pop-up screen, but it was working fine earlier.
    the code which was working fine is written below:
    LOOP AT itb_type.
        PERFORM bdc_dynpro USING 'SAPL0F00' '0065'.
        PERFORM bdc_field USING 'BDC_OKCODE' '=POSI'.
    * Ecran Positionner, fonct Suite
        PERFORM bdc_dynpro USING 'SAPLSPO4' '0300'.
        PERFORM bdc_field USING 'SVALD-VALUE(01)' p_bukrs.
        PERFORM bdc_field USING 'SVALD-VALUE(02)' itb_type-mkoar.
        PERFORM bdc_field USING 'SVALD-VALUE(03)' itb_type-bkont.
        PERFORM bdc_field USING 'BDC_OKCODE' '=FURT'.
    * Ecran principal, fonction Sauvegarde
        PERFORM bdc_dynpro USING 'SAPL0F00' '0065'.
    *   Période 1
        IF ( p_etape1 = 'X' ).
    *     Si Jour J+1
          PERFORM bdc_field USING 'V_T001B-FRPE1(01)' s_sppe1-low.
          PERFORM bdc_field USING 'V_T001B-TOPE1(01)' s_sppe1-high.
          PERFORM bdc_field USING 'V_T001B-FRYE1(01)' s_spye1-low.
          PERFORM bdc_field USING 'V_T001B-TOYE1(01)' s_spye1-high.
        ELSEIF ( p_etape2 = 'X' ).
    *     Si Jour J+6
          PERFORM bdc_field USING 'V_T001B-FRPE1(01)' s_frpe1-low.
          PERFORM bdc_field USING 'V_T001B-TOPE1(01)' s_frpe1-high.
          PERFORM bdc_field USING 'V_T001B-FRYE1(01)' s_frye1-low.
          PERFORM bdc_field USING 'V_T001B-TOYE1(01)' s_frye1-high.
        ENDIF.
    *   Période 2
        PERFORM bdc_field USING 'V_T001B-FRPE2(01)' s_frpe1-low.
        PERFORM bdc_field USING 'V_T001B-TOPE2(01)' s_frpe1-high.
        PERFORM bdc_field USING 'V_T001B-FRYE2(01)' s_frye1-low.
        PERFORM bdc_field USING 'V_T001B-TOYE2(01)' s_frye1-high.
    *   Gpe d'autorisation
        PERFORM bdc_field USING 'V_T001B-BRGRU(01)' itb_type-brgru.
        PERFORM bdc_field USING 'BDC_OKCODE'  '=SAVE'.
    ENDLOOP.
        PERFORM bdc_dynpro USING 'SAPL0F00' '0065'.
        PERFORM bdc_field USING 'BDC_OKCODE' '=BACK'.
    * Appel de la transaction OB52
      CALL TRANSACTION 'OB52' USING bdcdata
                              MODE  input_method
                              UPDATE 'S'
                              MESSAGES INTO itb_msg.
    Regards,
    SUjeet

  • Need solution for the following sync error: "iTunes could not sync calendars to the iPad "iPad name" because an error occurred while sending data from the iPad"

    Need solution for the following sync error: "iTunes could not sync calendars to the iPad "iPad name" because an error occurred while sending data from the iPad"

    I want to add that I deleted all the old back-ups and created a new back-up without any issues except sync problem.

  • "...an error occurred while sending data from the iPhone" - caused by latest iPhone update today?

    I've been syncing my iPhone to my (non-apple) desktop for several months without difficulty.
    Today I accepted the latest upgrade to my iPhone software.
    Since it installed, it will not sync.
    It gives the error message "iTunes could not sync calendars to the iPhone "Steve's iPhone" because an error occurred while sending data from the iPhone."  After rebooting the desktop, the error repeats, and it's now in hour 2 of the continuing message "Syncing Steve's iPhone (Step 2 of 2) - Finishing sync"
    Has anyone else run into this Undocumented Feature of the latest upgrade?
    As bugs go, this is pretty serious for those of us who depend on syncing the iPhone and desktop for our business!
    Thanks to anyone who can help!
    Steve Callender

    Tried rebooting the phone, and now it works.
    Guess there's 2 lessons here -
    Boot again when installing new SW, even if the phone reboots itself during installation, and
    Boot to see if that fixes a problem before posting it.
    Steve

  • Report error "Failed to retrieve data from the database."

    Post Author: tknorst
    CA Forum: .NET
    I have an application using CR XI R2, and on certain users computers when they try to run a report they get the following error:
    Failed to retrieve data from the database.Details: &#91;Database Vendor Code: 229&#93;Failed to retrieve data from the database.Error in File C:\DOCUME1\turkj\LOCALS1\Temp\WhseEmpJobAndActivityByUserAndDate {22DA2F53-4391-4307-9F2A-0E3C3EBE2198A}.rpt
    The report uses SQLOLEDB (ADO) and integrated authentication - it runs fine on the development machine.
    I found very little info on this error on the web (google) - so I hope someone here has an idea.

    You need to make sure that those systems can get conneted to the database that is supposed to return data. To check that create a udl in clients machine.
    Also do not change the schema of he report.

  • Error ''No batch input data for screen SAPMF05A 0701'' with interface

    Hi,
    While I ran an interface from our legacy (vendor invoice), this message appeared in AL11 ''No batch input data for screen SAPMF05A 0701''  I saw in the pass ''No batch input data for screen SAPMF05A 0700''  but never 0701.  I'm not able to find a lot of documentation that help me.  Does anyone know what can cause this?

    HI,
    You can check by yourself the reason of the error in the following way,
    related to note 26050.
    Please check all the 3 points and furthermore please follow the
    third that says:
    1.  Call up Transaction FBV0 and branch to the list.
    2.  Select the parked document in which the termination occurs, and
         create a batch input session via 'Edit -> Create batch input'. Then
         process the batch input session in the foreground.
    Processing the batch input in foreground, You will be able to find out
    the reason of the error message You have.
    So, please call transaction FBV0   > Push the button "Document list"   >
    Execute then choose the document You want to post and push the button
    "Create batch input"    > When the batch input session is created, go
    to transaction SM35 and run it in foreground in order to find out
    the problem.
    Kind Regards,
    Fernando Evangelista

  • Error "No batch input data for screen" in BDC for Tcode CN22

    Hi,
    The issue is When teh BDC code is run by Functional guys we are facing the error as "No batch input data for screen SAPLCONW 1100", when I am trying teh change the Network Activity Level User field in Tcode CN22. When I execute the same BDC code with Developer User id, it is executing perfectly.
    I have checked the User Profiles for both functional and Technical and both are same. What is my solution now?
    Regards,
    Deepthi.

    Hi
    Take Recording using the functional guy log in there might be user depended screen  sequence
    Regards
    Nilesh Gaikwad
    Edited by: Nilesh  Gaikwad on Jan 26, 2010 10:49 AM

  • Not able to get the current data from the screen

    Hello All,
    I have created a table view on a value node.  I edit a field which has a date F4 help or a field DDLB and click SAVE.
    In the save event handler I am using get first statement in the loop and when I see the contents of the entity it is the old data not the new values.
    Could you please help me on this ?
    Regards
    Sohit

    Hi Sohit,
    Use GET_CURRENT method of CL_CRM_BOL_ENTITY and try.....
    (make sure the Setter method is updating the values)
    Regards,
    Masood Imrani S.

  • Batch input error No batch input data for screen SAPLSPO4 0300 for ABZON

    Hi,
    I have to process ABZON for posting asset aquisition. BDC when i am running in background is giving me above error.
    though i have found BAPI BAPI_ASSET_ACQUISITION_POST
    but this BAPI is not posting into correct GL account for which i have to make posting. is there any way to specify additional offset account to BAPI(the way we have offset account option on ABZO/ABZON on second tab) ? i also need to enter WBS element for the GL account i am posting aquisition.
    i tried with ABZO too. though ABZO doesnt give me error in background but there is no way to specify WBS element both in ABZO/ABZON in background since option of "additional account assignment " is not available at background.
    Please suggest a way how can i post to correct offset account  with WBS element for any asset.
    Thanks, Bin

    I had to make BDC on other tcode to achieve this funtionality.
    Regards
    Bin

  • Error message: "iTunes could not sync contacts to the iPhone "name here" because an error occurred while sending data from the iPhone."

    Began when Apple replaced my HD on my iMac. I can backup without any problems but when it is time to sync, I get this error.

    I want to add that I deleted all the old back-ups and created a new back-up without any issues except sync problem.

  • Error in LSMW for MM41 - "No batch input data for screen SAPLMGMW 0100"

    I'm trying to create an LSMW for MM41 to create new Retail articles en Mass. This will be used to only create the Basic view as other LSMW's already exist to maintain the other views. I've created the Recording and setup the LSMW already. My data is read correctly from the source file. When I execute the batch session it fails with the following error - "No batch input data for screen SAPLMGMW 0100".
    I assume the fields in MM41 screen are not setup for batch processing. Could someone with more knowledge or experience in SAP Retail please confirm my assumption and explain where this is setup or provide an alternative to creating new articles en Mass via MM41? The direct input method is more suited for MM01 and not MM41.
    Regards
    Fawaaz

    Hi Guys,
    Thanks so much for all the prompt responses. My issue is now resolved.
    The issue, I'm sure, was my default settings in the MM41 screen which the recording probably took into account or the batch program didn't like. I deleted my recording and created a new one but before I started the recording, I went into the MM41 screen and removed all default values AND view selections. I made my Basic view selection constant in my recording and also in my field mapping. My LSMW for MM41 is now working perfectly.
    Just to answer some of the questions above, my LSMW was Reading and Converting the data in my source file fine. When I display the Read and Converted data, it shows the data fields in the correct place.
    Thanks again.
    Regards
    Fawaaz

Maybe you are looking for

  • Trackpad problem on macbook pro

    I have been having trackpad problems on my macbook pro (bought in 2010) for the past couple of days. Not only does it move erratically by itself, but the left click does not respond as it should. Whenever I use the left click, it works as a right cli

  • Mac-mini "detect displays" where is the individual model's DDC info stored?

    I have a dilemna- I just bought a new 20" NEC LCD screen that has all sorts of bells and whistles. It's 1600 x 1050 native, and has DVI, analog VGA, YUV, compostie, and RF inputs. It is supposed to have a scalar that supports a multitude of resolutio

  • Is it possible to set a default media player for the iPhone?

    I have a music subscription with another company, therefore all my music is played through their app. When I plug my phone into my car to play music, it always opens iTunes and alerts me there is no music there so I have to open the app and select th

  • Oracle Certification Help ?

    For Oracle Certified Associate DBA certification there are two exams to pass (1Z0-051 & 1Z0-052). Similarly, for Oracle Certified Associate Developer certification there are also two exams (1Z0-051 & 1Z0-144), So my question is that I have passed 1Z0

  • Oracle cdc change table column - cscn vs rsid

    Hi all, I am not able to understand the differences between the CSCN field vs the RSID field. Looking up internet guides it said: RSID is the Unique row sequence ID within this transaction.  The RSID$ column reflects an operation's capture order with