2005 Jul 02 9:18 AM
Dear all,
Does any body knows of any bapi to cancel goods issue.
Currently, I used BDC to cancel goods issue and the results are not very stable. Sometimes, i will get the error message 'No batch input data for screen RVV50L09 1000' and sometimes it works.
Any advice?
Thanks,
JW
2005 Jul 02 2:48 PM
Dear all,
Does any body knows of any bapi to cancel goods issue.
Currently, I used BDC to cancel goods issue and the results are not very stable. Sometimes, i will get the error message 'No batch input data for screen RVV50L09 1000' and sometimes it works.
Any advice?
Thanks,
JW
2005 Jul 02 2:48 PM
2021 May 28 5:39 PM
2005 Jul 04 2:02 AM
Hi, Junwen!
Code below works fine for me:
DATA:
fp_vbeln TYPE likp-vbeln,
fp_budat TYPE sy-datlo,
fp_tcode TYPE sy-tcode,
fp_vbtyp TYPE likp-vbtyp,
it_mesg TYPE STANDARD TABLE OF mesg.
fp_vbeln = 'outbound delivery number'.
fp_budat = 'reverse date'.
fp_tcode = 'VL09'.
fp_vbtyp = 'J'.
CALL FUNCTION 'WS_REVERSE_GOODS_ISSUE'
EXPORTING
i_vbeln = fp_vbeln
i_budat = fp_budat
I_COUNT =
I_MBLNR =
i_tcode = fp_tcode
i_vbtyp = fp_vbtyp
TABLES
t_mesg = it_mesg
EXCEPTIONS
error_reverse_goods_issue = 1
OTHERS = 2.
Regards,
Maxim.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |