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: 

how can i control error in batch input ?

Former Member
0 Kudos
605

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 .

1 ACCEPTED SOLUTION

Former Member
0 Kudos
171

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.

5 REPLIES 5

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
171

Use MODE = 'E', this will stop the transaction and allow the user to take over.

Regards,

Rich Heilman

Former Member
0 Kudos
172

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.

Former Member
0 Kudos
171

Hi

To fix the problem and continue the process

you can give mode as 'E'.

Reward points if helpful

Regards

Swathi

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
171

Dakota, Please make sure to award points for helpful answers and mark you post as solved when solved completely. Thanks.

Regards,

Rich Heilman

0 Kudos
171

thanks any one ,

may be i was not clear inough ,

i know what is mode 'E' .

i want to let him fix the field only

i don't want to allowed him to go to other screen

just do update to the field and proceed.

is there option to do so ?

thanks again , and sure i will award points .