Application Development 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: 

Suppress Std message on Call Transaction

former_member242512
Participant
0 Kudos
696

Hi All,

How can we avoid the system message display after a call transaction to a standard transaction for example a call to LT04 system displays the message: "Transfer order ##### created."?

Kindly help we dont need this message on Console screen.

Also we cannot go for function module like 'L_TO_CREATE' for TO creation that can suppress message.

Thanks in advance.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
264

Hi,

i think it can be solved by adding exception error_message to FM that calls L_TO_CREATE_MOVE_SU

Thanks & regards.

6 REPLIES 6

Former Member
0 Kudos
265

Hi,

i think it can be solved by adding exception error_message to FM that calls L_TO_CREATE_MOVE_SU

Thanks & regards.

0 Kudos
264

Yes thats the issue .......... can we solve just in Call transaction ............ passing a particular internal table in call transaction ........ or any other solution ?

0 Kudos
264

Hi,

Let call the transaction with BDC internal table. in the BDC internal table you can choose the mode that do not display any message while calling the transaction.

Thanks,

Hung

0 Kudos
264

Hi can you please give me an example ?.

..... Thanks.

Edited by: ujjwal_d15 on Dec 5, 2011 9:34 AM

Edited by: ujjwal_d15 on Dec 5, 2011 9:40 AM

0 Kudos
264

Use CTU_PARAMS structure.

CALL TRANSACTION 'MM01' USING gt_bdcdata OPTIONS FROM gt_ctu_params.

" Use gt_ctu_params-racommit = ' '.

0 Kudos
264

Here we go,

http://www.sapdev.co.uk/bdc/bdc_ctcode.htm

After reading the above demo, you might have some concerns regarding display mode, update mode. Please find the answer in the below article:

http://wiki.sdn.sap.com/wiki/display/ABAP/BatchInputFAQ#BatchInputFAQ-WhatisCTUPARAMS%3F

Thanks,

Hung