Application Development and Automation 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: 
Read only

CALL TRANSACTION USING bdcdata... and Search Help problem

Former Member
0 Likes
410

Hi all,

I found strange behaviour of SAP, when I call e.g. transaction MM01 normally I have usual "new-style" search help (e.g. for material group), but when I call this transaction using ABAP statement CALL TRANSACTION 'MM01' USING bdcdata... statement then in the same place "old-style" search help is displayed. Do you know what can be the problem with that?

Kind regards,

Marcin

2 REPLIES 2
Read only

amit_khare
Active Contributor
0 Likes
346

Hi,

Thats the normal behaviour of transactions.

due to background process requirements these transaction need to be run with the minimal required resources and also to avoid interruptions and delays and limited facilities many a times these transaction call different screens for BDC run then the normal run.

Regards,

Amit

Read only

0 Likes
346

Hmm, too bad. In fact I used addition USING bdcdata just to have access to messages returned by the transaction, bdcdata table is empty, and I'm using parameter:

ls_params-nobinpt = abap_true.

and:

call transaction.... options from ls_params...

is that some solution for that? hmm...