we implement BAdi BBP_CREATE_BE_RS_NEW
but the system also want to creating asset with movement type 201
can u send me the sample of badi for reserve
is my badi confiq ok?
method IF_EX_BBP_CREATE_BE_RS_NEW~FILL_RS_INTERFACE1.
data : account type line of BBPT_PDEXT_ACC.
loop at IS_SC_DOCUMENT-ACCOUNT into ACCOUNT.
if account-ACC_CAT = 'CC'.
CS_RS1_DOCUMENT-IS_RS_HEADER-MOVE_TYPE = '201'.
elseif account-ACC_CAT = 'AS'.
CS_RS1_DOCUMENT-IS_RS_HEADER-MOVE_TYPE = '241'.
endif.
endloop.
endmethod.