SAP Send mail error: Cannot process message, no route from xxxx to xxxx
August 27th, 2010How to fix the error “Cannot process message, no route from xxxx to xxxx” when you send mail through SAP R3?
Follow the steps, and that’s it!
How to fix the error “Cannot process message, no route from xxxx to xxxx” when you send mail through SAP R3?
Follow the steps, and that’s it!
As we know, in Webdynpro for java application, we can define messages in Messages Pool, and display/report the messages in web pages using IWDMessageManager “wdComponentAPI.getMessageManager()”.
Someone wants to get a message text in runtime rather than using IWDMessageManager to display the message on pages. How can we do that?
I’m a recent graduate with a BSCS. My areas of interest include C++, Java, C# and systems type programming. I’ve had one job offer so far. They want an SAP BW ABAP programmer. They provide 4 weeks training.
How hard would it be for an SAP BW ABAP person to change careers and do systems programming using C++ after 2 or 3 years? I don’t want to necessarily get stuck in SAP. I’m concerned that in 3 years, my resume will be all business/SAP and no systems/C++.
After reading many posts on SAPALV.net, I’m getting the feeling that once you’re an SAP person, you stay there for life. Is SAP ABAP a sand trap?
EXPERT RESPONSE
This is a terrific question.
report zbnstest.
************************************************************************
* TABLES AND DATA DECLARATION.
************************************************************************
*TABLES: mara,makt.”,marc.
data syrepid like sy-repid.
data sydatum(10). ” LIKE sy-datum.
data sypagno(3) type n.
* WHEN USING MORE THAN ONE TABLE IN alv WE NEEED TO DECLARE THE TYPE
* GROUP (TYPE-POOLS———>SLIS)
type-pools : slis.
************************************************************************
* INTERNAL TABLE DECLARATION.
************************************************************************
* INTERNAL TABLE TO HOLD THE VALUES FROM THE MARA TABLE
data: begin of t_mara occurs 0,
matnr like mara-matnr,
meins like mara-meins,
mtart like mara-mtart,
matkl like mara-matkl,
Read the rest of this entry »
There are several ways to find BADIs in the program.
1. Set a beark-point in method ‘CL_EXITHANDLER=>GET_INSTANCE’. Because old BAID technology will alwasys call this method to get the BADI instance.
2. Search string ‘CL_EXITHANDLER=>GET_INSTANCE’ in the program. This drawback of this method is that the program may call another program in the runtime. In this case, you will be able to find the BADI in another program.
This example will retrieve purchase order according to purchase order number and handle double click event. If聽 user double click purchase order number column, the report will navigate to transaction ME23N and display corresponding purchase order.
BADI is used in ABAP enhancement frequently. This post will aims to find out the implemetation mechanism behind it. We commonly use below code to use BADI in the program.
This article aims to give a brief introduction about the SAP Enhancement technologies. The standard deliveried sap programs do not always meet the requirement, so enhancment is an very importment part in the ABAP development. SAP provide several technologies to support developer to enhance the standard logic.