‎2007 Mar 22 1:44 PM
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
‎2007 Mar 22 2:07 PM
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
‎2007 Mar 22 2:17 PM
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...