2011 Dec 05 6:35 AM
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.
2011 Dec 05 6:42 AM
Hi,
i think it can be solved by adding exception error_message to FM that calls L_TO_CREATE_MOVE_SU
Thanks & regards.
2011 Dec 05 6:42 AM
Hi,
i think it can be solved by adding exception error_message to FM that calls L_TO_CREATE_MOVE_SU
Thanks & regards.
2011 Dec 05 6:54 AM
Yes thats the issue .......... can we solve just in Call transaction ............ passing a particular internal table in call transaction ........ or any other solution ?
2011 Dec 05 8:11 AM
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
2011 Dec 05 8:33 AM
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
2011 Dec 05 8:53 AM
Use CTU_PARAMS structure.
CALL TRANSACTION 'MM01' USING gt_bdcdata OPTIONS FROM gt_ctu_params.
" Use gt_ctu_params-racommit = ' '.
2011 Dec 06 2:03 AM
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