안녕하세요..
혹시 WM 에서 재고 실사 처리시 Change inventory count (T-code: Li12 )
를 수행하기위한 Bapi 나 function 알고 계시면 공유 부탁 드립니다.
댓글 2
-
가비
2011.01.05 21:11
-
가비
2011.01.05 21:17
수정 function 을 누락 해서 다시 추가 합니다.
call function 'LXDCC_ACT_INV_COUNT'
exporting
* I_CHECK_ONLY =
i_commit = 'X'
is_e1linvx = lt_e1linvx
* I_MATNR =
tables
it_linv = lt_linv
* CHANGING
* CS_LINV =
exceptions
either_quantity_or_empty_bin = 1
ivnum_not_found = 2
check_problem = 3
no_count_allowed = 4
l_inv_read = 5
bin_not_in_ivnum = 6
counts_not_updated = 7
lock_error = 8
others = 9.
죄송합니다. 해당 function 찾았습니다.
음.. 나름 정리 하면..
재고 실사 처리는 아래 function 을 사용 하였으며
call function 'L_INV_COUNT_EXT'
exporting
i_commit = 'X'
importing
alle_lgnum = lv_lgnum
alle_ivnum = lv_ivnum
alle_nvers = lv_nvers
tables
s_linv = lt_linv
exceptions
others = 9.
Counting 이후 조정 실사 상태가 "Z" 인대상에 대한 수정 (기능 LI12 ) 은 아래 function 으로 처리 되네요
그럼..