Batch Input with transaction ME58

Hello SAP:
We are trying to do a Batch Input Session with transaction ME58
(Creating Service Entry Sheets) by using a FrameWork Order.
After the batch input selects the purchase order and mark all
the requisitions related with that order and confirms the selection,
the system calls program SAPLMLSR dynpro 400, where the tab "Basic
Data" appears and the error "Make an entry in all required fields"
(00 055) is displayed. Althought we had put all the obligatory
fields required by the Batch Input in that particular
screen SAPLMLSR - 400 (we also tried with subscreen 410), the fields
indicated in the Batch Input were lost.
It seems the flow control of the Batch Input is lost because of the
error message 00 055.
Thank You - And we will be waiting for Your answer.
Frinee Paredes

Hi Christian!!
The error that is displayed is because of a mandatory field, the problem is that it appears before the screen is displayed, I mean the validation occurs before I can input data.
It's very interesting what you said about enjoy transactions and there might be the problem, a few minutes ago, while debugging transaction ME58, I found that it calls function module MS_SERVICE_ENTRY2, which calls transaction ML81N, which I think is an enjoy sap transaction, I guess I'm in a big trouble because I've already looked for a BAPI and it seems there aren't any.
If you like to reproduce the error you could record transaction ME58 with transaction SHDB,you would need a framework order (FO) for the selection screen and purchase requisitions (PO) created asociated to that FO.
What I want to do with ME58 is to run a job periodically which creates service entry sheets with the FO and PR as input.
Thank you very much!!
Frinee

