Call transaction method, how to capture the errors ?


Answered by shyam on 2005-05-09 15:56:32: create a log file by using BDCMSGCOLL.

Showing Answers 1 - 4 of 4 Answers

shyam

  • May 9th, 2005
 

create a log file by using BDCMSGCOLL.

  Was this answer useful?  Yes

PUSHY

  • Sep 4th, 2005
 

CALL TRANSACTION 'transaction name ' USING MODE 'E'.

  Was this answer useful?  Yes

JOGA

  • Oct 3rd, 2005
 

IN CALL TRANSACTION TO CAPTURE THE ERRORS WE SHOULD PERFORM THE FOLLOWING.

FIRST ME MUST DECLARE AN INTERNAL TABLE WITH THE STRUCTURE OF BDCMSGCOLL TABLE.

THEN WHILE  WRITING THE CALL TRANSACTION STATEMENT WE SHOULD PUT THE   'E' MODE FOR CAPTURING ALL THE ERRORS.

THEN FINALLY THE CAPTURED ERRORS MUST TO SENT TO THE INTERNAL TABLE WHICH WE DECLARED IN THE BEGINNING WITH BDCMSGCOLL BY USING THE FUNCTION MODULE "FORMAT_MESSAGE"

AND THUS THE ERROR MESSAGES WILL BE SENT TO THE INTERNAL TABLE WHICH WE DECLARED AT THE BEGINNING.

  Was this answer useful?  Yes

sreni

  • Jan 14th, 2006
 

using bdcmsgcoll function module

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions