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: 

Call Transaction runs in ?

Former Member
0 Kudos

Hi all,

I have one doubt..

CALL TRANSACTION 'F-02' USING bdcdata MODE 'E' UPDATE 'S'

MESSAGES INTO messtab.

That statement runs in Back broung or fore ground ?

Thanks in advance

Sri...

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

The transaction runs in background. U cant see any screens in forground while running.

If any error occurs it will show the error screen.

If u want to see all the screens use MODE Á'.

Reward if helpful.

5 REPLIES 5

Former Member
0 Kudos

Hi,

The transaction runs in background. U cant see any screens in forground while running.

If any error occurs it will show the error screen.

If u want to see all the screens use MODE Á'.

Reward if helpful.

Former Member
0 Kudos

For background processing we have to use No screen mode.

E menas it will stop when ever error is there normally we use N .

Regards

sasi

Former Member
0 Kudos

hai

the statement u gave runs both in background n front ground i.e when executed it runs in background but when a error occurs it stpos the process n error screen apears on the desktop (frontground). on currecting the error it again runs in background. this process contineous till the end of the process.

MODE 'E' - means 'show error screen only'.

Former Member
0 Kudos

Hi Krishna,

Though this seems to get executed in background it is not so in reality.

U have a privilege of not seeing the screen flow by mentioning the mode as 'E'.

But this job is not performed as a normal background job does. That means Background workprocesses are not used to process this. Hence you shall get error triggered whenever there is an interruption in the free flow of the transaction.

Call transaction cannot be executed in Background mode.

<b>Awarding points is a way to say thanks in SDN.</b>

Kiran

former_member188685
Active Contributor
0 Kudos

Mode 'E' will run in Background. But if any error comes it will come to foreground. So it is combination when there are error records. If there are no error records then it is Pure background.

Regards

Vijay