Similar Messages

  • Creation of Batch Input for transaction C201

    Hello,
    Currently I am having a requirement to create a batch input session for tcode C201.
    Following steps we need to perform using batch input session:
    1. Go to tcode C201 and enter material and Plant.
    2. Then click on choose template and give Mater Recipe option.
    3. On next screen enter Recipe Group and Recipe.
    4. After that it will go to Copy Master Recipe screen and then giving status it will open other tabs like Operations, Materials etc.
    Now when I create recording, till step 3 it is continuing correctly. but when press enter after step 3 it goes to Create Mater Recipe instead of Copy..
    I got one SAP note 142022 but dont know how to implement this in my case.
    Can you please help me?
    Thanks and Regards
    Nishad

    As [Note 142022 - Batch input and CATT in recipe|https://service.sap.com/sap/support/notes/142022] explain, you have to add one step in your batch input with BDC_OKCODE "=TOFF" on the first dynpro so C201 will always use old screens which are batch-input compatible. (First check [Note 365051 - OK code TON does not work when creating recipes|https://service.sap.com/sap/support/notes/365051] is implemented on your system)
    SAPLCPDI 4000
                  BDC_CURSOR RC271-PLNNR
                  BDC_OKCODE =TOFF
    Regards,
    Raymond

  • Batch input with objects

    Hi,
    Exists a standard class to develop a batch input????
    Any ideas???
    Is it possible to create a batch input with objects??

    Hi there
    Why not
    just define your class in the normal way
    decide what variables you need to pass
    in the methods of your class call the fm modules bdc open, bdc dynpro etc etc.
    Incidently the following include will have a decent amount of code for the BDC bits.
    include bdcrecx1.
    A good way is to start sm35 to record what you are doing on the screen. When you've finished  go to your recording in SM35 and click on CREATE PROGRAM - it will create most of the code for you including the screen fields -- you'll need to edit a bit of course as you don't need everything that will be shown.
    Debugging in the CREATE PROGRAM might show you a decent generic way of generating BDC's which you could easily do via a class.
    Note however using BDC's is the LEAST PREFRERRED WAY of performing work and should only be used as a LAST RESORT if there really is no other way. A lot of new BAPI's and Classes are now available which can do away with the need for BDC's  in most cases.
    job done.
    cheers
    jimbo

  • Batch input to transaction VG01

    hi abapers
    i want to do a batch input to transaction VG01, the problem is that when i have  more than the rows
    on screen (and this is according to user screen resulotion)  i need  to use page down button how can i avoid this.
    thanks
    Amit

    Hi,
    Check this link..may be it will help u..
    http://www.sapfans.com/sapfans/repos/comelite.htm
    Regards,
    JOy.

  • Batch Input at transaction AS02

    When I try to do a batch input on transaction AS02,
    it returns to me an error:
    Runtime error GETWA_NOT_ASSIGNED has occurred.
    someone knows what is happening?
    thanks!
    Ricardo

    Hi Rob.
    This note has been applied. We have this package here:
    EA-APPL          600       0010     SAPKGPAD10  SAP R/3 Enterprise Extension PLM, SCM, Financials
    Thanks!
    Ricardo

  • BATCH-INPUT On transaction VT02 does not work.

    Greetings, colleagues!!!
    I have written BATCH-INPUT on transaction VT02. I try to remove delivery from transportation. But for me does not work BATCH-INPUT because function of "Positioning" does not work in BATCH-INPUT. Prompt please. How I can remove delivery from transportation in my program using functionality of transaction VT02?
    Thanks for the help.
    Sergey Kozymaev.

    I used this in a program a while ago, worked like a charm.
    s_header-shipment_num = <shipment #>.
      i_item-delivery = <delivery #>.
      APPEND i_item.
      i_itemaction-delivery = 'D'.
      i_itemaction-itenerary = 'D'.
      APPEND i_itemaction.
      CALL FUNCTION 'BAPI_SHIPMENT_CHANGE'
        EXPORTING
          headerdata       = s_header
          headerdataaction = s_headeraction
        TABLES
          itemdata         = i_item
          itemdataaction   = i_itemaction
          return           = i_return.

  • Batch input with customer fields

    I have to create a batch input process that post documents through FB01L.
    As the lines of each document have been added customer fields, when I tried to go from one line of the document to the following one, a screen appears when I have to introduce some data (two of the fields are mandatory). I had solved these issue by ending with a "Call Transaction" with option "No batch input" = 'X'. This way, these customer fields appear directly in the screen, and not in a popup screen, so the batch input process was very easy.
    But, I have been told that I don't have to use "Call transacion", I have to create a session, and the user will post the document by launching it in SM35. This way, even adding "No batch input" = 'X' in the options of "BDC_INSERT", the popup screen appears when running the session.
    So, is there any way of running the session in SM35 with the option "No batch input"? If it's not possible, which is the best option of dealing with these popup screens? I have been able to go from one dynpro to another, and to open that popup screen, but I can't fill the mandatory fields.
    I hope you understand my problem, please excuse my English.

    Hi ,
    Go to the T code Mass , put the object as KNA1 for customers .
    Execute the same and you will find all the option available for making mass changes .
    In case if your requirement does not meet here then you will have to go for a LSMW .
    Regards ,
    Dewang T

  • Batch input with table control

    Hi,
    i have a problem with the batch input of picking window in vl02n transaction. I need to select a row of the bottom table but i don't know how many lines ara available in the program(different than the number of lines i can see) and it's possible that i will have to click the page down button, but i don't know when do this.
    I can't find any positioning option or similar.
    Any suggestion for doing this?
    Thanks

    Hi ,
    pls use the bi-recorder (ta: shdb)
    here's an example for positioning:
    *positioning
    perform bdc_dynpro      using 'SAPMF02D' '0360'.
    perform bdc_field       using 'BDC_CURSOR' 'KNVK-NAME1(03)'.
    perform bdc_field       using 'BDC_OKCODE' '=LSDP'.
    *page down
    perform bdc_field       using 'BDC_CURSOR' 'KNVK-NAMEV(04)'.
    perform bdc_field       using 'BDC_OKCODE' '=P+'.
    regards Andreas

  • Batch-input to transaction SM34

    Hello,
    I need to create a batch-input for the transaction SM34.
    I have done a recording but there is a screen(dialog structure) that only appeares when I call the transaction without batch-input mode. So, I have done the recording with the option "Not a Batch-input Session". But the recording gives the TCODE "=%_GC 117 22" when I do double-click for displaying the details and when I try to call the transaction (options-nobinpt = 'X') from my report, this TCODE doesn't work.
    Does anybody know if there is another way to display these details, without doing double-click? Or another way to pass this TCODE?
    Thank you very much,
    Maite.

    Hello,
    I've solve my problem on my own.
    I don't need to call the details by a double-click, I can go to Table View --> Other View. The TCODE of this option doesn't give any problem in the Batch-input.
    Maite.

  • Batch Input. Transaction KSU5 and KOK4

    Hi,
    I would like to execute transactions KSU5 and KOK4 in background.
    The system generates this error message 00344: "No batch input data for screen..." When the batch input session is processed online the error does not occur.
    Regards.

    Hi Martin,
    How can I execute this report in operation MODE 'E'?
    Regards.

  • FB05 Batch Input / Call Transaction - Does not select amount for payment

    Hi,
    When I launch the FBWD transaction (returned bills of exchange), the call transaction for G/L account postings is in error. So the FBWD automatically creates a batch input, but when I tried to launch the batch input, it remains unsuccessful.
    So I launched the BI in foreground, I can see that the first steps of the account postings are OK, but the BI stops when assigning the payment amounts : the BI found the different postings to clear, but it waits to enter the payment amount.
    Manually, I just have to click on 'Accept' or enter the payment amount and click on 'Continue'.
    => Is there anything to do so that there is no payment amount to fill? (there should be something because the FBWD is a standard transaction, so it should work!!)
    Can you help me on this?
    Thx

    Hi.
    Yes the issue has been resolved.
    You just have to configure your master record (FS00) by ticking the box 'relevant to cash flow' (XGKON).
    Hope it will help you.
    Bernard.

  • Problems executing batch input with call transaction

    When I execute BI with Call transaction the fields disabled are enabled and I do not know why. How to resolve it? I do not want them to be enabled

    Can you provide us the BI Program name and Transaction Code???
    Regards
    Eswar

  • Batch management with transactions

    Dear Gurus,
    My user has a material which has last transaction in May-2014 and wants to activate the batch management.
    I know the total stock and total value have to be removed by any means before activating the BM.
    My question is: Whether my work-around will have any bad consequence that you can think of?
    My work-around:
    As said, last trx is in May-2014. After that all stock/value are cleared.
    1. mmpv, change period to July-2014 (with some trick on escaping date check)
    2. activate the batch management
    3. mmrv - check "allow post to previous period (June-2014)
    So that user can continue to post in June (no need to wait a full month)

    1. Yes. Its the most sensitive work for a MM consultant. The main caution is that, if you open a posting period, its not a easy job to re-open the previous period (You may have to contact SAP for that).
    2. Right. the period is not stored anywhere in table. Only posting date is stored in various table.
    3. See, SAP allows only 2 months for posting a Material document number.
    Normally When you open a period from MMPV, then the current period will open.
    Now if you missed some to post a document in previous month, then SAP has given the option, that you can only post on previous month.
    Now as per your requirement.
    If you open the period July, then you can only post any document in July and previous month as June.
    You will never can't able to post any document in month May.
    As it is not 6th June, in meantime, if your organization want to post a document in May, then what can you do?
    You can do nothing because you can reopen the month May. Forcefully you have top post the document in June month.
    To avoid this, I have said take a proper document to open posting period in advance. It will be much better for you.

  • Listing Batch Number with transaction detail

    We use the Sales Order Usage Indicator to designate a Site location for order materials we supply to customers' building sites and I've written a report that lists component material details used in the Production orders created per sales order for each of those sites. What the user department would like is for the batch managed items detail to include the batch number associated with the material.
    However, I'm finding it difficult to find which file this batch number data is actually in. I've found some batch numbers in RESB (which I use to get the component material number and configured data) but out of the millions of records in there only about 66 have the batch number included in the record. The other files I've checked that include the batch number field do not have any data in it. It is at component level that the batch field should have a batch number included.
    Can anyone please advise as to where I can find the relevant data to complete my report.
    FYI, I start with getting Sales Orders with selected Usage Ind in from VBAK, then pick up relevant sales order item data from VBAP with joins to MARA and MAKT for basic material data.
    I get the Production order number from AUFK using the Sales order number and then I chain to RESB for the component material data using the Productioon order number. I pick up the batch field from RESB at this time but so far it has always been empty.
    Thanks very much
    Jim Jackson

    Thanks, Jurgen
    I was hoping to get away without using the MSEG file because of the size implications and resultant search time - as per BSEG on the financial side of things. 
    Anyway thanks for the confirmation of what I need. Much appreciated.
    Best regards
    Jim

  • Batch input / call transaction

    hi,
    happy new year to everybody.
    in the table whcih contains errors messages in call transaction (BDCMSGCOLL).  the message, which has MSGTYP = 'S' and MSGNR = '100', is a message of succes or not?.

    I would like to say yes, which many people will. But I ran a call transaction some time ago and had an issue with using the MSGTYP field.
    Use SE91 using the Message ID to get a description of the actual message.

Maybe you are looking for

  • My contact list has disappeared. how do I restore it from a past backup?

    My contact list on my iPod touch just disappeared today... for no reason that I can figure out. No other apps seem to have been affected. I tried sync-ing to my computer, but that didn't change anything. I would like to find out if I can get ahold of

  • Compiling classes and restarting Tomcat

    When making changes to any of my java classes I have to restart Tomcat in order for them to be made. Is this the only way to do it?

  • How to open free-synth daHornet in Logic Pro

    I have just downloaded the freesynth daHornet and would like to use in Logic Pro. I have copied the .compnent file into library/adio/plug-ins/components. I have tried to open daHornet through the 'inserts' portal of Logic, but daHornet does not regis

  • LCP and disconnections

    So since last November my bt broadband has gone...random. After many calls to helpdesk and testing of line quality etc and testing of new routers nothing has changed. I get random disconects...sometimes i can go a week with no issues then not be able

  • I have Lightroom 5 installed on my Mac. How do I get photoshop?

    I have LR 5 on my Mac. How can I get photoshop? it seems to be bundled with LR.