Skip to Content
0
Former Member
Feb 27, 2004 at 03:58 PM

Embedding a Transaction into a job, e.g. CO43and CO88

90 Views

Hello SAPworld,

I call two transactions (co43 and co88)within an ABAPprogram:

CALL TRANSACTION 'CO43' / 'CO88'

USING IT_BDCDATA (wich includes the dynpros)

MODE 'N'

UPDATE 'S'

MESSAGES

INTO IT_BDCMSGCOLL (which gets the TA-messages)

This ABAP-program is planned within a job. When the job starts, the ABAP-program calls both transactions and outputs the appearing messages. To me it shows, the transactions are called how they should be. On the other hand I'll get not output from the transactions itself. If I call them in a dialog mode, I get the normal output; afterwards I took out the output from the calling ABAP, afterwards I did not get any output at all.

Question: What can I improve, if I want to embedd these TRANSACTIONS within a job (but not ABAP-programs like CO43= "RKAZCO43" and CO88="RKO7CO88") with output?

Thanks in advance!