cancel
Showing results for 
Search instead for 
Did you mean: 

Hi, I am using abap 460 version , I need to imeplement BACKGROUND TASK with exception in fuctions.

Former Member
0 Kudos

CALL FUNCTION lv_zf_fub IN BACKGROUND TASK

DESTINATION lv_zf_dest

EXPORTING

ic_mic_if = lv_body_msg_type

ic_transaction_id = lv_transaction_id

ic_message_id = lv_message_id

ic_actioncode = lv_actioncode

ic_partner_id = lv_partner_id

* it_mic_data = pt_file_data

it_mic_data = file_data.

.But in this version Function definition no exception handling option .how can i handle exception in this version of abap .

Accepted Solutions (1)

Accepted Solutions (1)

former_member283780
Discoverer
0 Kudos

Hi Krishnendhu,

the command RECEIVE can help you handling any sort of output from a background task.
It is well documented in the keyword documentation, but you can have a look at this wiki entry.

Regards,

Guido.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Guido,

Thank you so much for your answer. I will try with RECEIVE .

Thnaks & Regards,

Krishnendhu R