Call Transaction syntax

Showing Answers 1 - 4 of 4 Answers

alok saxena

  • Nov 6th, 2006
 

call transaction syntax is ""call transaction <transaction code>using<BDCtab>mode<A/N/E>update<S/A>message into <internal table>

  Was this answer useful?  Yes

vamshi

  • Nov 8th, 2006
 

call transaction mm01 using bdctab

                    mode 'a'

                   update 's/a'

                  messages into i_msg.

here i_msg is a internal table like bdcmsgcoll.

  Was this answer useful?  Yes

ramanareddy

  • Dec 14th, 2006
 

call transaction <tcode> using <bdcdata internal table name> mode <a/n/e>

update <s/a/l> messages into <bdcmsgcoll internal table name>

  Was this answer useful?  Yes

Guruprasadrao

  • Dec 14th, 2006
 

Call Transaction Syntax Is : Calltransaction ' t.code ' using ' bdcdata ' mode 'a,e,n' update ' s,a ' messages into 'bdcmsgcoll'.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions