on 2019 Dec 16 3:00 PM
Hello,
i tried to use the LSMW recording method to run ABAA for so many assets, when i ran the batch i got the message "
No batch input data for screen SAPMA01B 0285"
is there a way to skip the screen 285?
thank you.
Request clarification before answering.
Hi Mohamed,
Does the screen mentioned in your post appear per additional depreciation area?
If so, I'm afraid you need coding.
Sample code for batch input recording for revaluation (ABAW)
...<br>* Determine depreciation areas
select afabe from anlb into corresponding fields of table lt_afabe
where xafbe eq ''
and bukrs eq lw_reval-bukrs
and anln1 eq lw_reval-anln1
and anln2 eq lw_reval-anln2
and bdatu eq '99991231'.
loop at lt_afabe into lw_afabe.
select afabe from tabwa into lv_afabe
where afapl eq lc_afapl
and bwasl eq lw_reval-bwasl
and afabe eq lw_afabe-afabe
and xberv eq lc_x.
endselect.
if lv_afabe ne '00'.
lv_count = lv_count + 1.
if lv_count > 1.
* start new screen per depreciation area
clear bdcdata.
bdcdata-program = 'SAPMA01B'.
bdcdata-dynpro = '0280'.
bdcdata-dynbegin = 'X'.
append bdcdata.
endif.
endif.
...
Best regards,
Jonathan Eemans
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
101 | |
39 | |
8 | |
5 | |
3 | |
3 | |
3 | |
3 | |
2 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.