Hi,
I am creating loans disbursement via Tcode : BCA_OR_DISB. After entering the necessary data on the Disbursement tab page I am saving the disbursement. Its getting saved but when I am trying to activate the saved order its going for short dump at
CALL FUNCTION 'BANK_BDT_CTRL_EVENTS_PROCESS'
EXPORTING
i_handle = u_bdtis_handle
i_flg_dlve1 = con_true
IMPORTING
e_flg_dlve1_ok = l_flg_dlve1_ok
EXCEPTIONS
no_handle = 1
not_found = 2
failed = 3
OTHERS = 4.
CASE sy-subrc.
WHEN 0.
WHEN 1 OR 2.
>>>>>>>>>>>>>>>>> MESSAGE x029(bca_order_am).
terner Fehler beim Entladen des BDTiS Controllers
WHEN 3.
IF l_flg_dlve1_ok IS INITIAL.
with the message as "Internal error unloading the BDTiS controller".
Please help me figure out the issue and to resolve.
Thanks,
Ramesh