Get Example source ABAP code based on a different SAP table
ABAP_MSG - Batch Input As in dialog processing>, messages in batch input> can be converted to another message type depending on where they are called, for example from I > to S> in PBO processing or from W> to E> in list processing. No message is displayed and instead is written to the batch input log, in accordance with the (converted) message type as follows:
Messages of type S> are written to the log and the program continues.
Messages of type I> and W> are written to the log and the program continues. The user input Enter>, which is required to continue the program, is created automatically.
Messages of type E> and A> are written to the log. The current program is terminated, and a database rollback > is executed for messages with the type A>. The status of the current batch input session > is set to processed with errors>. Processing of the session is then continued with the next program.
Messages of type X> runtime error> with associated database rollback>. The status of the current batch input session> is set to processed with errors>. Processing of the session is then continued with the next program.