i run program with recording ( batch input on F-03 ) ,
i want to give the user the option to :
only fix the problem and continue the process
end batch input and go back to the main program .
is there is option to do so ?
in which mode it can be done ('E' ? ) .
the reason that i need this option is
data with fast changes .
thanks .
hi dakota,
only fix the problem and continue the process
u can use the mode 'E'
end batch input and go back to the main program .
CALL TRANSACTION <tcode> USING IT_BDCDATA MODE 'A'
UPDATE 'S'
MESSAGES INTO it_messages
LEAVE TO LIST-PROCESSING.
Use MODE = 'E', this will stop the transaction and allow the user to take over.
Regards,
Rich Heilman
Dakota, Please make sure to award points for helpful answers and mark you post as solved when solved completely. Thanks.
Regards,
Rich Heilman
Add a comment