0 pts.
 LSMW to transfer assets within company code
Hi, I have created an LSMW recording to transfer assets within company code (transaction ABUMN). The recording created two target structure and I created the same number of source fields, configured the mappings and renamed some source fields as necessary. However, when I run the batch job to update in this recording, I get this error message 'No batch input data for screen SAPLAMDP 0100 Message no. 00 344'. Your urgent help is kindly appreciated. Thanks

Software/Hardware used:
ASKED: June 15, 2005  1:56 AM
UPDATED: June 17, 2005  4:17 AM

Answer Wiki:
I have run into the same issue before. You are getting this error becaue SAP works differently "on-line" as opposed to "in batch." On-line you only see the screens that are configured to show, but in batch mode the system calls, or may call, every screen available to the system, not just the ones you configured to show. You will have to have you ABAP programer take a look at he LSMW recording and adjust the script to ignore the unused screens and fields. Hope this was of some help.
Last Wiki Answer Submitted:  June 16, 2005  12:48 pm  by  YellowWing   0 pts.
All Answer Wiki Contributors:  YellowWing   0 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

If your ABAPer has to change something in the LSMW generated report, the easiest way is to change to the online behaviour in the call transaction sentence.

Example:
data opt1 type CTU_PARAMS.
opt1-disMODE = MODE.
opt1-UPDmode = UPDATE.
opt1-nobinpt = ‘X’. ” online mode

CALL TRANSACTION ‘XXXX’ USING BDCDATA
options from opt1
MESSAGES INTO MESSTAB.

Then, you do not have to change the screen sequence.

 0 pts.

 

Reason of this problem can be because of dates put in.

 10 pts.