Hi Friends
I have a routine 920 in R3 which has got two performs like below :
FORM kobed_915.
CHECK komk-regio = 'US'
IF komp-kposn NE 0.
CHECK: komp-prsfd CA 'BX'.
CHECK: komp-kznep = space.
ENDIF.
sy-subrc = 0.
ENDFORM. "kobed_915
Prestep
FORM kobev_915.
CHECK komk-regio = 'US'.
sy-subrc = 0.
ENDFORM.
I am not understanding how to convert this in Java user exit ?
this kobev and kobed are both called when i try to debug in R3, but could you give me some inputs on converting this above routine in Java user exit ?
My concern is how to convert a routine which has two diff perform returning a sy-subrc value each
thanks,
RD