Hi all,
I run a custom BDC program to upload some data for ABUMN tcode.
However I always get the error message as below.
344No batch input data for screen & &
It is screen SAPLAMDP 0100
The code as below: ( Note: I already handle the default company code popup box in Set Parameter line)
* Call transaction 'ABUMN'
* 'A' = foreground
* push data into company code popup box prompt for the first time
SET PARAMETER ID 'BUK' FIELD <gs_upload>-bukrs.
gv_mode = 'N'. "background
CALL TRANSACTION 'ABUMN' USING gt_bdcdata
MODE gv_mode "background
UPDATE 'S'
MESSAGES INTO gt_msg.
IF sy-subrc EQ 0.
* Uploaded into the database
* WRITE :/ 'DATA UPLOADED ...' .
ELSE.
* Error Found
CLEAR gw_msg.
LOOP AT gt_msg INTO gw_msg WHERE msgtyp EQ 'E'.
Can anyone advice how to overcome this problem?