Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding error message from a transaction

Former Member
0 Likes
520

Hello all,

I have a scenario where i need to collect all the error message from a trasaction and display it in a pop up.

i am calling a function module and inturn calling transaction 'FB08' using bdc. i may get one or more error message. if there are more than one messages from my function module then i need to display this messages in a popup.

Currently i am displaying one message using 'message ID' syntax at the bottom. what should i do to display error messages in a popup if there are more message

Thanks,

Raju N.

Hello all,

I have a scenario where i need to collect all the error message from a trasaction and display it in a pop up.

i am calling a function module and inturn calling transaction 'FB08' using bdc. i may get one or more error message. if there are more than one messages from my function module then i need to display this messages in a popup.

Currently i am displaying one message using 'message ID' syntax at the bottom. what should i do to display error messages in a popup if there are more message

Thanks,

Raju N.

2 REPLIES 2
Read only

Former Member
0 Likes
477

use following fm.

CALL FUNCTION 'COPO_POPUP_TO_DISPLAY_TEXTLIST'

EXPORTING

  • TASK = 'DISPLAY'

titel = 'Creation Log'

  • IMPORTING

  • FUNCTION =

TABLES

text_table = i_documents_log.

Read only

Former Member
0 Likes
477

Hi Raju,

You can use FM POPUP_WITH_TABLE_DISPLAY and pass the error msg table.

Reward is helpful,

Regards,

Tanmay